Scenario War Room

Cross-functional what-if modeling for cascading multi-variable scenarios. Unlike single-assumption stress testing, this models compound adversity acro

What Is Scenario War Room?

Scenario War Room is an advanced scenario modeling tool designed for strategic planners, C-level executives, and engineering leads who need to assess the impact of complex, multi-variable risk scenarios across an organization. Unlike traditional single-assumption stress tests, Scenario War Room enables users to simulate how multiple adverse events can interact and cascade through all business functions, revealing second- and third-order effects that often go undetected in isolated analyses. This approach is vital for organizations operating in volatile environments or facing critical decisions with significant downside risk.

At its core, Scenario War Room provides an interactive framework for "what-if" analysis, allowing teams to model and visualize the compound impact of concurrent adverse events. The tool is built around a cross-functional perspective: finance, engineering, marketing, operations, and more can all be modeled simultaneously, ensuring that no critical interdependencies are overlooked.

Why Use Scenario War Room?

Traditional stress testing typically evaluates the impact of a single risk factor—such as a lost customer or a budget overrun—on a specific business metric. However, real-world crises rarely occur in isolation. For example, the loss of a key customer might coincide with a delayed fundraising round, amplifying cash flow issues and triggering further operational challenges. Scenario War Room is built to model precisely these kinds of compound risks.

Key advantages of using Scenario War Room include:

  • Holistic Risk Assessment: By modeling multiple adverse events simultaneously, organizations can uncover vulnerabilities that emerge only when risks interact.
  • Cross-Functional Insight: Unlike tools that focus solely on finance or operations, Scenario War Room builds a comprehensive picture across all business functions.
  • Decision Support: Informs strategic decisions by highlighting not just the initial impact of risks, but also their cascading effects throughout the organization.
  • Contingency Planning: Facilitates robust pre-mortem analysis, helping teams prepare for worst-case scenarios and develop actionable contingency plans.
  • Stakeholder Alignment: Provides a structured, data-driven framework that aligns executive teams around shared assumptions and risk responses.

How to Get Started

Scenario War Room can be run as an interactive Python tool or invoked via command-line scenario descriptions. To begin, clone the repository and launch the scenario modeler script:

git clone https://github.com/alirezarezvani/claude-skills.git
cd claude-skills/c-level-advisor/scenario-war-room
python scripts/scenario_modeler.py

This will open an interactive session where you can build cascading scenarios step by step. Alternatively, you can specify scenarios directly using the /war-room command format:

/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?"

The tool will then generate a cross-functional impact map, identifying immediate and cascading effects across your organization. Sample Python usage:

from scenario_modeler import build_scenario

scenario = build_scenario([
    "Lose top customer",
    "Miss Q3 fundraise"
])
scenario.display_cascade()

Key Features

  • Cascading Multi-Variable Scenarios: Model scenarios where multiple adverse events occur together, visualizing how one problem leads to another across functions.
  • Cross-Functional Modeling: Simultaneously assess impacts on finance, engineering, product, marketing, HR, and more.
  • Interactive Scenario Builder: Step through scenario construction interactively, refining assumptions and exploring "what-if" branches.
  • Automated Impact Mapping: Generates cause-effect chains, showing how initial stressors propagate through the business.
  • Pre-Mortem Support: Designed for pre-mortem exercises, helping teams anticipate failure modes and plan mitigations.
  • Python Integration: Easily script custom scenarios and analysis using the included Python tools.

Best Practices

  1. Engage Cross-Functional Teams: Involve stakeholders from all major functions to ensure realistic assumptions and comprehensive impact mapping.
  2. Model Realistic Compound Risks: Focus on scenarios that involve more than one adverse event, particularly those with plausible interdependencies.
  3. Iterate and Refine: Use the interactive builder to iteratively refine your scenarios, adjusting assumptions as new information emerges.
  4. Document Assumptions: Clearly record all scenario assumptions and dependencies to maintain transparency and facilitate post-mortem review.
  5. Action-Oriented Outcomes: Use the scenario output to inform concrete contingency plans—don’t just identify risks, assign actions and owners.

Important Notes

  • Scenario War Room is not a replacement for detailed financial or operational modeling tools. Instead, it complements these by showing how problems in one area can trigger issues in others.
  • The tool is designed for compound, multi-variable risk analysis. For simple, single-factor stress tests, use dedicated tools (such as /em:stress-test).
  • While Scenario War Room provides a robust framework for scenario planning, its outputs are only as good as the inputs and assumptions. Regularly update scenarios as business context evolves.
  • This tool does not perform forward financial forecasting or statistical simulation; its strength lies in mapping logical cascades and cross-functional impacts.
  • The codebase is open source under the MIT License and can be extended to fit custom organizational needs. For advanced usage, refer to the official repository.