sensitivity-analyzer
Sensitivity analysis skill for identifying critical inputs and understanding model behavior under uncertainty
Best use case
sensitivity-analyzer is best used when you need a repeatable AI agent workflow instead of a one-off prompt.
Sensitivity analysis skill for identifying critical inputs and understanding model behavior under uncertainty
Teams using sensitivity-analyzer 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/sensitivity-analyzer/SKILL.mdinside your project - Restart your AI agent — it will auto-discover the skill
How sensitivity-analyzer Compares
| Feature / Agent | sensitivity-analyzer | 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?
Sensitivity analysis skill for identifying critical inputs and understanding model behavior under uncertainty
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.
SKILL.md Source
# Sensitivity Analyzer
## Overview
The Sensitivity Analyzer skill provides comprehensive capabilities for identifying critical inputs and understanding how model outputs respond to parameter changes. It supports both local (one-at-a-time) and global sensitivity analysis methods, enabling robust decision-making under uncertainty.
## Capabilities
- One-at-a-time (OAT) sensitivity
- Global sensitivity analysis (Sobol indices, Morris screening)
- Tornado diagram generation
- Spider plot creation
- Parameter importance ranking
- Threshold identification
- Breakeven analysis
- Scenario comparison
## Used By Processes
- Monte Carlo Simulation for Decision Support
- Multi-Criteria Decision Analysis (MCDA)
- Prescriptive Analytics and Optimization
- What-If Analysis Framework
## Usage
### One-at-a-Time (OAT) Analysis
```python
# Define OAT analysis
oat_config = {
"base_case": {
"price": 100,
"volume": 10000,
"cost": 60,
"fixed_costs": 200000
},
"variations": {
"price": {"range": [-20, 20], "step": 5, "unit": "%"},
"volume": {"range": [-30, 30], "step": 10, "unit": "%"},
"cost": {"range": [-15, 15], "step": 5, "unit": "%"},
"fixed_costs": {"range": [-10, 10], "step": 5, "unit": "%"}
},
"output_variable": "profit"
}
```
### Global Sensitivity (Sobol Indices)
```python
# Define Sobol analysis
sobol_config = {
"parameters": {
"price": {"bounds": [80, 120], "distribution": "uniform"},
"volume": {"bounds": [7000, 13000], "distribution": "uniform"},
"cost": {"bounds": [50, 70], "distribution": "uniform"}
},
"sample_size": 10000,
"calculate_second_order": True
}
```
### Morris Screening
Efficient screening method for many parameters:
- Identifies parameters with negligible effects
- Distinguishes linear vs. non-linear effects
- Detects interaction effects
### Sensitivity Indices
| Index | Meaning |
|-------|---------|
| S1 (First-order) | Direct effect of parameter |
| ST (Total) | Direct + all interaction effects |
| S2 (Second-order) | Pairwise interaction effect |
## Visualization Types
1. **Tornado Diagram**: Horizontal bars showing impact range
2. **Spider Plot**: Lines showing output vs. % change in each input
3. **Scatter Plot**: Output vs. single input with trend line
4. **Sobol Bar Chart**: First-order and total indices comparison
5. **Morris Plot**: Mean vs. standard deviation of elementary effects
## Input Schema
```json
{
"analysis_type": "OAT|sobol|morris|breakeven",
"model": "function or expression",
"parameters": {
"param_name": {
"base_value": "number",
"range": ["number", "number"],
"distribution": "string"
}
},
"options": {
"sample_size": "number",
"output_variable": "string",
"calculate_interactions": "boolean",
"confidence_level": "number"
}
}
```
## Output Schema
```json
{
"analysis_type": "string",
"parameter_rankings": [
{
"parameter": "string",
"importance_score": "number",
"effect_direction": "positive|negative",
"first_order_index": "number",
"total_index": "number"
}
],
"breakeven_points": {
"parameter": {
"breakeven_value": "number",
"current_distance": "number"
}
},
"interactions": [
{
"parameters": ["string", "string"],
"interaction_index": "number"
}
],
"tornado_data": {
"parameter": {
"low_output": "number",
"high_output": "number",
"swing": "number"
}
},
"visualization_paths": ["string"]
}
```
## Best Practices
1. Start with Morris screening for many parameters (>10)
2. Use Sobol indices for detailed analysis of top parameters
3. Include parameter correlations when they exist
4. Report confidence intervals for sensitivity indices
5. Consider non-linear effects (total vs. first-order indices)
6. Communicate results using tornado diagrams for executives
7. Document parameter ranges and their justification
## Interpretation Guidelines
### Sobol Index Interpretation
- **High S1, High ST**: Important direct effect
- **Low S1, High ST**: Important through interactions
- **High S1, Low ST-S1**: Few interactions
- **Low ST**: Parameter can be fixed at nominal value
### Breakeven Analysis
Identifies the parameter value where:
- NPV = 0
- Profit = 0
- Decision changes
- Threshold is crossed
## Integration Points
- Receives model from Monte Carlo Engine
- Feeds into Decision Visualization for charts
- Supports MCDA methods for weight sensitivity
- Connects with Real Options Analyzer for volatility impactRelated Skills
terraform-analyzer
Specialized skill for analyzing Terraform configurations. Supports parsing, security scanning (tfsec, checkov), cost estimation (infracost), drift detection, and plan visualization across AWS, Azure, and GCP.
db-query-analyzer
Analyze database query performance with execution plans and index recommendations
code-complexity-analyzer
Analyze code complexity metrics including cyclomatic complexity, code smells, and technical debt
cloudformation-analyzer
Validate and analyze AWS CloudFormation templates for security and best practices
semantic-code-analyzer
LLM-powered semantic analysis of code diffs to detect business-logic trojans
sast-analyzer
Static Application Security Testing orchestration and analysis. Execute Semgrep, Bandit, ESLint security plugins, CodeQL, and other SAST tools. Parse, prioritize, and deduplicate findings across multiple tools with remediation guidance.
crypto-analyzer
Cryptographic implementation analysis and validation for encryption algorithms, key sizes, and certificate management
semver-analyzer
Analyze code changes and determine semantic version bumps. Detect breaking changes automatically, suggest version bump (major/minor/patch), generate changelog entries, and validate version consistency.
api-diff-analyzer
Compare API specifications to detect breaking changes. Compare OpenAPI spec versions, categorize changes by severity, generate migration guides, and block breaking changes in CI.
process-analyzer
Analyze processes, identify workflows, define boundaries and scope, and map process requirements for specialization creation.
scope-logic-analyzer
Test equipment integration for signal analysis (oscilloscope and logic analyzer)
protocol-analyzer
Serial protocol analysis and debugging for common embedded interfaces (I2C, SPI, UART)