scenario-war-room
Cross-functional what-if modeling for cascading multi-variable scenarios. Unlike single-assumption stress testing, this models compound adversity across all business functions simultaneously. Use when facing complex risk scenarios, strategic decisions with major downside, or when the user asks 'what if X AND Y both happen?'
Best use case
scenario-war-room is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Cross-functional what-if modeling for cascading multi-variable scenarios. Unlike single-assumption stress testing, this models compound adversity across all business functions simultaneously. Use when facing complex risk scenarios, strategic decisions with major downside, or when the user asks 'what if X AND Y both happen?'
Teams using scenario-war-room should expect a more consistent output, faster repeated execution, less prompt rewriting.
When to use this skill
- You want a reusable workflow that can be run more than once with consistent structure.
When not to use this skill
- You only need a quick one-off answer and do not need a reusable workflow.
- You cannot install or maintain the underlying files, dependencies, or repository context.
Installation
Claude Code / Cursor / Codex
Manual Installation
- Download SKILL.md from GitHub
- Place it in
.claude/skills/scenario-war-room/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How scenario-war-room Compares
| Feature / Agent | scenario-war-room | Standard Approach |
|---|---|---|
| Platform Support | Not specified | Limited / Varies |
| Context Awareness | High | Baseline |
| Installation Complexity | Unknown | N/A |
Frequently Asked Questions
What does this skill do?
Cross-functional what-if modeling for cascading multi-variable scenarios. Unlike single-assumption stress testing, this models compound adversity across all business functions simultaneously. Use when facing complex risk scenarios, strategic decisions with major downside, or when the user asks 'what if X AND Y both happen?'
Where can I find the source code?
You can find the source code on GitHub using the link provided at the top of the page.
Related Guides
SKILL.md Source
# Scenario War Room Model cascading what-if scenarios across all business functions. Not single-assumption stress tests — compound adversity that shows how one problem creates the next. ## Keywords scenario planning, war room, what-if analysis, risk modeling, cascading effects, compound risk, adversity planning, contingency planning, stress test, crisis planning, multi-variable scenario, pre-mortem ## Quick Start ```bash python scripts/scenario_modeler.py # Interactive scenario builder with cascade modeling ``` Or describe the scenario: ``` /war-room "What if we lose our top customer AND miss the Q3 fundraise?" /war-room "What if 3 engineers quit AND we need to ship by Q3?" /war-room "What if our market shrinks 30% AND a competitor raises $50M?" ``` ## What This Is Not - **Not** a single-assumption stress test (that's `/em:stress-test`) - **Not** financial modeling only — every function gets modeled - **Not** worst-case-only — models 3 severity levels - **Not** paralysis by analysis — outputs concrete hedges and triggers ## Framework: 6-Step Cascade Model ### Step 1: Define Scenario Variables (max 3) State each variable with: - **What changes** — specific, quantified if possible - **Probability** — your best estimate - **Timeline** — when it hits ``` Variable A: Top customer (28% ARR) gives 60-day termination notice Probability: 15% | Timeline: Within 90 days Variable B: Series A fundraise delayed 6 months beyond target close Probability: 25% | Timeline: Q3 Variable C: Lead engineer resigns Probability: 20% | Timeline: Unknown ``` ### Step 2: Domain Impact Mapping For each variable, each relevant role models impact: | Domain | Owner | Models | |--------|-------|--------| | Cash & runway | CFO | Burn impact, runway change, bridge options | | Revenue | CRO | ARR gap, churn cascade risk, pipeline | | Product | CPO | Roadmap impact, PMF risk | | Engineering | CTO | Velocity impact, key person risk | | People | CHRO | Attrition cascade, hiring freeze implications | | Operations | COO | Capacity, OKR impact, process risk | | Security | CISO | Compliance timeline risk | | Market | CMO | CAC impact, competitive exposure | ### Step 3: Cascade Effect Mapping This is the core. Show how Variable A triggers consequences in domains that trigger Variable B's effects: ``` TRIGGER: Customer churn ($560K ARR) ↓ CFO: Runway drops 14 → 8 months ↓ CHRO: Hiring freeze; retention risk increases (morale hit) ↓ CTO: 3 open engineering reqs frozen; roadmap slips ↓ CPO: Q4 feature launch delayed → customer retention risk ↓ CRO: NRR drops; existing accounts see reduced velocity → more churn risk ↓ CFO: [Secondary cascade — potential death spiral if not interrupted] ``` Name the cascade explicitly. Show where it can be interrupted. ### Step 4: Severity Matrix Model three scenarios: | Scenario | Definition | Recovery | |----------|------------|---------| | **Base** | One variable hits; others don't | Manageable with plan | | **Stress** | Two variables hit simultaneously | Requires significant response | | **Severe** | All variables hit; full cascade | Existential; requires board intervention | For each severity level: - Runway impact - ARR impact - Headcount impact - Timeline to unacceptable state (trigger point) ### Step 5: Trigger Points (Early Warning Signals) Define the measurable signal that tells you a scenario is unfolding **before** it's confirmed: ``` Trigger for Customer Churn Risk: - Sponsor goes dark for >3 weeks - Usage drops >25% MoM - No Q1 QBR confirmed by Dec 1 Trigger for Fundraise Delay: - <3 term sheets after 60 days of process - Lead investor requests >30-day extension on DD - Competitor raises at lower valuation (market signal) Trigger for Engineering Attrition: - Glassdoor activity from engineering team - 2+ referral interview requests from engineers - Above-market offer counter-required in last 3 months ``` ### Step 6: Hedging Strategies For each scenario: actions to take **now** (before the scenario materializes) that reduce impact if it does. | Hedge | Cost | Impact | Owner | Deadline | |-------|------|--------|-------|---------| | Establish $500K credit line | $5K/year | Buys 3 months if churn hits | CFO | 60 days | | 12-month retention bonus for 3 key engineers | $90K | Locks team through fundraise | CHRO | 30 days | | Diversify to <20% revenue concentration per customer | Sales effort | Reduces single-customer risk | CRO | 2 quarters | | Compress fundraise timeline, start parallel process | CEO time | Closes before runways merge | CEO | Immediate | --- ## Output Format Every war room session produces: ``` SCENARIO: [Name] Variables: [A, B, C] Most likely path: [which combination actually plays out, with probability] SEVERITY LEVELS Base (A only): [runway/ARR impact] — recovery: [X actions] Stress (A+B): [runway/ARR impact] — recovery: [X actions] Severe (A+B+C): [runway/ARR impact] — existential risk: [yes/no] CASCADE MAP [A → domain impact → B trigger → domain impact → end state] EARLY WARNING SIGNALS - [Signal 1 → which scenario it indicates] - [Signal 2 → which scenario it indicates] - [Signal 3 → which scenario it indicates] HEDGES (take these actions now) 1. [Action] — cost: $X — impact: [what it buys] — owner: [role] — deadline: [date] 2. [Action] — cost: $X — impact: [what it buys] — owner: [role] — deadline: [date] 3. [Action] — cost: $X — impact: [what it buys] — owner: [role] — deadline: [date] RECOMMENDED DECISION [One paragraph. What to do, in what order, and why.] ``` --- ## Rules for Good War Room Sessions **Max 3 variables per scenario.** More than 3 is noise — you can't meaningfully prepare for 5-variable collapse. Model the 3 that actually worry you. **Quantify or estimate.** "Revenue drops" is not useful. "$420K ARR at risk over 60 days" is. Use ranges if uncertain. **Don't stop at first-order effects.** The damage is always in the cascade, not the initial hit. **Model recovery, not just impact.** Every scenario should have a "what we do" path. **Separate base case from sensitivity.** Don't conflate "what probably happens" with "what could happen." **Don't over-model.** 3-4 scenarios per planning cycle is the right number. More creates analysis paralysis. --- ## Common Scenarios by Stage **Seed:** - Co-founder leaves + product misses launch - Funding runs out + bridge terms unfavorable **Series A:** - Miss ARR target + fundraise delayed - Key customer churns + competitor raises **Series B:** - Market contraction + burn multiple spikes - Lead investor wants pivot + team resists ## Integration with C-Suite Roles | Scenario Type | Primary Roles | Cascade To | |--------------|---------------|------------| | Revenue miss | CRO, CFO | CMO (pipeline), COO (cuts), CHRO (layoffs) | | Key person departure | CHRO, COO | CTO (if eng), CRO (if sales) | | Fundraise failure | CFO, CEO | COO (runway extension), CHRO (hiring freeze) | | Security breach | CISO, CTO | CEO (comms), CFO (cost), CRO (customer impact) | | Market shift | CEO, CPO | CMO (repositioning), CRO (new segments) | | Competitor move | CMO, CRO | CPO (roadmap response), CEO (strategy) | ## References - `references/scenario-planning.md` — Shell methodology, pre-mortem, Monte Carlo, cascade frameworks - `scripts/scenario_modeler.py` — CLI tool for structured scenario modeling
Related Skills
youtube-watcher
Fetch and read transcripts from YouTube videos. Use when you need to summarize a video, answer questions about its content, or extract information from it.
youtube-transcript
Fetch and summarize YouTube video transcripts. Use when asked to summarize, transcribe, or extract content from YouTube videos. Handles transcript fetching via residential IP proxy to bypass YouTube's cloud IP blocks.
youtube-auto-captions - YouTube 自动字幕
## 描述
youtube
YouTube Data API integration with managed OAuth. Search videos, manage playlists, access channel data, and interact with comments. Use this skill when users want to interact with YouTube. For other third party apps, use the api-gateway skill (https://clawhub.ai/byungkyu/api-gateway).
yahoo-finance
Get stock prices, quotes, fundamentals, earnings, options, dividends, and analyst ratings using Yahoo Finance. Uses yfinance library - no API key required.
xurl
A Twitter research and content intelligence skill focused on attracting WordPress and Shopify clients. Use to analyze Twitter profiles, threads, and conversations for: (1) Identifying what small agency founders and eCommerce brands are discussing; (2) Understanding pain points around WordPress performance, Shopify CRO, and development bottlenecks; (3) Extracting high-performing content angles; (4) Turning insights into authority-building posts; (5) Converting Twitter intelligence into business leverage for clear content angles, strong positioning, and qualified inbound leads.
xlsx
Use this skill any time a spreadsheet file is the primary input or output. This means any task where the user wants to: open, read, edit, or fix an existing .xlsx, .xlsm, .csv, or .tsv file (e.g., adding columns, computing formulas, formatting, charting, cleaning messy data); create a new spreadsheet from scratch or from other data sources; or convert between tabular file formats. Trigger especially when the user references a spreadsheet file by name or path — even casually (like "the xlsx in my downloads") — and wants something done to it or produced from it. Also trigger for cleaning or restructuring messy tabular data files (malformed rows, misplaced headers, junk data) into proper spreadsheets. The deliverable must be a spreadsheet file. Do NOT trigger when the primary deliverable is a Word document, HTML report, standalone Python script, database pipeline, or Google Sheets API integration, even if tabular data is involved.
xiaohongshu-mcp
Automate Xiaohongshu (RedNote) content operations using a Python client for the xiaohongshu-mcp server. Use for: (1) Publishing image, text, and video content, (2) Searching for notes and trends, (3) Analyzing post details and comments, (4) Managing user profiles and content feeds. Triggers: xiaohongshu automation, rednote content, publish to xiaohongshu, xiaohongshu search, social media management.
twitter-openclaw
Interact with Twitter/X — read tweets, search, post, like, retweet, and manage your timeline.
x-twitter-growth
X/Twitter growth engine for building audience, crafting viral content, and analyzing engagement. Use when the user wants to grow on X/Twitter, write tweets or threads, analyze their X profile, research competitors on X, plan a posting strategy, or optimize engagement. Complements social-content (generic multi-platform) with X-specific depth: algorithm mechanics, thread engineering, reply strategy, profile optimization, and competitive intelligence via web search.
akshare-online-alpha
Run Wyckoff master-style analysis from stock codes, holdings (symbol/cost/qty), cash, CSV data, and optional chart images. Use when users want online multi-source data fetching with source switching, strict Beijing-time trading-session checks, fixed system prompt analysis, single-stock analysis, holding rotation, holding add/reduce suggestions, or empty-position cash deployment suggestions.
writing-skills
Use when creating new skills, editing existing skills, or verifying skills work before deployment