agent_review_loop
Automates a full code development loop: implement, validate, review, and auto-revise up to 2 times based on a task specification.
Instructions
Execute full autonomous development loop: Codex implements -> Evidence Gate validates -> Claude reviews -> Auto-revision (up to max 2 revisions limit).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| cwd | No | Target workspace directory (default: current directory) | |
| topic | No | Topic or feature name (e.g. 'auth-fix') | |
| engine | No | Engine to use: 'cli' (default) or 'sdk' | |
| prompt | Yes | The feature specification or bugfix task description | |
| project | No | Directory name of the project inside the workspace | |
| timeoutMs | No | Timeout per turn in ms (default: 180000ms) | |
| maxRevisions | No | Maximum auto-revision retries (default: 2) | |
| testCommands | No | Test commands for Evidence Gate (e.g. ['npm test']) |