diff options
| author | Ben Sima <ben@bsima.me> | 2025-11-20 16:37:34 -0500 |
|---|---|---|
| committer | Ben Sima <ben@bsima.me> | 2025-11-20 16:37:34 -0500 |
| commit | 8e2b5b0aeb00d74727237a0f3c37901b4335c2d7 (patch) | |
| tree | cfd2286cdb065deca1bb6ce23048d3a77ee3937c | |
| parent | 93731a88d859280bd048808794c92575dce84734 (diff) | |
fix: enable dangerously-allow-all for worker agent
- The autonomous worker needs to execute commands without interactive
prompts - Added --dangerously-allow-all flag to start-worker.sh
| -rwxr-xr-x | Omni/Agent/start-worker.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Omni/Agent/start-worker.sh b/Omni/Agent/start-worker.sh index ce01004..0377585 100755 --- a/Omni/Agent/start-worker.sh +++ b/Omni/Agent/start-worker.sh @@ -42,7 +42,7 @@ while true; do echo "----------------------------------------------------------------" echo "$(date): Starting new agent session..." - "$AMP_BIN" -x "You are a Worker Agent. Your goal is to process tasks from the task manager. + "$AMP_BIN" --dangerously-allow-all -x "You are a Worker Agent. Your goal is to process tasks from the task manager. Step 1: Read 'Omni/Agent/WORKER_AGENT_GUIDE.md' to understand your workflow. Step 2: Follow the 'Worker Loop' instructions exactly. |
