decisionlisted
Install: claude install-skill tsukumogami/shirabe
@.claude/shirabe-extensions/decision.md
@.claude/shirabe-extensions/decision.local.md
# Decision Skill
Make well-reasoned, auditable decisions through structured evaluation. The skill
produces decision reports that map directly to design doc Considered Options
sections and standalone Decision Records (ADRs).
**Writing style:** Read `skills/writing-style/SKILL.md` for guidance.
## Decision Tiers
This skill handles Tier 3 (standard) and Tier 4 (critical) decisions. For Tier 1-2,
use the lightweight decision protocol (`references/decision-protocol.md`).
| Tier | Path | Phases | When |
|------|------|--------|------|
| 3 (standard) | Fast | 0, 1, 2, 6 | 3+ options, needs research, but not adversarial |
| 4 (critical) | Full | 0, 1, 2, 3, 4, 5, 6 | Irreversible, high-stakes, contested |
## Agent Hierarchy
When invoked as a sub-operation by a parent skill (e.g., /design), the decision
skill runs as a **decider agent**. The decider spawns sub-agents:
```
Level 1: Parent skill (design, explore)
└── Level 2: Decider agent (this skill, one per decision question)
├── Level 3: Research agent (Phase 1, disposable)
├── Level 3: Alternative agents (Phase 2, disposable)
└── Level 3: Validator agents (Phases 3-5, persistent via SendMessage)
├── Phase 3: argue FOR their alternative (bakeoff)
├── Phase 4: receive peer findings, revise position
└── Phase 5: cross-examine peers, reach final position
```
**Validator pers