← ClaudeAtlas

decisionlisted

Structured decision-making skill for contested choices. Use when facing a decision with 3+ viable alternatives, contradicting evidence, or irreversible consequences. Runs a multi-phase evaluation: research, alternative identification, validation bakeoff with adversarial agents, peer revision, cross-examination, and synthesis. Triggers on "decide between X and Y", "which approach should we use for Z", "I need to choose between A, B, and C", or when a lightweight decision escalates via status="escalated". Also invocable as a sub-operation by /design for parallel multi-decision orchestration.
tsukumogami/shirabe · ★ 0 · AI & Automation · score 67
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