ADR Kit Accept
Overview
Promote a completed draft to a decision. The CLI validates the draft, assigns
the next N number, rewrites ## Proposal to ## Decision, folds
Acceptance criteria and Risks into ## Consequences, writes
adr/decisions/N-*.md, and discards the draft from adr/.drafts/.
Steps
- Review the draft with
adrkit show "<name>"; every section must have real content before accepting. - Run:
adrkit accept "<name>"
- Confirm the output names the new
adr/decisions/N-*.mdfile.
Rules
- Never accept an invalid draft; the command refuses.
- Re-run
adrkit show "<name>"immediately before accepting, even if you reviewed it earlier in this conversation; the repo may have changed since. - Review the generated
## Consequencesafter accepting. - The command warns when a proposal contains sections that have no place in
an accepted decision (for example
## Plan); save their content elsewhere if it still matters.