Skip to content
Skillv1.0.0

problem-solving

(ePost) Use when stuck, facing a complex bug, or need root cause analysis — 5 whys, bisection, inversion techniques

by majiayu000(0) 0 installs
Free
Sign in to install

Free account. Installing gives you the manifest plus copy-paste snippets.

See reviews

About

Imported from majiayu000/claude-skill-registry (skills/analysis/problem-solving-klara-copilot-epost-agent-kit/SKILL.md). Install upstream with npx skills add majiayu000/claude-skill-registry --skill problem-solving-klara-copilot-epost-agent-kit. Copyright stays with the author.

Problem Solving Skill

Purpose

Root cause analysis and complex problem resolution.

When Active

User reports bug, system is behaving unexpectedly, debugging feels stuck.

Expertise

Techniques

Root Cause Analysis (5 Whys)

Ask "why" 5 times to dig past symptoms to fundamental cause.

Inversion

Ask "what would make this fail?" then prevent those conditions.

Collision Zone Thinking

Find where multiple systems interact. Bugs live at boundaries.

State Machine Extraction

When a component behaves unexpectedly, extract its actual state machine from code. Compare actual vs expected transitions — the diff IS the bug. See plan/references/state-machine-guide.md for notation.

Simplification Cascades

Remove complexity until problem disappears. Add back until it returns.

When Stuck

  1. Change perspective (explain to rubber duck)
  2. Bisect the problem (binary search for root cause)
  3. Check assumptions (what are you taking for granted?)
  4. Sleep on it (context switch resets mental model)
  5. Zoom out (is this really the right problem?)

Patterns

Root Cause Analysis Format

Problem: [Observed behavior]
Why 1: [Immediate cause]
Why 2: [What caused that]
Why 3: [Layer deeper]
Why 4: [Systemic issue]
Why 5: [Fundamental cause]
Fix: [Address root, not symptom]

Bisection Strategy

  • Create minimal failing test
  • Remove half the code
  • Does it still fail? If yes, problem is in remaining half
  • Repeat until isolated

Best Practices

  • Fix root causes, not symptoms
  • Don't stop at first "why"
  • Test your hypothesis before implementing
  • Consider environmental factors
  • Document the problem-solving path
  • Share what you learned with team

Related Skills

  • debug — Systematic debugging methodology
  • error-recovery — Error handling and recovery patterns
  • knowledge-capture — Persist root cause findings
  • sequential-thinking — Structured step-by-step reasoning

Use it

Copy one of these into your project. Installing also returns the manifest and these snippets.

yaml
targets:
  - https://api.opensmartroute.ai/api/v1/registry/majiayu000-claude-skill-registry-problem-solving-klara-c-245905/manifest   # or paste the manifest below

Manifest

An Open Capability Manifest: the router reads it to know what this does, what it costs and when to pick it.

majiayu000-claude-skill-registry-problem-solving-klara-c-245905.ocm.jsonjson
{
  "ocm": "1",
  "id": "majiayu000-claude-skill-registry-problem-solving-klara-c-245905",
  "kind": "skill",
  "name": "problem-solving",
  "description": "(ePost) Use when stuck, facing a complex bug, or need root cause analysis — 5 whys, bisection, inversion techniques",
  "publisher": "majiayu000",
  "version": "1.0.0",
  "capabilities": {
    "domains": [
      "coding"
    ],
    "tags": [
      "skill-md",
      "problem-solving",
      "root-cause",
      "analysis",
      "debugging",
      "5-whys",
      "bisection",
      "crash",
      "error",
      "stuck"
    ],
    "languages": [
      "en"
    ]
  },
  "quality_prior": 0.6,
  "examples": [
    "(ePost) Use when stuck, facing a complex bug, or need root cause analysis — 5 whys, bisection, inversion techniques"
  ],
  "primary": false,
  "metadata": {
    "source": {
      "provider": "github",
      "repository": "https://github.com/majiayu000/claude-skill-registry",
      "path": "skills/analysis/problem-solving-klara-copilot-epost-agent-kit/SKILL.md",
      "ref": "a16e8e7bdddc9a7406a56f51e520cef7a8646208",
      "url": "https://github.com/majiayu000/claude-skill-registry/blob/a16e8e7bdddc9a7406a56f51e520cef7a8646208/skills/analysis/problem-solving-klara-copilot-epost-agent-kit/SKILL.md",
      "key": "majiayu000/claude-skill-registry/skills/analysis/problem-solving-klara-copilot-epost-agent-kit/SKILL.md"
    }
  },
  "instructions": "# Problem Solving Skill\n\n## Purpose\nRoot cause analysis and complex problem resolution.\n\n## When Active\nUser reports bug, system is behaving unexpectedly, debugging feels stuck.\n\n## Expertise\n\n### Techniques\n\n#### Root Cause Analysis (5 Whys)\nAsk \"why\" 5 times to dig past symptoms to fundamental cause.\n\n#### Inversion\nAsk \"what would make this fail?\" then prevent those conditions.\n\n#### Collision Zone Thinking\nFind where multiple systems interact. Bugs live at boundaries.\n\n#### State Machine Extraction\nWhen a component behaves unexpectedly, extract its actual state machine from code. Compare a",
  "cost": {
    "context_tokens": 486
  }
}

Fetch it by URL: GET /api/v1/registry/majiayu000-claude-skill-registry-problem-solving-klara-c-245905/manifest?version=1.0.0

Reviews

Star ratings from people who tried it. One review per account; edit yours any time.

No reviews yet. Install it, try it, and be the first to rate it.