scenario-planner
What-if analysis for construction projects: model different scenarios and their cost/schedule/resource impacts. Compare alternatives and optimize decisions.
npx skills add majiayu000/claude-skill-registry --skill scenario-planner --agent claude-code
Same command for any agent — swap --agent for codex, cursor, copilot.
Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.
# Scenario Planner for Construction ## Overview Model different project scenarios to understand their impacts on cost, schedule, and resources. Compare alternatives, optimize decisions, and prepare for contingencies. ## Business Case Construction decisions require understanding trade-offs: - **Design Alternatives**: Which option is most cost-effective? - **Schedule Compression**: What's the cost of accelerating? - **Resource Options**: In-house vs. subcontractor? - **Risk Scenarios**: What if materials increase 20%? ## Technical Implementation ```python from dataclasses import dataclass, field from typing import List, Dict, Any, Optional, Callable from datetime import datetime, timedelta import pandas as pd import numpy as np from copy import deepcopy @dataclass class ScenarioParameter: name: str base_value: float unit: str min_value: Optional[float] = None max_value: Optional[float] = None description: str = "" @dataclass class Scenario: id: str name: str description: str parameters: Dict[str, float] created_at: datetime = field(default_factory=datetime.now) @dataclass class ScenarioResult: scenario_id: str scenario_name: str total_cost: float total_duration: int # days resource_r
- Overview
- Business Case
- Technical Implementation
- Quick Start
- Dependencies
pip install pandas numpy
What does the scenario-planner skill do?
What-if analysis for construction projects: model different scenarios and their cost/schedule/resource impacts. Compare alternatives and optimize decisions.
How do I install it?
Run `npx skills add majiayu000/claude-skill-registry --skill scenario-planner --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.
Where does this skill come from?
From majiayu000/claude-skill-registry, a repository with 534 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.
Is a popular skill a good skill?
Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.
