24 lines
639 B
Markdown
24 lines
639 B
Markdown
# Architecture Decision Records
|
|||
|
|
|
||
|
|
This directory contains Architecture Decision Records (ADRs).
|
||
|
|
|
||
|
|
Each ADR documents an architectural decision, its context, and its consequences.
|
||
|
|
|
||
|
|
## How to use
|
||
|
|
|
||
|
|
```bash
|
||
|
|
coder-workflow adr new "<decision title>"
|
||
|
|
coder-workflow adr list
|
||
|
|
coder-workflow adr status <id> --status accepted
|
||
|
|
coder-workflow adr graph
|
||
|
|
```
|
||
|
|
|
||
|
|
## Status Definitions
|
||
|
|
|
||
|
|
| Status | Meaning |
|
||
|
|
| ---------- | --------------------------- |
|
||
|
|
| Proposed | Under discussion |
|
||
|
|
| Accepted | Agreed upon and implemented |
|
||
|
|
| Deprecated | No longer recommended |
|
||
|
|
| Superseded | Replaced by a newer ADR |
|