Generate structured decision-making tools ā step-by-step guides, bias checkers, scenario explorers, and interactive dashboards. Use when facing significant choices requiring systematic analysis...
Create structured decision support materials that help humans think through significant choices systematically. This skill produces interactive tools, not just analysis ā empowering the decision-maker rather than deciding for them.
Different people process decisions differently:
| Style | Accommodation |
|---|---|
| Analytical | Numbers, matrices, weighted scores |
| Intuitive | Gut-check prompts, "how does this feel?" |
| Visual | Diagrams, progress bars, color coding |
| Verbal | Written summaries, question prompts |
| Sequential | Step-by-step wizard flow |
| Global | Dashboard overview option |
Invoke this skill when user faces:
Not for: Trivial decisions, emergency responses, or when user just needs information.
Should I pursue this opportunity?
Where should I invest my time/money/attention?
What could go wrong and is it worth it?
Which option among alternatives?
Nine steps, each focused on one dimension:
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
ā 1. CONTEXT What is the decision? ā
ā 2. FIRST PRINCIPLES Does this solve a real problem? ā
ā 3. TIMING Is now the right moment? ā
ā 4. STAKEHOLDERS Who else is involved? Are they stable? ā
ā 5. BIASES What might cloud my judgment? ā
ā 6. OPPORTUNITY COST What am I giving up? ā
ā 7. SCENARIOS What could happen? ā
ā 8. QUESTIONS What do I still need to learn? ā
ā 9. SYNTHESIS Summary + decision ā
āāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāāā
Step-by-step wizard with:
For offline/text-based use:
For audio consumption:
For documentation/sharing:
1. What problem does this solve?
2. Can I solve it myself?
3. Is this the best solution?
4. What assumptions am I making?
5. If starting fresh today, would I choose this?
ā” FOMO ā Am I afraid of missing out?
ā” Sunk Cost ā Am I factoring past investment?
ā” Authority ā Am I deferring to credentials?
ā” Social Proof ā Am I following the crowd?
ā” Commitment ā Do I feel locked in by past statements?
ā” Optimism ā Am I assuming problems will resolve?
ā” Recency ā Am I overweighting recent events?
ā” Confirmation ā Am I seeking validating info only?
ā” Shiny Object ā Is novelty distracting me?
ā” Loss Aversion ā Am I overweighting potential losses?
Hours/week Ć Weeks Ć Hourly rate = Direct cost
+ What else could those hours produce?
+ What relationships/opportunities might suffer?
= True opportunity cost
| Scenario | Probability | Outcome | Expected Value |
|----------|-------------|---------|----------------|
| Worst | X% | ... | ... |
| Bad | X% | ... | ... |
| Neutral | X% | ... | ... |
| Good | X% | ... | ... |
| Best | X% | ... | ... |
Imagine it's [future date]. This decision failed. Why?
Possible causes:
1. ...
2. ...
3. ...
Which causes are within my control?
Which warning signs should I watch for?
How will I feel about this decision in:
- 10 minutes?
- 10 months?
- 10 years?
Imagine you're 80 looking back.
Would you regret doing this?
Would you regret NOT doing this?
Ask user for:
Or extract from existing documents (meeting transcripts, notes).
Based on user preference and context:
Use templates in templates/ directory:
decision-guide-template.html ā Full interactive wizarddecision-framework.md ā Text-based analysisdecision-voice-summary.md ā Audio script templateReplace placeholders:
{{DECISION_TITLE}} ā What's being decided{{CONTEXT}} ā Background information{{OPTIONS}} ā Available choices{{STAKEHOLDERS}} ā People/teams involved{{TIMELINE}} ā Relevant dates{{FACTORS}} ā Key evaluation criteriaIf using Agency brand:
<main role="main" aria-label="Decision Guide">
<nav aria-label="Progress">
<ol role="list">...</ol>
</nav>
<section aria-labelledby="step-title">
<h1 id="step-title">...</h1>
</section>
</main>
// Ensure all interactive elements are focusable
// Tab order follows visual order
// Enter/Space activate buttons
// Arrow keys navigate options
<div role="status" aria-live="polite" id="announcer">
<!-- Announce step changes, selections, results -->
</div>
/* Minimum 4.5:1 for normal text, 3:1 for large text */
--text-on-light: #000000; /* 21:1 on white */
--text-on-dark: #ffffff; /* 21:1 on black */
--text-on-primary: #ffffff; /* Check each color */
@media (prefers-reduced-motion: reduce) {
* {
animation: none !important;
transition: none !important;
}
}
User: Analyze this meeting transcript and create a decision toolkit
Claude: [Extracts decision, stakeholders, options from transcript]
[Generates interactive HTML guide]
[Creates voice summary]
User: I need to decide whether to take a new job offer
Claude: [Asks clarifying questions]
[Generates decision framework]
[Customizes for career decision type]
User: Help me think through this partnership decision, just give me the frameworks
Claude: [Provides markdown framework]
[Skips interactive tool]
[Focuses on key questions]
SKILL.md ā This filetemplates/decision-guide-template.html ā Interactive wizard templatetemplates/decision-framework.md ā Text-based analysis templatetemplates/decision-voice-summary.md ā Audio script templatereferences/bias-encyclopedia.md ā Detailed bias descriptionsreferences/framework-deep-dives.md ā Extended framework explanationsWorks well with:
Context: Initial skill creation from Synthius decision session
Key Insight: Dashboard-everything-at-once overwhelms. Step-by-step wizard with one concept per screen dramatically improves usability.
Architecture: 9-step journey covering all major decision dimensions. State object persists selections across steps. Summary aggregates everything.
Accessibility Note: High contrast neobrutalism actually helps accessibility ā clear borders, distinct states, no subtle gradients.