fix(ci): add allowed_tools: [] to command node to prevent 30s hang

The command-test node was missing allowed_tools: [], causing the Claude
CLI to load full tool access. Without tools restricted, the subprocess
hangs after responding. The simple prompt node with allowed_tools: []
completes in 4s — this should match.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Cole Medin 2026-04-16 11:03:04 -05:00
parent bf9091159c
commit 1c600f2b62

View file

@ -17,6 +17,7 @@ nodes:
# 2. Command node — verifies command file discovery and loading
- id: command-test
command: e2e-echo-command
allowed_tools: []
idle_timeout: 30000
depends_on: [simple]