Agent skill

reasoning-abductive

Generate and evaluate explanatory hypotheses from incomplete observations. Use when diagnosing anomalies, explaining unexpected outcomes, or inferring causes from effects. Produces ranked hypotheses with evidence and confidence scores.

majiayu000github.com/majiayu000GitHub ↗
claude-codeMIT
Install
npx skills add majiayu000/claude-skill-registry --skill reasoning-abductive --agent claude-code

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

Facts
Files in the skill folder: 2
SKILL.md size: 9 KB
Bundled scripts: none
Path: skills/analysis/reasoning-abductive/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 534
Language: HTML

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

From the SKILL.md

# Abductive Reasoning Generate best explanations from observations. The logic of diagnosis and inference to cause. ## Type Signature ``` Abductive : Observation → Hypotheses[] → Evidence → BestExplanation Where: Observation : RawData × Surprise → AnomalyDescription Hypotheses : AnomalyDescription → [PossibleCause] Evidence : [PossibleCause] × AvailableData → [ScoredHypothesis] BestExplanation : [ScoredHypothesis] → (Cause × Confidence × NextSteps) ``` ## When to Use **Use abductive when:** - Anomaly or surprise present (metric deviation, unexpected behavior) - Need to explain an observation (why did X happen?) - Incomplete data, must infer cause - Diagnostic context (errors, issues, failures) - Multiple possible explanations exist **Don't use when:** - Cause is already known (use causal execution instead) - Need to compare decision alternatives - Resolving stakeholder disagreements ## Four-Stage Process ### Stage 1: Observation **Purpose:** Transform raw data into structured anomaly description. **Input:** ```yaml observation: raw_data: "Conversion dropped from 12% to 7% in Q4" context: timeframe: "Q4 2025" baseline: "12% historical average" current: "7% observed" surprise_level: 0

What's inside
Steps it walks through
  1. Type Signature
  2. When to Use
  3. Four-Stage Process
  4. Stage 1: Observation
  5. Stage 2: Hypotheses Generation
  6. Stage 3: Evidence Evaluation
  7. Stage 4: Best Explanation
  8. Quality Gates
  9. Common Failure Modes
  10. Output Contract
  11. Example Execution
Ships with 1 file
  • metadata.json
More from claude-skill-registry
All skills →
About this skill
What does the reasoning-abductive skill do?

Generate and evaluate explanatory hypotheses from incomplete observations. Use when diagnosing anomalies, explaining unexpected outcomes, or inferring causes from effects. Produces ranked hypotheses with evidence and confidence scores.

How do I install it?

Run `npx skills add majiayu000/claude-skill-registry --skill reasoning-abductive --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 majiayu000/claude-skill-registry, a repository with 534 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