A reusable set of agent skills that run a disciplined, doc-driven workflow for building software with agents — from idea/issue to a reviewed, classified, merge-ready change. The skills are project-adaptive: they discover and obey each repository's own guide, architecture, roadmap and style docs at runtime, so the same workflow works on any stack.
They are plain Markdown (SKILL.md files), so they work with any agent that
reads skills — Claude Code, Cursor, Codex, OpenCode, Cline, and
70+ others — installed with the
skills CLI (see
Install).
The examples in
docs/are generic and illustrative; the skills themselves are stack-agnostic and architecture-agnostic.
skills/ the 16 skills (12 user-facing + 4 internal) — the installable source
.claude/skills symlink → ../skills, so this repo dogfoods them in Claude Code
template/ the exportable documentation scaffold (the substrate the skills read)
docs/workflow/ the full tutorial (feature flow, issue flow, reference, replication)
docs/features/_TEMPLATE feature SPEC template + ROADMAP (the planning artifacts skills produce)
docs/fix/ fix SPEC template + index
.github/ issue + PR templates the workflow expects
The skills are the behavior; template/ is the substrate they read (a
generic CLAUDE.md + documentation map, SPEC/feature/fix templates, and GitHub
templates). Scaffold a new project's way of working with
npx degit gtrabanco/agentic-workflow/template my-project — see
docs/workflow/REPLICATE.md.
12 user-facing skills (one menu entry each) + 4 internal steps composed for
you (the plan-feature router's three planning steps + the review-change
engine). One disciplined path: plan → execute → review → audit → merge.
| Skill | What it does |
|---|---|
init-workspace |
Fetches the template/ scaffold and adapts it to your project by interview (gate, doc map, architecture); suggests the companion review skills your platform needs; offers to install the skills |
| Skill | What it does |
|---|---|
plan-feature |
One entry point to plan a feature. Detects the input — a raw idea (interview), an issue #N (issue → scoped SPEC), or a scoped slug/SPEC (straight to scaffolding) — routes to the right step, then registers the roadmap entry. --next plans the next roadmap item. Sizes every feature (XS/S/M/L): small ones get a SPEC-only, single-pass path — no artifact ceremony; M/L get the full set with a mandatory hardening phase. |
plan-fix |
The fix-flow counterpart: architect-drafts a tightly-scoped fix SPEC from an issue, commits on a fix branch, stops for review. |
You only ever call
plan-feature; it composes the internal stepsplan-feature-interview,plan-feature-from-issue, andplan-feature-scaffold(hidden from the menu).
| Skill | What it does |
|---|---|
execute-phase |
Implements one phase of a feature (default), a small XS/S feature in a single pass, or a fix (--fix). Tests-first on domain/orchestration work, never commits red, gate-verified, one commit per phase; hands off to review-change every 2 phases and once at the end (mandatory). A finished unit always opens its PR and flips to done (built, not merged). |
| Skill | Scope | What it does |
|---|---|---|
review-change |
the change | Runs only the reviews that apply to your platform (code, security, verify, design, a11y, brand, perf, SEO) and classifies → one decision table + an explicit manual-verification checklist |
audit-pr |
the PR | Merge gate: acceptance met, all phases done, docs/tests/CI green, Closes #N, review axes clean → merge-ready or a list of blockers |
product-audit |
the product | Periodic full-spectrum health check; mines feature docs → proposes issues + roadmap add/remove (never auto-fixes) |
audit-docs |
the docs | Audits docs ↔ roadmap ↔ code ↔ fix index for drift |
review-change's findings engine is the internalreview-implementation— the two-phase find → classify pass it composes (andaudit-pr/product-auditreuse). It's not a menu entry; you reach it throughreview-change.
| Skill | What it does |
|---|---|
triage-issue |
Classifies an issue (fix-now / promote / postpone / wontfix) by verifying its trigger against the code |
| Skill | What it does |
|---|---|
log-session |
Appends a structured entry to docs/LOGS.md — what the session did, files touched, decisions + why, and the next step — so you (or anyone) can resume cold. Run it before /clear or before closing. The template/ also ships free, opt-in hooks that auto-append a mechanical entry on /clear/exit and can re-inject the last entry on start. |
| Skill | What it does |
|---|---|
bump-skill |
After editing a skill in this repo: bumps version: in the SKILL.md frontmatter, adds rows to CHANGELOG.md + CHANGELOG.es.md, and updates the skill and model tables in README.md + README.es.md. Run before every commit that touches a skill. |
| Skill | What it does |
|---|---|
ship-roadmap |
Builds the whole app from the roadmap. One upfront interview (product, features, stack, architecture — recommended proportionally, never defaulting to a named pattern — quality bars, ops, autonomy, budget), founds the project if needed, creates or adopts the complete roadmap, then a /loop-driven build loop ships it feature by feature through the skills above — with no further questions. Default: opens PRs, you merge; --fullauto merges MERGE-READY PRs under non-negotiable safety floors. Ends with a final report: issues to open, discovered feature proposals, manual checks, product-audit cadence. |
How the autopilot runs the workflow — one interview in, reviewed PRs out, and you only step in to merge (amber):
flowchart LR
I([Interview]):::you --> RM[Roadmap] --> P[Plan]
P --> X[Execute] --> RV[Review] --> PR[Open PR] --> A[Audit] --> M([Merge]):::you
M -->|next feature| P
M -.->|roadmap done| REP[Final report]
classDef you fill:#f6c177,stroke:#8a5a00,color:#3a2406;
The same plan → execute → review → audit → merge path you'd run by hand — the
autopilot just moves you to its edges. Under --fullauto, ship-roadmap also
handles the merges, under non-negotiable safety floors.
Companion skills for UI/UX and language-specific quality (design, ux, typing…) are
not bundled — review-change and product-audit compose them when installed,
and init-workspace suggests the right ones per platform. See
docs/workflow/RECOMMENDED_SKILLS.md for which apply when.
Upgrading from an older install? See
docs/workflow/MIGRATION.md— three skills were renamed, so re-add to update + delete the three old folders.Versioning. Each skill is versioned independently (
version:in its frontmatter); changes are logged inCHANGELOG.md. Upgrade an install withnpx skills update.
Each skill pre-sets its model and effort in frontmatter (table below). The
model uses a floating tier alias (opus/sonnet/haiku) that auto-updates to the
latest version — so it never goes stale. Both apply only for that skill's turn;
your session model/effort resume afterward. You stay in control: to change
them, edit the skill's model: / effort: lines (or model: inherit to follow
your session).
| Skill | Model tier | Effort | Why |
|---|---|---|---|
init-workspace |
Opus | high | interview-driven project bootstrap + adaptation |
plan-feature |
Opus | high | router + planning: its internal interview/scoping steps run in its turn, so the router must carry the effort (composed skills inherit the turn's effort) |
plan-fix |
Opus | high | architect-level scoping + risk analysis |
execute-phase |
Sonnet | medium | mechanical implementation per SPEC — one phase or single-pass (Opus if the logic is subtle) |
review-change |
Opus | high | platform-adaptive review orchestration + synthesis |
audit-pr |
Opus | high | whole-PR merge-readiness judgement |
product-audit |
Opus | max | product-wide multi-axis sweep + proposals (max effort for the widest context sweep) |
audit-docs |
Sonnet | medium | mostly mechanical cross-document checks (Opus for deep audits) |
triage-issue |
Opus | high | verify triggers against the code; judgement call |
log-session |
Sonnet | medium | structured summarization, not judgement — deliberately the cheap tier, never Opus (the .claude/ hooks do the mechanical capture for free) |
ship-roadmap |
Opus | high | the autopilot conductor: composes the planning/review/audit skills in-turn (equal tier) and delegates implementation to Sonnet subagents — judgment stays strong, bulk tokens stay cheap |
The 4 internal steps aren't selected directly. Because they're composed within a caller's turn, they inherit that turn's model/effort (a skill's
model/effortis fixed at turn start) — the values in their frontmatter (review-implementation,plan-feature-interview,plan-feature-from-issuehigh;plan-feature-scaffoldmedium) are declared defaults for a direct run, which is why theplan-featurerouter itself carrieshigh.Rule of thumb: planning, judgement, review and audit → Opus (high, or max for the product-wide sweep); mechanical execution → Sonnet, medium (bump to Opus when the logic is subtle).
Full tutorial in docs/workflow/. In short:
/plan-feature "<your idea>" # or /plan-feature <N> (issue) · /plan-feature --next (next roadmap item)
→ router detects idea / issue / scoped slug → interview · issue analysis · scaffold
→ fills the SPEC + PLAN + TASKS + … and registers the roadmap entry
/execute-phase <NN> <phase> # one phase at a time, gate-verified, one commit each
→ review checkpoint every 2 phases (and mandatory at the end)
→ a finished unit always opens its PR + flips to `done` (built, not merged)
/review-change # mandatory: applicable reviews, classified; non-fix-now → triage-issue
/audit-pr # merge gate: merge-ready or blockers (never merge with pending docs)
→ human merges
See docs/workflow/FEATURE_WORKFLOW.md.
/triage-issue <N>
→ reads the issue's "when to fix" trigger, verifies it against the current code
→ fix-now → plan-fix → execute-phase --fix
promote → plan-feature (the router takes the issue → scoped SPEC)
postpone → dated comment, leave open (no inline work)
wontfix → propose close
See docs/workflow/ISSUE_WORKFLOW.md.
/review-change # runs the right reviews per platform + classifies → one table + manual checks
/audit-pr # is THIS PR ready to merge? merge-ready or blockers
/product-audit # where does the whole product stand? issues + roadmap proposals
/audit-docs # did the docs drift from code / roadmap?
See docs/workflow/REVIEW_AND_CLASSIFY.md.
/ship-roadmap # ONE interview (product, features, stack, architecture, autonomy, budget)
→ founds the project if needed, writes the complete roadmap, locks the run policy
/loop /ship-roadmap --continue # the loop ships the roadmap feature by feature (add --fullauto to auto-merge)
→ plan → execute → review → PR → audit → (your merge) → next feature → … → final report
You only reappear at the merges (default) and at the final report.
/log-session # before /clear or closing: append what you did + the next step to docs/LOGS.md
The template/ ships free, opt-in Claude Code hooks (template/.claude/) that
auto-append a mechanical entry on every /clear and exit, and can re-inject the
last entry on start so you resume cold — no model, no token cost for the capture.
- Docs drive the work — every skill reads the project's guide, doc map, architecture, roadmap and style docs first, and respects them.
- Plan before code — features get a SPEC + artifacts before a line is written.
- One phase at a time — each verified and committed separately.
- One PR per unit, against the default branch — never on
main, never stacked. - Evidence over reflex — triage verifies triggers; deferred work is tracked, not inlined.
- Gate before commit — type-check + tests + build green.
Use the skills CLI — it reads the
SKILL.md files straight from this repo and installs them into whatever agent
you use (it auto-detects Claude Code, Cursor, Codex, OpenCode, Cline, and
70+ more).
# From the root of the TARGET repository — install all 14 skills:
npx skills add gtrabanco/agentic-workflow
# Pick specific skills, or target a specific agent:
npx skills add gtrabanco/agentic-workflow --skill plan-feature --skill triage-issue
npx skills add gtrabanco/agentic-workflow --agent claude-code --agent cursor
# Install for the current user (global) instead of the current project:
npx skills add gtrabanco/agentic-workflow --global
# Manage them later:
npx skills list
npx skills update
npx skills remove plan-feature
# Pin a version: install from a tagged release (or any tag/branch) with #<ref>:
npx skills add gtrabanco/agentic-workflow#release-2026-06-19
# …then `npx skills experimental_install` restores the exact set from skills-lock.json.
# See CHANGELOG.md → "Installing & pinning a version" for how pinning works.No npm publish, no registry, no build step — skills clones the repo and copies
(or symlinks) the skill folders into the right place for each agent. The skills
discover the target project at runtime (agent guide, documentation map,
architecture, roadmap, fix index), so they work immediately without per-repo
configuration.
Prefer the skills regenerated and re-tuned to a different project's
conventions instead of copied verbatim? See the adaptive
portable prompt. Full details and the
"which method when" guide live in
docs/workflow/REPLICATE.md.
docs/workflow/RECOMMENDED_SKILLS.md lists the stack-agnostic quality &
architecture skills worth having (e.g. karpathy-guidelines, code-review,
security-review, simplify, skill-creator, the engineering:* set), and —
crucially — which ones to skip for a given project (e.g. design skills for a
terminal program, claude-api with no LLM features).
| Project | Notes |
|---|---|
| gtrabanco/ship-lab | json2csv CLI — built end-to-end with the ship-roadmap autopilot |
| gtrabanco/bingo-ev | Started with vibecoding, migrated to the workflow once it was working |