attester: env delivery inside the sandbox + max_targets smoke input + verified targets - #3
Merged
Merged
Conversation
…ox; add max_targets smoke input The MCP SDK spawns stdio servers with a minimal default environment, so docker -e never reached the server (BRAVE_API_KEY etc.) and PYTHONPATH would have broken every PyPI target. Wrap the spawn in env(1). plan.py --limit / workflow_dispatch max_targets lets the first real run be a bounded smoke test.
…run); stage-1 scratch on disk Dry run on dse-builder-01 through the real sandbox pipeline: 39/47 captured. Skipped with a note in targets.yaml: redis/kubernetes/qdrant (need a live backend or DNS at startup), stripe (never completes the handshake), sqlite/sentry/tree-sitter (incompatible with mcp 2.x), docker (Python >= 3.12). chroma/qdrant-class dependency trees exceed any RAM-backed tmpfs, so stage-1 scratch is a disk-backed mount (no third-party code runs in stage 1).
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Found in the builder dry run: the MCP SDK spawns stdio servers with a minimal default environment, so
docker -enever reached the server. Spawn is now wrapped inenv K=V …inside the sandbox (PYTHONPATH included). Addsworkflow_dispatch.max_targetsfor a bounded first run. targets.yaml skips for servers that cannot list a surface without a live backend follow on this PR once the dry run completes.