Record an architecture or design decision for an initiative
Creates Architecture Decision Records (ADRs) for initiatives with structured markdown formatting.
/plugin marketplace add hhopkins95/project-tracker/plugin install project-tracker@project-tracker-mpCreate an Architecture Decision Record (ADR) for an initiative.
Identify the initiative:
Gather decision details:
proposed or acceptedCreate the decision file at:
$PROJECT_TRACKER_WORKSPACE/initiatives/{state}/{slug}/decisions/{decision-slug}.md
---
date: '{today's date YYYY-MM-DD}'
status: {proposed | accepted}
---
# {Decision Title}
## Context
{What situation prompted this decision}
## Decision
{What was decided}
## Rationale
{Why this decision was made}
## Alternatives Considered
### {Alternative 1}
{Why it wasn't chosen}
### {Alternative 2}
{Why it wasn't chosen}
## Consequences
### Positive
- {benefit 1}
- {benefit 2}
### Negative
- {drawback 1}
User runs: /record-decision user-auth
You ask about the decision...
User explains they chose JWT over sessions.
You create: $PROJECT_TRACKER_WORKSPACE/initiatives/active/user-auth/decisions/jwt-over-sessions.md
proposed → Initial state, under discussionaccepted → Decision is final and being implementedsuperseded → Replaced by a newer decision (link to it)deprecated → No longer relevant