autopilot
14
总安装量
14
周安装量
#23908
全站排名
安装命令
npx skills add https://github.com/atrislabs/atris --skill autopilot
Agent 安装分布
opencode
12
gemini-cli
12
replit
12
antigravity
12
claude-code
12
codex
12
Skill 文档
Autopilot Skill
Autonomous task execution. Plan â Do â Review loop until acceptance criteria pass.
When to Use
- User says “get this done” or “ship it”
- User describes a feature/bug and wants hands-off execution
- Any task that can be validated with acceptance criteria
Process
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
â INPUT: "Add dark mode toggle" â
â â
â 1. GENERATE PRD â
â - Type: feature or bug (auto-detect) â
â - Acceptance criteria (testable conditions) â
â - Priority: 1 (single story) â
â â
â 2. LOOP (max 5 iterations) â
â ââââââââââââââââââââââââââââââââââââââââ â
â â PLAN: Navigator creates tasks â â
â â - Read MAP.md for file locations â â
â â - ASCII diagram of approach â â
â â - Add tasks to TODO.md â â
â â - Signal: [PLAN_COMPLETE] â â
â âââââââââââââââââââââââââââââââââââââââ⤠â
â â DO: Executor builds â â
â â - Implement each task â â
â â - Verify changes work â â
â â - Commit changes â â
â â - Signal: [DO_COMPLETE] â â
â âââââââââââââââââââââââââââââââââââââââ⤠â
â â REVIEW: Validator checks â â
â â - Check acceptance criteria â â
â â - If fail: [REVIEW_FAILED] reason â â
â â - If pass: [COMPLETE] â
â ââââââââââââââââââââââââââââââââââââââââ â
â â
â 3. OUTPUT â
â - prd.json: PRD with passes: true â
â - progress.txt: Execution log â
â - Journal: Completion logged â
âââââââââââââââââââââââââââââââââââââââââââââââââââââââââ
Acceptance Criteria Templates
Feature:
- Feature implemented and working as described
- Tests pass (if test suite exists)
- Build passes
- Code follows project patterns (check MAP.md)
Bug:
- Bug is fixed and no longer reproducible
- Regression test added (if applicable)
- Build passes
- No new bugs introduced
Commands
# With description
atris autopilot "Add dark mode toggle"
# Bug fix
atris autopilot --bug "Login fails on Safari"
# From TODO.md backlog
atris autopilot --from-todo
# With options
atris autopilot "Add feature" --iterations=3 --verbose
Stop Conditions
[COMPLETE]â All acceptance criteria met- Max iterations reached (default: 5)
- Error that can’t be recovered
Rules
- ONE task at a time
- Verify before marking passes: true
- Minimal changes only
- Check MAP.md before touching code
- Log to journal when complete