Use provider-neutral Opus alias in orchestration guide (#14119)

This commit is contained in:
Jinwoo Hong
2026-08-12 16:03:29 -07:00
committed by GitHub
parent e4c278eb52
commit d349f9a972
3 changed files with 3 additions and 3 deletions
@@ -281,7 +281,7 @@ describe('orchestration skill guidance', () => {
expect(workerLoop).toContain('opaque provider model id with `--model`')
expect(workerLoop).toContain('`--effort` requires `--model`')
expect(workerLoop).toContain('neither option can combine with `--terminal`')
expect(workerLoop).toContain('--agent claude --model aws-bedrock-opus-5 --effort high --json')
expect(workerLoop).toContain('--agent claude --model opus --effort high --json')
expect(workerLoop).toContain('`launch.requested` and `launch.effective`')
})
+1 -1
View File
@@ -195,7 +195,7 @@ orca orchestration worker-start --task <task_b> --worktree current --agent claud
For a per-invocation Claude, Codex, or Cursor launch, pass an opaque provider model id with `--model`; add `--effort` only when that agent/model supports the level. These options apply only to fresh agent terminals, override general agent default arguments, and are reported under `launch.requested` and `launch.effective` in the receipt:
```bash
orca orchestration worker-start --task <task_id> --worktree current --agent claude --model aws-bedrock-opus-5 --effort high --json
orca orchestration worker-start --task <task_id> --worktree current --agent claude --model opus --effort high --json
```
`--effort` requires `--model`, and neither option can combine with `--terminal`. A connected worker server must advertise launch-preference support before Orca forwards either option.
File diff suppressed because one or more lines are too long