decisions-and-adrslisted
Install: claude install-skill JLugagne/claude-skills
# Decisions and ADRs
The decision log mechanism for the agile-team-v2 workflow. Two distinct stores — `.decisions/` for tactical/strategic decisions with a review lifecycle, `.adrs/` for strategic Architecture Decision Records — plus the `Authored-By:` commit trailer that audits write authority.
This skill is loaded only by the three agents that **write** to these stores: architect, green, sprint-planner. Other agents read DECISION/ADR files freely (they're public artifacts), but they don't need the format details, the R2 strict rules, or the statuing protocol.
---
## The two stores
### `.adrs/` — strategic, multi-feature, project-direction
Architecture Decision Records. Format unchanged from v1. Strategic only — multi-feature impact, invariant changes, contracts that other features will depend on. The architect writes ADRs.
```markdown
# ADR <NNN> — <short title>
Date: <YYYY-MM-DD>
Scope: strategic
Author: architect
Decided: [autonomously | with human input]
Revisit: [true | false]
## Context
## Decision
## Consequences
## Related
- Features: <links>
- Prior ADRs: <links or None>
- Superseded ADRs: <links or None>
```
`Revisit: true` indicates an autonomous decision under uncertainty — picked up at retro for human review.
Tactical decisions go to `.decisions/`, **not** `.adrs/`. Do not mix.
### `.decisions/` — tactical or strategic, with two-zone frontmatter and review lifecycle
The decision log distinct from strategic ADRs. The architect writes strategic DECISI