Create a new Architecture Decision Record using the standard MADR template
Creates a new Architecture Decision Record using the MADR template in docs/adr/.
/plugin marketplace add dariuszparys/claudecode-enhancements/plugin install adr@claude-code-toolkitadr/Create a new Architecture Decision Record (ADR) in the project's docs/adr/ directory.
# Find existing ADRs and determine next number
find . -path "*/docs/adr/[0-9][0-9][0-9][0-9]-*.md" -type f 2>/dev/null | sort | tail -1
If no ADRs exist, start with 0001. Otherwise, increment the highest number.
Ask the user for:
Use this template structure:
# [short title of solved problem and solution]
- Status: [proposed | rejected | accepted | deprecated | superseded by [ADR-0005](0005-example.md)]
- Deciders: [list everyone involved in the decision]
- Date: [YYYY-MM-DD when the decision was last updated]
Technical Story: [description | ticket/issue URL] <!-- optional -->
## Context and Problem Statement
[Describe the context and problem statement, e.g., in free form using two to
three sentences. You may want to articulate the problem in form of a question.]
## Decision Drivers <!-- optional -->
- [driver 1, e.g., a force, facing concern, ...]
- [driver 2, e.g., a force, facing concern, ...]
- ...
## Considered Options
- [option 1]
- [option 2]
- [option 3]
- ...
## Decision Outcome
Chosen option: "[option 1]", because [justification. e.g., only option, which
meets k.o. criterion decision driver | which resolves force force | ... | comes
out best (see below)].
### Positive Consequences <!-- optional -->
- [e.g., improvement of quality attribute satisfaction, follow-up decisions
required, ...]
- ...
### Negative Consequences <!-- optional -->
- [e.g., compromising quality attribute, follow-up decisions required, ...]
- ...
## Pros and Cons of the Options <!-- optional -->
### [option 1]
[example | description | pointer to more information | ...] <!-- optional -->
- Good, because [argument a]
- Good, because [argument b]
- Bad, because [argument c]
- ...
### [option 2]
[example | description | pointer to more information | ...] <!-- optional -->
- Good, because [argument a]
- Good, because [argument b]
- Bad, because [argument c]
- ...
### [option 3]
[example | description | pointer to more information | ...] <!-- optional -->
- Good, because [argument a]
- Good, because [argument b]
- Bad, because [argument c]
- ...
## Links <!-- optional -->
- [Link type] [Link to ADR]
- <!-- example: Refined by [ADR-0005](0005-example.md) -->
- ...
NNNN-title-with-dashes.md0001-use-react-for-frontend.mdWrite to: docs/adr/NNNN-<title>.md
If docs/adr/ doesn't exist, create it first.
The ADR plugin hooks will automatically: