/steer:adopt¶
Reverse-engineer a /spec spine from an existing codebase and add the bundled
scaffold, leaving the repo working spec-first.
When to use
Use when a repo has working code but no /spec spine and no mise.toml, or
when asked to adopt or onboard an existing app onto the standards.
What it does¶
flowchart TD
CODE[Existing codebase] --> READ[Read code + structure]
READ --> SPINE[Materialize /spec spine<br/>intent, contract, glossary, HISTORY]
READ --> SCAFFOLD[Install bundled scaffold<br/>CI, mise.toml, compose, PR template]
SPINE --> STAMP[Stamp /spec/.version]
SCAFFOLD --> STAMP
STAMP --> PR[Propose a PR]
- Reads the existing code to capture what is — not what someone decided.
- Materializes the
/specspine from the bundled templates. - Installs the repo scaffold (toolchain, CI, PR template).
- Stamps
/spec/.versionwith the plugin version.
Guardrails¶
- Read-then-propose. Adopt never clobbers human content and lands changes via
a PR, never a direct push to
main. - No ADR from inference. Adopt must never infer a ratified ADR from code. The as-built spine records what exists; a decision that was never explicitly made is not an ADR. See Product spine.
After adopting¶
- Run
/steer:audit specto compare the as-built spine against the tracker's intent. - Run
/steer:syncafter future plugin releases to stay current.