/adr:list
Display all Architecture Decision Records with their status, dates, and quick action options.
Quick Start
/agileflow:adr:listParameters
| Parameter | Required | Default | Description |
|---|---|---|---|
STATUS | No | - | Filter by status: proposed, accepted, deprecated, superseded |
Examples
List All ADRs
/agileflow:adr:listShows all ADRs sorted by number with their current status.
List Only Accepted ADRs
/agileflow:adr:list STATUS=acceptedFilters to show only ADRs that have been approved and are in effect.
List Only Proposed ADRs
/agileflow:adr:list STATUS=proposedShows ADRs still under discussion, awaiting team approval.
Output Format
The command displays ADRs in a structured table:
## Architecture Decision Records
| # | Title | Status | Date | Tags |
|---|-------|--------|------|------|
| 0003 | Use PostgreSQL for persistence | accepted | 2024-12-28 | database, architecture |
| 0002 | Session management approach | accepted | 2024-12-25 | auth, sessions |
| 0001 | AgileFlow agent system | accepted | 2024-12-20 | agents, architecture |
---
**Summary**: 3 ADRs (3 accepted, 0 proposed, 0 deprecated)
Status Definitions
| Status | Meaning | Action |
|---|---|---|
| proposed | Under discussion, not yet decided | Review and approve or request changes |
| accepted | Decision made and in effect | Implement or create related stories |
| deprecated | No longer applies (but not replaced) | Consider reactivating if context changes |
| superseded | Replaced by a newer ADR | View replacement ADR to understand evolution |
Quick Actions
After displaying the list, you can:
View ADR Details
Select an ADR to see full content including:
- Complete context explaining the decision
- Decision rationale and alternatives considered
- Consequences (positive and negative)
- Related ADRs and stories
/agileflow:adr:view NUMBER=0003Create New ADR
Jump to ADR creation from the list:
/agileflow:adr NUMBER=0004 TITLE="..." CONTEXT="..." DECISION="..." CONSEQUENCES="..."Update ADR Status
Change status of existing ADR (e.g., proposed → accepted):
/agileflow:adr:update NUMBER=0003 STATUS=acceptedWorkflow Integration
After Architecture Review
/agileflow:adr:list STATUS=proposed
# Review proposed decisions
/agileflow:adr:view NUMBER=0003 # View each for discussion
/agileflow:adr:update NUMBER=0003 STATUS=accepted # Approve decisionPlanning Implementation
/agileflow:adr:list STATUS=accepted
# See all approved architectural decisions
/agileflow:adr:view NUMBER=0003
# If needed: /agileflow:epic to create implementation workTracking Decisions
/agileflow:adr:list
# Comprehensive view of all decisions and their status
# Superseded ADRs show decision evolutionRelated Commands
/adr- Create new ADR/adr:view- View full ADR details/adr:update- Update ADR status/epic- Create implementation epic for accepted ADR/story- Create implementation story
On This Page
/adr:listQuick StartParametersExamplesList All ADRsList Only Accepted ADRsList Only Proposed ADRsOutput FormatStatus DefinitionsQuick ActionsView ADR DetailsCreate New ADRUpdate ADR StatusWorkflow IntegrationAfter Architecture ReviewPlanning ImplementationTracking DecisionsRelated Commands