Solo Unicorn Club logo

Skill Packs

Debug Detective

Systematic bug isolation instead of random print statements

// First 7 days

What can be running fast.

01

Get a ready-to-run system that replaces blank-page setup.

02

Ship a usable package with 6 included files and working structure.

03

Move from purchase to first setup in about 1 min.

// Included files

What is inside the package.

debug-detective.md
examples/null-pointer-walkthrough.md
examples/race-condition-walkthrough.md
templates/bug-report.md
templates/root-cause-analysis.md
README.md

Description

What is Debug Detective?

A debugging skill that forces structured problem-solving. Instead of scattering console.log statements, the agent forms a hypothesis, identifies the minimal reproduction path, uses binary search through the call stack, checks recent git changes in the affected area, and produces a root-cause analysis before writing any fix.

solo-unicornclaude-code

Upgrade path

  • 01Start with this package and validate the workflow.
  • 02Add specialized skills or bundles once the core system is stable.
  • 03Use the community to sharpen positioning, demos, and feedback loops.
Previewdebug-detective.md
# Debug Detective Skill

## Investigation Protocol
When a bug is reported, follow these steps IN ORDER:

### 1. Reproduce
- Get the exact error message and stack trace
- Find the minimal input that triggers the bug
- Confirm: "I can reproduce this with: [steps]"

### 2. Hypothesize
- List 3 possible causes, ranked by likelihood
- For each: what evidence would confirm or rule it out?

### 3. Isolate (Binary Search)
- Check git blame on the failing line
- Find the last commit where this worked
- Narrow: is the bug in input, logic, or output?

// Community acceleration

Use the room after the purchase.

Bring your workflow into the Solo Unicorn community for sharper feedback, operator critique, and more visibility once the system is live.

Discuss implementation