diff --git a/docs/ai-cli-dispatch.md b/docs/ai-cli-dispatch.md index d4248ad..c0f1540 100644 --- a/docs/ai-cli-dispatch.md +++ b/docs/ai-cli-dispatch.md @@ -96,9 +96,9 @@ The prompt is forwarded with each client’s native argument shape: | Client | Arguments passed | |---|---| -| `codex` | `exec ""` | -| `claude` | `-p ""` | -| `opencode` | `""` | +| `codex` | `exec --yolo ""` | +| `claude` | `-p "" --dangerously-skip-permissions` | +| `opencode` | `run --dangerously-skip-permissions ""` | ### `dispatch` diff --git a/tools/ai-cli-dispatch/SKILL.md b/tools/ai-cli-dispatch/SKILL.md index 0bc0eeb..927f965 100644 --- a/tools/ai-cli-dispatch/SKILL.md +++ b/tools/ai-cli-dispatch/SKILL.md @@ -103,7 +103,7 @@ The dispatcher is **async-first**: `run` and `dispatch` start a detached backgro | **Async** (default) | Starts a detached process, returns a `jobId` immediately, and stores output on disk. | Fire-and-forget tasks, long-running jobs, parallel dispatches, or when you need to poll/check results later. | | **Sync** (`--sync`) | Blocks until the client subprocess exits, then returns `stdout`, `stderr`, and `exitCode` directly. | Short, interactive tasks where you need the result in the same turn. | -Use `--timeout ` to control how long a job may run before it is terminated (default: 10 minutes for async, 5 minutes for sync). Use `--debug` to emit diagnostic metadata to stderr. +Use `--timeout ` to control how long a job may run before it is terminated (default: 10 minutes / 600,000 ms for both async and sync). Use `--debug` to emit diagnostic metadata to stderr. ## Flags