causal-analyzer

causal-analyzer is an agent for coding agents from ai-analyst-lab/ai-analyst-plus. It costs 0 tokens per session (1,194 once invoked), scanned A, original, MIT.

An analysis step that estimates the effect of a change using a selected causal method. It supports pre-post comparison, difference-in-differences, propensity-score matching, and regression adjustment, with statistical diagnostics.

In plain words
What is it for?
For analyzing a dataset with an outcome, treatment indicator, and optional covariates, then producing an estimate and method-specific diagnostics.
Why use it?
It provides a defined method for calculating an effect, its confidence interval, and related checks instead of writing one-off analysis code.

Agent

Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

agentmods
npx agentmods add agents/ai-analyst-lab/ai-analyst-plus/causal-analyzer
Clone the repo
git clone --depth 1 https://github.com/ai-analyst-lab/ai-analyst-plus

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for causal-analyzer

README.md
[![agentmods](https://agentmods.dev/badge/agents/ai-analyst-lab/ai-analyst-plus/causal-analyzer.svg)](https://agentmods.dev/agents/ai-analyst-lab/ai-analyst-plus/causal-analyzer)
Your own site
<a href="https://agentmods.dev/agents/ai-analyst-lab/ai-analyst-plus/causal-analyzer"><img src="https://agentmods.dev/badge/agents/ai-analyst-lab/ai-analyst-plus/causal-analyzer.svg" alt="Measured on agentmods" height="20"></a>
Per session 0 Only the description is in the session, so the agent can decide to use it. The body loads when it is invoked.
When invoked 1,194 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. Scan, not verified.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00000 $0.01194
Opus 5 $0.00000 $0.00597
Sonnet 5 $0.00000 $0.00239
Haiku 4.5 $0.00000 $0.00119

Measured 5d ago against content hash f8277760a4bb, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-05, from the pricing page.

Security

Grade A, and why

causal-analyzer scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 5d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

agents/causal-analyzer.md · 164 lines

How it starts

The opening of the file, as written. The whole thing — 164 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Agent: Causal Analyzer

Purpose

Execute the selected causal inference method using production-grade coded helpers. Does not improvise statistical code — calls functions from helpers/experiment_stats/causal/. Produces a point estimate, confidence interval, and method-specific diagnostics.

Inputs

  • {{METHOD}}: The causal method to run. One of: pre_post, did, psm, regression.
  • {{DATA}}: Path to the dataset.
  • {{OUTCOME_COL}}: Column name for the outcome variable.
  • {{TREATMENT_COL}}: Column name for treatment indicator (0/1).
  • {{COVARIATES}}: (optional) Comma-separated list of covariate columns.

Method Dispatch

Pre-Post Analysis (pre_post)

from helpers.experiment_stats.causal import pre_post_analysis

result = pre_post_analysis(
    pre=df[df["period"] == "pre"][outcome_col],
    post=df[df["period"] == "post"][outcome_col],
    covariates=df[covariate_cols] if covariates else None,
)

Required data structure: Must have a period indicator (pre/post) or separate pre and post datasets.

Difference-in-Differences (did)

from helpers.experiment_stats.causal import did_basic, parallel_trends_test, event_study

# Main estimate
did_result = did_basic(
    df, outcome_col=outcome_col, treat_col=treatment_col,
    post_col="post", covariates=covariate_cols,
)

# Assumption check (embedded)
pt_result = parallel_trends_test(
    df, outcome_col, treatment_col, time_col="time",
    intervention_time=intervention_time,
)

# Event study for visualization
es_result = event_study(
    df, outcome_col, treatment_col, time_col="time",
    intervention_time=intervention_time,
)

Read the full file on GitHub · 164 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 5d ago First seen · 164 lines · 0 tokens per session scan A f8277760a4bb

Subscribe to this mod's changes

causal-analyzer is an agent published in the GitHub repository ai-analyst-lab/ai-analyst-plus (19 stars, last pushed 1mo ago), licensed MIT. It costs nothing until one of its globs matches a file; then it loads 1,194 tokens. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.