diff --git a/.agents/skills/examples-auto-run/SKILL.md b/.agents/skills/examples-auto-run/SKILL.md index 79295cbb..1006f181 100644 --- a/.agents/skills/examples-auto-run/SKILL.md +++ b/.agents/skills/examples-auto-run/SKILL.md @@ -76,6 +76,7 @@ description: Run python examples in auto mode with logging, rerun helpers, and b ## Notes - The runner delegates to `uv run --extra ... examples/run_examples.py`, which already writes per-example logs and supports `--collect`, `--rerun-file`, and `--print-auto-skip`. +- `examples/sandbox/extensions/vercel_runner.py` is temporarily excluded from auto runs due to credential issues. Do not force-run it until the credential setup is fixed. - `start` uses `--write-rerun` so failures are captured automatically. - If `.tmp/examples-rerun.txt` exists and is non-empty, invoking the skill with no args runs `rerun` by default. diff --git a/examples/run_examples.py b/examples/run_examples.py index 54038b9f..8d9a7f1b 100644 --- a/examples/run_examples.py +++ b/examples/run_examples.py @@ -81,6 +81,7 @@ DEFAULT_AUTO_SKIP = { "examples/sandbox/docker/mounts/s3_mount_read_write.py", "examples/sandbox/extensions/daytona/usaspending_text2sql/setup_db.py", "examples/sandbox/extensions/temporal/temporal_sandbox_agent.py", + # Temporarily disabled due to credential issues. "examples/sandbox/extensions/vercel_runner.py", "examples/sandbox/memory_s3.py", "examples/sandbox/sandbox_agent_with_remote_snapshot.py",