← ClaudeAtlas

autopilotlisted

Consume a pre-built ticket list (split-plan.md under .simple-workflow/backlog/product_backlog/{parent-slug}/) and drive the per-ticket /scout -> /impl -> /ship pipeline in topological order with policy-based autonomous decision making at each gate. Use when: (1) the user explicitly invokes /autopilot with a parent-slug; (2) another skill chains to /autopilot via the Skill tool after /brief and /create-ticket have populated a split-plan; (3) a resumable autopilot-state.yaml exists and the user re-runs /autopilot to continue from the last checkpoint. Triggers on "autopilot", "run the autopilot", "/autopilot <slug>", "continue the autopilot run", "drive scout impl ship pipeline".
aimsise/simple-workflow · ★ 1 · AI & Automation · score 73
Install: claude install-skill aimsise/simple-workflow
## Pre-computed Context Briefs: !`find .simple-workflow/backlog/briefs/active -mindepth 2 -maxdepth 2 -name brief.md 2>/dev/null` Split plans (SSoT): !`find .simple-workflow/backlog/product_backlog -mindepth 2 -maxdepth 2 -name split-plan.md 2>/dev/null` Active: !`find .simple-workflow/backlog/active -mindepth 1 -maxdepth 1 -type d 2>/dev/null | head -10` Current branch: !`git branch --show-current` Default branch: !`git symbolic-ref refs/remotes/origin/HEAD 2>/dev/null | sed 's@^refs/remotes/origin/@@' | grep . || echo main` ## Mandatory Skill Invocations `/autopilot` MUST delegate to each target below via the Skill tool. Direct file ops / ad-hoc bash are not substitutes. Bypasses detected by Artifact Presence Gate + audit. | Invocation Target | When | Skip consequence | |---|---|---| | `/scout` (Skill) | 3b | missing `investigation.md`+`plan.md` → `[PIPELINE] scout: ARTIFACT-MISSING`; ticket failed | | `/impl` (Skill) | 3c | missing `eval-round-*.md` (+`audit-round-*.md`/`quality-round-*.md` on PASS) → `[PIPELINE] impl: ARTIFACT-MISSING`; ticket failed | | `/ship` (Skill) | 3d | ticket not moved to `.simple-workflow/backlog/done/` → `[PIPELINE] ship: ARTIFACT-MISSING`; no PR | **Binding rules**: - `MUST invoke /scout via the Skill tool`; never call `/investigate`/`/plan2doc` standalone. - `MUST invoke /impl via the Skill tool`; never spawn `implementer`/`ac-evaluator` directly. - `MUST invoke /ship via the Skill tool`; never run `git commit`/`gh pr create`/`mv` dir