Token导航 LogoToken导航TokenDH.com
研究检索只读github未标认证来源可访问clear审计通过

causal-inference-root-cause因果推理根本原因

Agent Skill

causal-inference-root-cause 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

1,435

周安装

61

GitHub Stars

85

下载量

503
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

3

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:causal-inference-root-cause(因果推理根本原因)
来源仓库:https://github.com/lyndonkl/claude
仓库路径:skills/causal-inference-root-cause
安装命令:
npx skills add https://github.com/lyndonkl/claude --skill causal-inference-root-cause
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。不同来源提供的安装方式可能略有差异;本站展示可直接复制的安装命令,安装前请核对来源页面。

skills.shnpx skills
npx skills add https://github.com/lyndonkl/claude --skill causal-inference-root-cause

简介

该技能专注于因果推理与根本原因分析,帮助定位问题背后的核心驱动因素。

  • 适用于需要系统性拆解事件成因、验证假设或构建因果模型的研究与诊断场景。
  • 通过定义效应、生成假设、建模与检验等步骤,输出结构化的分析路径与结论。
  • 安装前需确认是否具备访问 GitHub 仓库的权限,并注意其可能涉及的数据处理与逻辑推演操作。
  • causal-inference-root-cause 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Causal Inference & Root Cause Analysis

Table of Contents

- 1. Define the Effect - 2. Generate Hypotheses - 3. Build Causal Model - 4. Test Causality - 5. Document & Validate

Key concepts: root cause (fundamental issue), proximate cause (immediate trigger), confounding variable (third factor creating spurious correlation), counterfactual ("what would have happened without X?"), and causal mechanism (pathway through which X affects Y).

Quick Example:

# Effect: Website conversion rate dropped 30%

## Competing Hypotheses:
1. New checkout UI is confusing (proximate)
2. Payment processor latency increased (proximate)
3. We changed to a cheaper payment processor that's slower (root cause)

## Test:
- Rollback UI (no change) → UI not cause
- Check payment logs (confirm latency) → latency is cause
- Trace to processor change → processor change is root cause

## Counterfactual:
"If we hadn't switched processors, would conversion have dropped?"
→ No, conversion was fine with old processor

## Conclusion:
Root cause = processor switch
Mechanism = slow checkout → user abandonment

Workflow

Copy this checklist and track your progress:

Root Cause Analysis Progress:
- [ ] Step 1: Define the effect
- [ ] Step 2: Generate hypotheses
- [ ] Step 3: Build causal model
- [ ] Step 4: Test causality
- [ ] Step 5: Document and validate

Step 1: Define the effect

Describe effect/outcome (what happened, be specific), quantify if possible (magnitude, frequency), establish timeline (when it started, is it ongoing?), determine baseline (what's normal, what changed?), and identify stakeholders (who's impacted, who needs answers?). Key questions: What exactly are we explaining? One-time event or recurring pattern? How do we measure objectively?

Step 2: Generate hypotheses

List proximate causes (immediate triggers/symptoms), identify potential root causes (underlying factors), consider confounders (third factors creating spurious associations), and challenge assumptions (what if initial theory wrong?). Techniques: 5 Whys (ask "why" repeatedly), Fishbone diagram (categorize causes), Timeline analysis (what changed before effect?), Differential diagnosis (what else explains symptoms?). For simple investigations → Use resources/template.md. For complex problems → Study resources/methodology.md for advanced techniques.

Step 3: Build causal model

Draw causal chains (A → B → C → Effect), identify necessary vs sufficient causes, map confounding relationships (what influences both cause and effect?), note temporal sequence (cause precedes effect - necessary for causation), and specify mechanisms (HOW X causes Y). Model elements: Direct cause (X → Y), Indirect (X → Z → Y), Confounding (Z → X and Z → Y), Mediating variable (X → M → Y), Moderating variable (X → Y depends on M).

Step 4: Test causality

Check temporal sequence (cause before effect?), assess strength of association (strong correlation?), look for dose-response (more cause → more effect?), test counterfactual (what if cause absent/removed?), search for mechanism (explain HOW), check consistency (holds across contexts?), and rule out confounders. Evidence hierarchy: RCT (gold standard) > natural experiment > longitudinal > case-control > cross-sectional > expert opinion. Use Bradford Hill Criteria (9 factors: strength, consistency, specificity, temporality, dose-response, plausibility, coherence, experiment, analogy).

