Original Reddit post

I’m documenting a recurring issue I’ve been seeing in the OpenAI ChatGPT project sandbox. A background artifact daemon appears to start during ordinary file checks, validation, packaging, checksum generation, archive inspection, and metadata operations. Those tasks should be lightweight and predictable, but some helper calls appear to hang, time out, or leave incomplete evidence. The exact daemon path observed is: “/opt/pyvenv/lib/python3.13/site-packages/presentation_artifact_tool/bin/artifact_tool_rpc_daemon-bun” Expected behavior: Validation, checksums, archive checks, metadata scans, and package creation should complete in bounded time with clear stdout, stderr, exit code, and duration. Actual behavior: Bare Python helper paths can trigger OpenAI platform artifact tooling during startup. In some cases, trivial inspection or packaging workflows become unreliable because the artifact tooling appears to load during generic inspection work. Cost impact: This creates real operational waste. It burns time rerunning failed inspections, forces extra manual verification, makes package creation unreliable, and creates uncertainty about whether a project artifact is actually broken or whether the sandbox inspection path failed first. It can also increase compute/resource use through repeated retries, stuck helper processes, and daemon activity during work that should be lightweight. Current workaround: I’ve been using a separate safe artifact path with explicit Unix commands and isolated Python startup, instead of relying on hidden platform helpers. For Python validation, the safer pattern has been: “env -i PATH=/usr/bin:/bin PYTHONPATH=. /usr/bin/python3 -S …” i Ask on this Tuesday Can anyone confirm whether “artifact_tool_rpc_daemon-bun” is intended to load during generic file inspection and packaging workflows? If so, is there a supported daemon-free path for validation, metadata checks, checksums, ZIP/archive handling, and publication? submitted by /u/rmhollid

Originally posted by u/rmhollid on r/ArtificialInteligence