Architecture Decision Record format and process. Use when making architectural decisions, documenting technical choices, evaluating alternatives, or when asked about past decisions. Triggers on ADR creation, architecture discussions, or "why did we choose" questions.
Creates Architecture Decision Records documenting technical choices with context, alternatives, and consequences.
/plugin marketplace add rand/disciplined-process-plugin/plugin install disciplined-process@disciplined-process-pluginThis skill inherits all available tools. When active, it can use any tool Claude has access to.
ADRs document significant technical decisions with context, alternatives considered, and rationale. They answer "WHY did we choose this approach?"
Create an ADR when:
Do NOT create an ADR for:
# ADR-{NNNN}: {Title}
**Status**: {Proposed | Accepted | Deprecated | Superseded by ADR-XXXX}
**Date**: {YYYY-MM-DD}
**Deciders**: {Names or roles}
**Relates to**: {SPEC-XX.YY, ADR-XXXX, bd-XXXX}
## Context
{What is the issue we're facing? What forces are at play?}
## Decision
{What is the change we're proposing/decided?}
**We will {specific decision}.**
## Alternatives Considered
### Alternative 1: {Name}
{Description}
**Pros**:
- {advantage}
**Cons**:
- {disadvantage}
### Alternative 2: {Name}
{Description}
**Pros**:
- {advantage}
**Cons**:
- {disadvantage}
## Consequences
### Positive
- {benefit}
### Negative
- {cost/tradeoff}
### Neutral
- {side effect}
## References
- {Link to spec, discussion, research}
Proposed → Accepted → [Active]
↘ Deprecated
↘ Superseded by ADR-XXXX
| Status | Meaning |
|---|---|
| Proposed | Under discussion, not yet decided |
| Accepted | Decision made, in effect |
| Deprecated | No longer relevant, kept for history |
| Superseded | Replaced by newer ADR (link to it) |
ADRs are numbered sequentially: ADR-0001, ADR-0002, etc.
docs/adr/
├── 0001-use-postgresql-for-persistence.md
├── 0002-adopt-event-sourcing.md
├── 0003-switch-to-grpc.md
├── template.md
└── index.md # Optional: ADR index/summary
Reference related artifacts:
**Relates to**: SPEC-03.07, SPEC-03.08, bd-a1b2
## Context
Per SPEC-03.07, the system MUST validate input length.
This ADR decides HOW we implement that validation.
docs/adr/NNNN-<slug>.mdThis skill should be used when the user asks to "create a slash command", "add a command", "write a custom command", "define command arguments", "use command frontmatter", "organize commands", "create command with file references", "interactive command", "use AskUserQuestion in command", or needs guidance on slash command structure, YAML frontmatter fields, dynamic arguments, bash execution in commands, user interaction patterns, or command development best practices for Claude Code.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
This skill should be used when the user asks to "create a hook", "add a PreToolUse/PostToolUse/Stop hook", "validate tool use", "implement prompt-based hooks", "use ${CLAUDE_PLUGIN_ROOT}", "set up event-driven automation", "block dangerous commands", or mentions hook events (PreToolUse, PostToolUse, Stop, SubagentStop, SessionStart, SessionEnd, UserPromptSubmit, PreCompact, Notification). Provides comprehensive guidance for creating and implementing Claude Code plugin hooks with focus on advanced prompt-based hooks API.