Step 5: Document and validate

Create causal-inference-root-cause.md with: effect description/quantification, competing hypotheses, causal model (chains, confounders, mechanisms), evidence assessment, root cause(s) with confidence level, recommended tests/interventions, and limitations/alternatives. Validate using resources/evaluators/rubric_causal_inference_root_cause.json: verify distinguished proximate from root cause, controlled confounders, explained mechanism, assessed evidence systematically, noted uncertainty, recommended interventions, acknowledged alternatives. Minimum standard: Score ≥ 3.5.

Common Patterns

For incident investigation (engineering):

  • Effect: System outage, performance degradation
  • Hypotheses: Recent deploy, traffic spike, dependency failure, resource exhaustion
  • Model: Timeline + dependency graph + recent changes
  • Test: Logs, metrics, rollback experiments
  • Output: Postmortem with root cause and prevention plan

For metric changes (product/business):

  • Effect: Conversion drop, revenue change, user engagement shift
  • Hypotheses: Product changes, seasonality, market shifts, measurement issues
  • Model: User journey + external factors + recent experiments
  • Test: Cohort analysis, A/B test data, segmentation
  • Output: Causal explanation with recommended actions

For policy evaluation (research/public policy):

  • Effect: Health outcome, economic indicator, social metric
  • Hypotheses: Policy intervention, confounding factors, secular trends
  • Model: DAG with confounders + mechanisms
  • Test: Difference-in-differences, regression discontinuity, propensity matching
  • Output: Causal effect estimate with confidence intervals

For debugging (software):

  • Effect: Bug, unexpected behavior, test failure
  • Hypotheses: Recent changes, edge cases, race conditions, dependency issues
  • Model: Code paths + data flows + timing
  • Test: Reproduce, isolate, binary search, git bisect
  • Output: Bug report with root cause and fix

Guardrails

Do:

  • Distinguish correlation from causation explicitly
  • Generate multiple competing hypotheses (not just confirm first theory)
  • Map out confounding variables and control for them
  • Specify causal mechanisms (HOW X causes Y)
  • Test counterfactuals ("what if X hadn't happened?")
  • State confidence levels and uncertainty
  • Acknowledge alternative explanations
  • Recommend testable interventions based on root cause

Don't:

  • Confuse proximate cause with root cause
  • Cherry-pick evidence that confirms initial hypothesis
  • Assume correlation implies causation
  • Ignore confounding variables
  • Skip mechanism explanation (just stating correlation)
  • Overstate confidence without strong evidence
  • Stop at first plausible explanation without testing alternatives
  • Propose interventions without identifying root cause

Common Pitfalls:

  • Post hoc ergo propter hoc: "After this, therefore because of this" (temporal sequence ≠ causation)
  • Spurious correlation: Two things correlate due to third factor or coincidence
  • Confounding: Third variable causes both X and Y
  • Reverse causation: Y causes X, not X causes Y
  • Selection bias: Sample is not representative
  • Regression to mean: Extreme values naturally move toward average

Quick Reference

  • Template: resources/template.md - Structured framework for root cause analysis
  • Methodology: resources/methodology.md - Advanced techniques (DAGs, confounding control, Bradford Hill criteria)
  • Quality rubric: resources/evaluators/rubric_causal_inference_root_cause.json
  • Output file: causal-inference-root-cause.md
  • Key distinction: Correlation (X and Y move together) vs. Causation (X → Y mechanism)
  • Gold standard test: Randomized controlled trial (eliminates confounding)
  • Essential criteria: Temporal sequence (cause before effect), mechanism (how it works), counterfactual (what if cause absent)

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Claude Code

28.42%
按下载量换算143

Gemini CLI

21.89%
按下载量换算110

Antigravity

16.13%
按下载量换算81

windsurf

12.8%
按下载量换算64

OpenCode

8.35%
按下载量换算42

github-copilot

3.6%
按下载量换算18

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。

来源信息

继续浏览同类 Skills