Atris Autopilot
PRD-driven autonomous execution - give it a task, it loops until done
Claude CodeGeneric
---
description: PRD-driven autonomous execution - give it a task, it loops until done
arguments:
- name: task
description: What to build (e.g., "Add dark mode toggle")
required: true
- name: max-iterations
description: Max loops before stopping (default 10)
required: false
---
# Atris Autopilot
Autonomous mode. Loop until task complete or max iterations.
## Setup State
```bash
mkdir -p .claude
cat > .claude/atris-autopilot.state.md << 'STATEEOF'
---
iteration: 1
max_iterations: ${2:-10}
completion_promise: <promise>COMPLETE</promise>
---
$1
STATEEOF
Task: $1
Process (each iteration)
- PLAN — Read MAP.md, identify ONE thing to do
- DO — Implement it, commit
- REVIEW — Check acceptance criteria
Rules
- ONE thing per iteration
- Check MAP.md before touching code
- Search before assuming not implemented
- When done:
<promise>COMPLETE</promise>
Start
Read atris/MAP.md. Begin iteration 1. ```
Maintain Atris Autopilot?
Let people know it's listed here — add the badge (live metrics, light/dark aware) or a plain link to your README or docs.
[Atris Autopilot on getagentictools](https://getagentictools.com/loops/atrislabs-atris-autopilot?ref=badge)