Agent skill · AI & Agents

decision-tree-builder

Automated decision tree construction skill for structuring complex decisions with probabilities, payoffs, and expected value calculations

a5c-aigithub.com/a5c-aiGitHub ↗
claude-codecodexcan modify filesMIT
Install
npx skills add a5c-ai/babysitter --skill decision-tree-builder --agent claude-code

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

Facts
Files in the skill folder: 1
SKILL.md size: 4 KB
Bundled scripts: none
Allowed tools: -Read-Write-Glob-Grep-Bash
Path: library/specializations/domains/business/decision-intelligence/skills/decision-tree-builder/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 1,642
Language: JavaScript

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

From the SKILL.md

# Decision Tree Builder ## Overview The Decision Tree Builder skill provides automated construction and analysis of decision trees for structuring complex business decisions. It enables systematic evaluation of alternatives through probability assignments, payoff calculations, and expected value analysis, supporting both prescriptive decision-making and sensitivity analysis. ## Capabilities - Decision node and chance node creation - Probability assignment and validation - Expected value calculation - Decision path optimization - Sensitivity analysis on probabilities - Rollback analysis automation - Decision tree visualization generation - Export to standard formats (JSON, XML) ## Used By Processes - Structured Decision Making Process - Multi-Criteria Decision Analysis (MCDA) - Decision Quality Assessment ## Usage ### Basic Decision Tree Construction ```python # Define decision structure decision_tree = { "type": "decision", "name": "Market Entry Strategy", "alternatives": [ { "name": "Enter Now", "type": "chance", "outcomes": [ {"name": "High Demand", "probability": 0.6, "payoff": 1000000}, {"name": "Low Demand", "probability": 0.4, "payoff": -200000} ] }, { "name": "Wait and See",

What's inside
Steps it walks through
  1. Overview
  2. Capabilities
  3. Used By Processes
  4. Usage
  5. Basic Decision Tree Construction
  6. Expected Value Calculation
  7. Sensitivity Analysis
  8. Visualization Output
  9. Input Schema
  10. Output Schema
  11. Best Practices
  12. Integration Points
More from babysitter
All skills →
About this skill
What does the decision-tree-builder skill do?

Automated decision tree construction skill for structuring complex decisions with probabilities, payoffs, and expected value calculations

How do I install it?

Run `npx skills add a5c-ai/babysitter --skill decision-tree-builder --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 a5c-ai/babysitter, a repository with 1,642 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