Capture a Decision
This guide records an architectural decision — a technology choice, a
design trade-off, a convention — as an architecture decision record
(ADR) in meta/decisions/, and takes it through review to an accepted,
immutable record.
-
Create the ADR. Run
create-adrwith the decision topic:/accelerator:create-adr use PostgreSQL row-level security for tenancyThe skill interviews you about the forces at play, the alternatives you considered, and the trade-offs, then drafts the record. Once you approve, it writes
meta/decisions/ADR-NNNN-<description>.mdwithstatus: proposed. Numbers are allocated sequentially and never reused. -
Or extract decisions already made. If the decision is buried in a research document or plan, run
extract-adrs:/accelerator:extract-adrs meta/plans/2026-07-10-tenancy.md(Leave the argument empty to scan all research and plan documents.) It surfaces candidate decisions as one-line summaries, you pick which to capture, and each approved draft becomes a
proposedADR. -
Review it. Run
review-adr— bare invocation lists allproposedADRs to choose from. The review checks the record’s quality (real alternatives, both-sided consequences) and then asks you to accept, reject, or revise. Revisions loop back; acceptance makes the content immutable. -
Change your mind later — by superseding, not editing. Accepted ADRs cannot be edited. To replace one:
/accelerator:create-adr move tenancy to schema-per-tenant --supersedes ADR-0012The old record is marked
supersededand points at its successor; the new one starts life asproposedand goes through review as normal. To retire a decision without replacing it, runreview-adrwith--deprecate <reason>.
The lifecycle at a glance
Section titled “The lifecycle at a glance”proposed (editable) → accepted (immutable) or rejected;
accepted → superseded (via --supersedes) or deprecated.
Rejected, superseded, and deprecated are terminal.
See also
Section titled “See also”- ADRs — the decision-record family overview.
create-note— for observations that do not warrant a formal record.- Which skill do I need?

