Document architectural choices
Document architecture decisions with context and rationale using Architecture Decision Records (ADR).
/architecture-decision [topic] - Document specific architecture decisionPrompt for decision context:
Gather options considered:
Document decision made:
Link to related context:
Create ADR document in 06-Resources/Architecture_Decisions/
# ADR: [Title]
**Date:** [Today]
**Status:** Accepted
**Deciders:** [Names]
## Context
[What problem are we solving? What constraints?]
## Options Considered
### Option 1: [Name]
**Pros:**
- [Pro 1]
**Cons:**
- [Con 1]
### Option 2: [Name]
[Same structure]
## Decision
We chose [Option] because [reasoning].
## Trade-offs
- [Trade-off accepted]
## Implementation Notes
[How to implement this decision]