$npx -y skills add gtrabanco/agentic-workflow --skill ship-roadmapEnd-to-end autopilot: found the project if needed (one upfront interview — product, features, stack, architecture, quality bars, ops, autonomy, budget), create or adopt the complete roadmap, then ship it feature by feature through the full workflow (plan → execute → review → PR →
| 1 | # Ship the roadmap (autopilot) |
| 2 | |
| 3 | Run the entire agentic workflow unattended between human decision points: one |
| 4 | interactive founding turn that asks **everything**, then a driver-fired build |
| 5 | loop (Claude Code's `/loop`, an external orchestrator, or manual re-invocation |
| 6 | — see the launch contract) that plans, implements, reviews, opens and |
| 7 | (optionally) merges one PR per |
| 8 | feature until the roadmap is done — then keeps going: an **issue sweep** |
| 9 | inventories open issues and the run's own documented residue (known-issues, |
| 10 | trade-offs, postponed findings), triages it all, and ships what's fix-now — |
| 11 | ending in a final report that recommends |
| 12 | issues, newly discovered features, and the product-audit cadence. |
| 13 | |
| 14 | This is the **expensive** skill: a full run burns planning, implementation and |
| 15 | review tokens for every roadmap feature. It exists to spend them well — strong |
| 16 | tiers only where judgment lives, cheap tiers where code gets typed, humans only |
| 17 | where a wrong call is expensive to undo. |
| 18 | |
| 19 | > **Ultracode tip:** for large roadmaps, the user can enable the `ultracode` |
| 20 | > session setting (`/effort ultracode`) before starting the loop — the conductor |
| 21 | > then fans out independent sub-work (review axes, report evidence gathering) |
| 22 | > more aggressively. It is a session toggle only the user can set; this skill |
| 23 | > cannot declare or enable it (`effort:` accepts only low/medium/high/xhigh/max). |
| 24 | |
| 25 | ## Turn contract — verify before ending the turn |
| 26 | |
| 27 | ``` |
| 28 | ✓ Exactly ONE stage advanced (or a terminal banner printed) and ONE line appended to the run log |
| 29 | ✓ Nothing was merged outside the --fullauto floors; nothing asked mid-run |
| 30 | ✓ Artifact language: explicit user instruction > the project's declared docs language > English. The CONVERSATION language never decides — a Spanish prompt still produces English PRs/issues/commits/SPECs unless one of the first two says otherwise |
| 31 | ✓ The closing `→ Next:` block is printed as the ABSOLUTE last output |
| 32 | ``` |
| 33 | |
| 34 | About to end the turn with any box unchecked? The turn is NOT done — complete |
| 35 | the missing box first (weak models drop end-of-document duties; this list is |
| 36 | first on purpose). |
| 37 | |
| 38 | ## When to use |
| 39 | |
| 40 | - You have a roadmap — or at least a product idea and a feature list in your |
| 41 | head — and want the whole application built with supervision only at merge |
| 42 | points and at the end. |
| 43 | - **Not** for one feature (`plan-feature` → `execute-phase`), one bug |
| 44 | (`plan-fix`), or exploratory work. The autopilot ships a locked scope; it is |
| 45 | the wrong tool when the scope is still being discovered. |
| 46 | |
| 47 | ## Step 0 — Discover the project (always first) |
| 48 | |
| 49 | Read before acting: the agent guide (`CLAUDE.md`/`AGENTS.md`) and its |
| 50 | **Workflow conventions** (forge CLI, verification gate, docs language), the |
| 51 | documentation map, `docs/features/ROADMAP.md`, the fix index, the architecture |
| 52 | doc, and `.github/` templates. Then establish run context: |
| 53 | |
| 54 | 1. **Substrate present?** CLAUDE.md with Workflow conventions + doc map + |
| 55 | roadmap + fix index → founding is skipped and interview rounds 3–4 collapse |
| 56 | to confirmations of what the docs already state. Missing pieces → founding |
| 57 | will create them. |
| 58 | 2. **Workflow skills installed?** Verify `plan-feature`, `execute-phase`, |
| 59 | `review-change`, and `audit-pr` are actually available in this environment |
| 60 | (e.g. listed by the skills CLI or present under the skills directory), and |
| 61 | **record the discovered skills-directory path in the decision record** — |
| 62 | subagent prompts reference it. Missing → stop and instruct: |
| 63 | `npx skills add gtrabanco/agentic-workflow`. Without these files the loop |
| 64 | silently degrades. |
| 65 | 3. |