Agent skill · AI & Agents

scenario-planner

What-if analysis for construction projects: model different scenarios and their cost/schedule/resource impacts. Compare alternatives and optimize decisions.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill scenario-planner --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 2
SKILL.md size: 17 KB
Bundled scripts: none
Path: skills/analysis/scenario-planner/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# 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

What's inside
Steps it walks through
  1. Overview
  2. Business Case
  3. Technical Implementation
  4. Quick Start
  5. Dependencies
Ships with 1 file
  • metadata.json
Commands it runs
pip install pandas numpy
More from claude-skill-registry
All skills →
About this skill
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.

Keep going