Skip to content

Fleet Feature Catalog

Auto-generated by scripts/gen-features.mjs from the bundled skill/crew/role/workflow frontmatter. Do not edit by hand — run npm run build (or node scripts/gen-features.mjs) to regenerate.

A compact index of fleet capabilities shipped with this release. For full documentation see the other files in this docs/ directory.

Totals: 16 workflows · 9 skills · 41 roles · 5 crews (71 features)

Workflows

NameInvocationDescription
adversarial-research/research <topic or question>Adversarial deep research on a topic (parallel explorers + critic)
approval-gateDemo — build → human approval interrupt → deploy. Bundled example for #369 Phase 3C interrupts.
brainstormPre-feature brainstorming workflow. Spawns 3 parallel adversarial inquisitor agents (UX, technical, edge-cases) in round 1 to grill the user with questions until consensus is reached. Standalone (/brainstorm) writes 00-brainstorming.{md,context.md} in its own slug dir; chained via /feature --deep-brainstorm writes 01-brainstorming.md inline in the feature slug.
bug-autopilot/bug-autopilot <bug description or repro> [--scope diff|full] [--legacy-workflow-dispatch]End-to-end bug-fix autopilot: reproduce → fix → regression-test → code-review loop → open PR → wait for human approval → iterate on feedback → merge.
code-review/code-review [path or git-range]Run comprehensive multi-agent code review
code-review-autopilot/code-review-autopilot [target] [--scope=diff|full] [--ship] [--max-stage-visits <N>] [--legacy-workflow-dispatch]Iterative code-review auto-pilot: review → triage → fix → validate, looping until convergence; optional PR handoff via --ship. Pass --scope=full to audit the whole codebase instead of a diff.
compose-reviewCross-feature composition demo — fan-out per-file reviews → user approval interrupt → conditional apply/skip → report (#369 Phase 3A + 3B + 3C)
feature-pipeline7-phase feature planning pipeline (brainstorm → requirements → research → design → validation → DoD → tasks) — drives the /feature slash command
fixer-loop/fixer-loop [--max-iterations <N>] [--plan-dir <path>] [--legacy-workflow-dispatch]Auto-pilot loop that reviews, triages, fixes, and verifies. Iterates until convergence or budget exhausted.
freeformNo-op workflow for ad-hoc/freeform crew operation
github-issue-worker-autopilot/github-issue-worker-autopilot [--max-stage-visits <N>] [--legacy-workflow-dispatch]GitHub-issues-driven autopilot: triage open issues, fix, validate with tests, generate proof artifacts, and ship as a draft PR.
init-investigation/init [refresh] [--legacy-workflow-dispatch]Workflow-driven /init — parallel investigators + critic + synthesizer
per-file-reviewDemo — fan-out per-file reviews and gather into a single digest (#369 Phase 3B)
planningMulti-step planning workflow with adversarial research, DoD, task breakdown, and execution
subgraph-exampleDemo — parent workflow that invokes code-review as a subgraph stage
triageInvestigate then branch — fix / review / skip — based on artifacts, placeholders, and ifResult

Skills

NameInvocationDescription
agents-fleet-conventionsShared conventions for agents-fleet codebase (TypeScript/ESM/branded types/named exports)
coordinator-worker-architectureagents-fleet coordinator-worker primitives, boundaries, and concurrency
hub-tool-disciplineHub topology — workers MUST route ALL coordinator-bound communication through report_to_coordinator
ponytail-minimalismYAGNI ladder and minimalism rules — forces the laziest solution that actually works
ponytail-reviewOver-engineering code review — finds what to delete, replace with stdlib/native, or shrink
prepared-statements-patternIntelDatabase prepared-statement conventions for better-sqlite3 (WAL, sync, idempotent migrations)
react-ink-patternsReact 18 + Ink 5 terminal-UI patterns — function components, hooks, Static, Box layout, polling
security-audit-checklistThreat-model audit checklist — path traversal, SQL injection, prototype pollution, credentials, command injection, MCP allowlists
vitest-patternsVitest 4.x test patterns — fixtures, mocking, async, tmpDir cleanup

Roles

NameTypeDescription
architecture-revieweragent_type: reviewerArchitecture and design pattern reviewer
context-researcheragent_type: explorerContext and dependencies researcher - investigates surrounding context and historical background
correctness-revieweragent_type: reviewerLogic and correctness focused code reviewer
counter-researcheragent_type: explorerCounter-arguments and alternatives researcher - investigates downsides and alternative approaches
default-coderagent_type: coderDefault system prompt for coder worker agents
default-coordinatoragent_type: coordinatorDefault coordinator system prompt for fleet orchestration
default-exploreragent_type: explorerDefault system prompt for explorer worker agents
default-general-purposeagent_type: general-purposeDefault system prompt for general-purpose worker agents
default-researcheragent_type: researcherDefault system prompt for researcher worker agents
default-revieweragent_type: reviewerDefault system prompt for reviewer worker agents
default-testeragent_type: testerDefault system prompt for tester worker agents
edge-case-researcheragent_type: explorerEdge cases and failure modes researcher - investigates what could go wrong
fleet-architectagent_type: reviewerArchitecture reviewer specialized for agents-fleet coordinator-worker patterns
fleet-coderagent_type: coderCoder agent specialized for agents-fleet (TypeScript/ESM/Ink/Copilot SDK)
fleet-correctness-revieweragent_type: reviewerCorrectness reviewer specialized for agents-fleet type safety and async patterns
fleet-exploreragent_type: explorerRead-only explorer specialized for investigating the agents-fleet codebase
fleet-maintainability-revieweragent_type: reviewerMaintainability reviewer specialized for agents-fleet code hygiene and conventions
fleet-minimalism-revieweragent_type: reviewerMinimalism / over-engineering reviewer — finds what to delete, replace with stdlib/native, or shrink
fleet-performance-revieweragent_type: reviewerPerformance reviewer specialized for agents-fleet runtime efficiency and resource usage
fleet-researcheragent_type: researcherResearch and investigation agent with scoped write access for the agents-fleet codebase
fleet-security-revieweragent_type: reviewerSecurity reviewer specialized for agents-fleet threat model
fleet-testeragent_type: testerTester agent specialized for agents-fleet (Vitest/better-sqlite3/real implementations)
init-api-exploreragent_type: coderInvestigates API surface and contracts
init-arch-exploreragent_type: coderInvestigates architecture and project structure
init-build-exploreragent_type: coderInvestigates build system, test framework, and dev workflow
init-criticagent_type: reviewerAdversarial critic that verifies investigation findings
init-decision-exploreragent_type: coderInvestigates key design decisions and rationale
init-dep-exploreragent_type: coderInvestigates dependencies and external services
init-pattern-exploreragent_type: coderInvestigates coding patterns and conventions
init-security-exploreragent_type: coderInvestigates security model and authentication
inquisitor-edge-casesagent_type: explorerAdversarial edge-cases-angle inquisitor that grills the user with questions about failure modes, security, malformed input, and adversarial scenarios before a feature is built. Spawned by /brainstorm in round 1 alongside inquisitor-ux and inquisitor-technical.
inquisitor-technicalagent_type: explorerAdversarial technical/integration-angle inquisitor that grills the user with questions about architecture, integration points, data shapes, and operational concerns before a feature is built. Spawned by /brainstorm in round 1 alongside inquisitor-ux and inquisitor-edge-cases.
inquisitor-uxagent_type: explorerAdversarial UX-angle inquisitor that grills the user with questions about intent, workflows, success criteria, and user experience before a feature is built. Spawned by /brainstorm in round 1 alongside inquisitor-technical and inquisitor-edge-cases.
performance-revieweragent_type: reviewerPerformance and efficiency focused reviewer
planning-coordinatoragent_type: coordinatorCoordinator specialized for planning workflows - brainstorming, requirements, and design
ponytail-coderagent_type: coderMinimalist coder — a lazy senior developer who writes the least code that works
primary-researcheragent_type: explorerPrimary research perspective - direct investigation of facts, code, documentation, examples
research-coordinatoragent_type: coordinatorCoordinator specialized for parallel research and investigation workflows
research-criticagent_type: reviewerAdversarial critic that cross-references and verifies research findings
security-revieweragent_type: reviewerOWASP-focused security audit reviewer
test-revieweragent_type: reviewerTest coverage and quality reviewer for agents-fleet (TypeScript/Vitest)

Crews

NameWorkflowDescription
agents-fleet-crew/planningDefault development crew for agents-fleet
code-review-crew/code-reviewMulti-perspective code review crew (4 reviewers + synthesis)
init-crew/init-investigationCodebase investigation crew for /init command
minimal-dev-crewMinimalist dev crew — ponytail coder implements, reviewer audits for over-engineering
research-crew/adversarial-researchAdversarial research crew — 4 angles + critic