Skip to content

Readiness Scouts

/flow-next:prime answers a single question: is this repository ready for agents to work in it effectively, and ready for production? It does that by dispatching eight specialized scouts in parallel, each owning one pillar of readiness. Every scout is read-only — Edit, Write, and Task are disallowed — so priming a repo never changes it; it only reports.

Prime reports on every pillar but only fixes agent-readiness gaps (with your approval); production-readiness findings are surfaced for you to act on.

flowchart TB
  Prime["/flow-next:prime"] --> Scouts
  subgraph Scouts["Eight pillars (parallel)"]
    Build["build-scout"]
    Test["testing-scout"]
    Tool["tooling-scout"]
    Md["claude-md-scout"]
    Env["env-scout"]
    Sec["security-scout"]
    Obs["observability-scout"]
    Flow["workflow-scout"]
  end
  Scouts --> Report["Readiness report"]

These directly determine whether an agent can work in the repo without guessing.

ScoutTierPillar
build-scoutFastBuild system, scripts, and CI — can an agent compile and run the project to verify its changes?
testing-scoutFastTest framework, coverage configuration, and the commands to run tests for fast local verification.
tooling-scoutFastLinting, formatting, type-checking, and pre-commit — the fast-feedback loop that catches errors before CI.
claude-md-scoutReasoningQuality and completeness of CLAUDE.md / AGENTS.md — conventions, commands, and what not to do.
env-scoutFastEnvironment setup: .env templates, Docker, devcontainers, and undocumented system dependencies.

Not strictly required for agents to work, but important context that prime reports.

ScoutTierPillar
security-scoutFastBranch protection and rulesets, CODEOWNERS, and dependency-update configuration (checked via the gh API).
observability-scoutFastStructured logging, distributed tracing, metrics, and health endpoints.
workflow-scoutFastCI/CD pipelines, PR and issue templates, and workflow automation.
ScoutTierJob
docs-gap-scoutReasoningFlags documentation that has drifted from the code. Also dispatched by /flow-next:plan.
Terminal window
/flow-next:prime

Prime applies its agent-readiness fixes with your approval, then hands you a report covering all eight pillars.