Skill: /causal — OpenCausalInf Causal Inference Toolkit
Purpose
Multi-mode skill for causal inference when experiments aren't possible. Helps users estimate treatment effects from observational data with explicit assumption checking, sensitivity analysis, and mandatory caveats. Uses coded helpers from helpers/stats/experiment_stats/causal/.
When to Use
Invoke as /causal [mode] or trigger on causal inference intents:
- "Did this feature actually cause the improvement?"
- "We can't run an experiment, but..."
- "Was this change responsible for the metric movement?"
- "Can we measure the impact retroactively?"
Modes
/causal select
Purpose: Walk the method selection decision tree and recommend a causal method.
Agent: agents/causal/causal-method-selector.md
Flow:
- Ask 4-6 diagnostic questions:
- Can you randomize? → Route to
/experiment design
- Do you have a comparison group?
- Do you have pre-treatment data?
- Are there observable confounders you can measure?
- How many time periods do you have?
- Recommend: Pre-Post, DiD, PSM, Regression Adjustment, or "not feasible"
- Output: recommended method + confidence level + rationale
Checkpoint: Method confirmation (Type C — user must confirm before analysis)
/causal analyze
Purpose: Run the selected causal method on data.
Agent: agents/causal/causal-analyzer.md
Flow:
- Read selected method from previous step or user input
- Dispatch to appropriate helper:
from helpers.stats.experiment_stats.causal import (
pre_post_analysis, did_basic, propensity_match,
regression_adjust,
)
# Method routing:
# "pre_post" → pre_post_analysis(pre, post, covariates)
# "did" → did_basic(df, outcome, treat, post)
# "psm" → propensity_match(df, treat, covariates, outcome)
# "regression" → regression_adjust(df, outcome, treatment, covariates)
- Generate charts (treatment effect, balance plots for PSM, event study for DiD)
- Output:
working/causal_analysis_results.json
/causal check
Purpose: Run assumption checks for the selected method.
Agent: agents/causal/causal-assumption-checker.md
Flow:
- Identify which assumptions apply to the selected method:
- DiD: Parallel trends, no anticipation, stable composition
- PSM: Common support, balance (SMD < 0.1), positivity
- Pre-Post: No concurrent events, trend stability
- Regression: All confounders included, correct specification
- Run quantitative checks:
from helpers.stats.experiment_stats.causal import (
check_parallel_trends, check_common_support,
balance_table,
)
- Output: per-assumption PASS / WARNING / FAIL verdicts
Checkpoint: Any FAIL (Type C) → present options: adjust method, add caveats, or abort
/causal sensitivity
Purpose: Test how robust the estimate is to unmeasured confounding.
Agent: agents/causal/causal-sensitivity.md
Flow:
- Run sensitivity analysis based on method:
from helpers.stats.experiment_stats.causal import rosenbaum_bounds, e_value
# PSM: rosenbaum_bounds(treated_outcomes, control_outcomes)
# All: e_value(risk_ratio, ci_lower)
- Translate to plain language: "An unmeasured confounder would need to be X times stronger than anything we measured to explain away this result."
- Output: sensitivity report
/causal report
Purpose: Generate a report with mandatory caveats.
Agent: agents/causal/causal-report-generator.md
Flow:
- Compile: estimate + CI + assumption verdicts + sensitivity results
- Place on confidence ladder (RCT > DiD+reg > PSM > DiD > regression > pre-post)
- Include mandatory caveat block (method-specific, non-negotiable)
- Output:
outputs/causal_report_{{DATE}}.md
/causal full
Purpose: End-to-end: select → analyze → check → sensitivity → report.
Flow: Runs all modes in sequence. All Type C checkpoints fire.
Confidence Ladder
Methods ranked by causal credibility (highest to lowest):
| Level |
Method |
Confidence |
| 1 |
RCT (Randomized Experiment) |
HIGH |
| 2 |
DiD + Regression Adjustment |
MODERATE-HIGH |
| 3 |
PSM (Good Overlap + Balance) |
MODERATE |
| 4 |
DiD (Parallel Trends OK) |
MODERATE |
| 5 |
Regression Adjustment |
LOW-MODERATE |
| 6 |
Pre-Post (With Trend) |
LOW |
| 7 |
Pre-Post (Simple) |
VERY LOW |
Mandatory Caveats (Non-Negotiable)
Every causal report MUST include the method-specific caveat. These are architecturally required — the agent cannot produce a report without them.
| Method |
Mandatory Caveat |
| Pre-Post |
"Assumes nothing else changed during this period. Any concurrent event could explain this result." |
| DiD |
"Assumes the control group would have followed the same trend. Plausible but unprovable." |
| PSM |
"Controls for observed confounders only. Unmeasured factors could bias this estimate." |
| Regression |
"Assumes all relevant confounders are included and the model is correctly specified." |
Helper Function Reference
| Function |
Module |
Use For |
pre_post_analysis() |
causal.pre_post |
Pre-post comparison |
did_basic() |
causal.did |
2x2 DiD estimator |
parallel_trends_test() |
causal.did |
Test parallel trends assumption |
event_study() |
causal.did |
Period-by-period effects |
propensity_match() |
causal.matching |
PSM pipeline |
balance_table() |
causal.balance |
SMD balance diagnostics |
love_plot() |
causal.balance |
Before/after balance visual |
regression_adjust() |
causal.regression |
OLS with covariates |
rosenbaum_bounds() |
causal.sensitivity |
PSM sensitivity |
e_value() |
causal.sensitivity |
Universal sensitivity measure |
check_parallel_trends() |
causal.assumptions |
DiD assumption |
check_common_support() |
causal.assumptions |
PSM assumption |
Cross-Product Handoffs
/causal select → "Can you randomize? YES" → suggest /experiment design
/experiment power → NOT_VIABLE → suggest /causal select
/causal check → All assumptions FAIL → suggest redesign or descriptive-only analysis
State Management
analyses/{slug}/
├── causal_config.yaml # Method selection + parameters (tracked)
├── working/ # Intermediates (gitignored)
│ ├── causal_analysis_results.json
│ ├── assumption_report.md
│ └── sensitivity_report.md
└── outputs/ # Final reports (per-analysis run folder)
└── causal_report_{{DATE}}.md
1---2name: causal3description: Causal inference toolkit for when experiments are not possible: estimate treatment effects from observational data with assumption checks and mandatory caveats. Invoke as /causal. Trigger on "causal", "caused", "impact of", "effect of", "attribution", "counterfactual", "difference-in-differences", "DiD", "propensity matching", "pre-post". If randomization IS possible, route to /experiment design instead.4---56# Skill: /causal — OpenCausalInf Causal Inference Toolkit78## Purpose9Multi-mode skill for causal inference when experiments aren't possible. Helps users estimate treatment effects from observational data with explicit assumption checking, sensitivity analysis, and mandatory caveats. Uses coded helpers from `helpers/stats/experiment_stats/causal/`.1011## When to Use12Invoke as `/causal [mode]` or trigger on causal inference intents:13- "Did this feature actually cause the improvement?"14- "We can't run an experiment, but..."15- "Was this change responsible for the metric movement?"16- "Can we measure the impact retroactively?"1718## Modes1920### `/causal select`21**Purpose:** Walk the method selection decision tree and recommend a causal method.22**Agent:** `agents/causal/causal-method-selector.md`23**Flow:**241. Ask 4-6 diagnostic questions:25 - Can you randomize? → Route to `/experiment design`26 - Do you have a comparison group?27 - Do you have pre-treatment data?28 - Are there observable confounders you can measure?29 - How many time periods do you have?302. Recommend: Pre-Post, DiD, PSM, Regression Adjustment, or "not feasible"313. Output: recommended method + confidence level + rationale32**Checkpoint:** Method confirmation (Type C — user must confirm before analysis)3334### `/causal analyze`35**Purpose:** Run the selected causal method on data.36**Agent:** `agents/causal/causal-analyzer.md`37**Flow:**381. Read selected method from previous step or user input392. Dispatch to appropriate helper:40 ```python41 from helpers.stats.experiment_stats.causal import (42 pre_post_analysis, did_basic, propensity_match,43 regression_adjust,44 )45 # Method routing:46 # "pre_post" → pre_post_analysis(pre, post, covariates)47 # "did" → did_basic(df, outcome, treat, post)48 # "psm" → propensity_match(df, treat, covariates, outcome)49 # "regression" → regression_adjust(df, outcome, treatment, covariates)50 ```513. Generate charts (treatment effect, balance plots for PSM, event study for DiD)524. Output: `working/causal_analysis_results.json`5354### `/causal check`55**Purpose:** Run assumption checks for the selected method.56**Agent:** `agents/causal/causal-assumption-checker.md`57**Flow:**581. Identify which assumptions apply to the selected method:59 - **DiD:** Parallel trends, no anticipation, stable composition60 - **PSM:** Common support, balance (SMD < 0.1), positivity61 - **Pre-Post:** No concurrent events, trend stability62 - **Regression:** All confounders included, correct specification632. Run quantitative checks:64 ```python65 from helpers.stats.experiment_stats.causal import (66 check_parallel_trends, check_common_support,67 balance_table,68 )69 ```703. Output: per-assumption PASS / WARNING / FAIL verdicts71**Checkpoint:** Any FAIL (Type C) → present options: adjust method, add caveats, or abort7273### `/causal sensitivity`74**Purpose:** Test how robust the estimate is to unmeasured confounding.75**Agent:** `agents/causal/causal-sensitivity.md`76**Flow:**771. Run sensitivity analysis based on method:78 ```python79 from helpers.stats.experiment_stats.causal import rosenbaum_bounds, e_value80 # PSM: rosenbaum_bounds(treated_outcomes, control_outcomes)81 # All: e_value(risk_ratio, ci_lower)82 ```832. Translate to plain language: "An unmeasured confounder would need to be X times stronger than anything we measured to explain away this result."843. Output: sensitivity report8586### `/causal report`87**Purpose:** Generate a report with mandatory caveats.88**Agent:** `agents/causal/causal-report-generator.md`89**Flow:**901. Compile: estimate + CI + assumption verdicts + sensitivity results912. Place on confidence ladder (RCT > DiD+reg > PSM > DiD > regression > pre-post)923. Include mandatory caveat block (method-specific, non-negotiable)934. Output: `outputs/causal_report_{{DATE}}.md`9495### `/causal full`96**Purpose:** End-to-end: select → analyze → check → sensitivity → report.97**Flow:** Runs all modes in sequence. All Type C checkpoints fire.9899## Confidence Ladder100101Methods ranked by causal credibility (highest to lowest):102103| Level | Method | Confidence |104|-------|--------|------------|105| 1 | RCT (Randomized Experiment) | **HIGH** |106| 2 | DiD + Regression Adjustment | **MODERATE-HIGH** |107| 3 | PSM (Good Overlap + Balance) | **MODERATE** |108| 4 | DiD (Parallel Trends OK) | **MODERATE** |109| 5 | Regression Adjustment | **LOW-MODERATE** |110| 6 | Pre-Post (With Trend) | **LOW** |111| 7 | Pre-Post (Simple) | **VERY LOW** |112113## Mandatory Caveats (Non-Negotiable)114115Every causal report MUST include the method-specific caveat. These are architecturally required — the agent cannot produce a report without them.116117| Method | Mandatory Caveat |118|--------|-----------------|119| Pre-Post | "Assumes nothing else changed during this period. Any concurrent event could explain this result." |120| DiD | "Assumes the control group would have followed the same trend. Plausible but unprovable." |121| PSM | "Controls for observed confounders only. Unmeasured factors could bias this estimate." |122| Regression | "Assumes all relevant confounders are included and the model is correctly specified." |123124## Helper Function Reference125126| Function | Module | Use For |127|----------|--------|---------|128| `pre_post_analysis()` | `causal.pre_post` | Pre-post comparison |129| `did_basic()` | `causal.did` | 2x2 DiD estimator |130| `parallel_trends_test()` | `causal.did` | Test parallel trends assumption |131| `event_study()` | `causal.did` | Period-by-period effects |132| `propensity_match()` | `causal.matching` | PSM pipeline |133| `balance_table()` | `causal.balance` | SMD balance diagnostics |134| `love_plot()` | `causal.balance` | Before/after balance visual |135| `regression_adjust()` | `causal.regression` | OLS with covariates |136| `rosenbaum_bounds()` | `causal.sensitivity` | PSM sensitivity |137| `e_value()` | `causal.sensitivity` | Universal sensitivity measure |138| `check_parallel_trends()` | `causal.assumptions` | DiD assumption |139| `check_common_support()` | `causal.assumptions` | PSM assumption |140141## Cross-Product Handoffs142143- `/causal select` → "Can you randomize? YES" → suggest `/experiment design`144- `/experiment power` → NOT_VIABLE → suggest `/causal select`145- `/causal check` → All assumptions FAIL → suggest redesign or descriptive-only analysis146147## State Management148149```150analyses/{slug}/151├── causal_config.yaml # Method selection + parameters (tracked)152├── working/ # Intermediates (gitignored)153│ ├── causal_analysis_results.json154│ ├── assumption_report.md155│ └── sensitivity_report.md156└── outputs/ # Final reports (per-analysis run folder)157 └── causal_report_{{DATE}}.md158```