yolo-decide
Use when facing a design or architecture decision that benefits from multiple perspectives before committing. Produces a decision record under…
Use when a reported problem, failure, or bug needs a systematic root-cause investigation — reproduce → isolate → fix → verify — recorded as one durable artifact. Triggers on "fix the 500 on login", "X is broken", "why is Y failing?", "debug this", "track down this bug".
$ npx -y skills add CoriChui/yolo --skill yolo-debug --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/yolo-debugContext preview
The summary Claude sees to decide when to auto-load this skill.
Use when a reported problem, failure, or bug needs a systematic root-cause investigation — reproduce → isolate → fix → verify — recorded as one durable artifact. Triggers on "fix the 500 on login", "X is broken", "why is Y failing?", "debug this", "track down this bug".
name: yolo-debug description: Use when a reported problem, failure, or bug needs a systematic root-cause investigation — reproduce → isolate → fix → verify — recorded as one durable artifact. Triggers on "fix the 500 on login", "X is broken", "why is Y failing?", "debug this", "track down this bug".
Find the *true cause* of a failure and fix it with evidence — not by guessing. A stateless investigation act: it produces ONE debug record plus the fix, and stores no session state.
A bug report or failing behaviour. Derive a kebab-case `slug` for the record filename — there is **no brief** (a debug is not a feature). Run on the **current branch** (see `.claude/yolo/conventions.md` — a debug record never touches status derivation). If the work turns out to add new capability rather than restore intended behaviour, **hand off to `yolo-feature`**.
Work the arc in order; each step's output feeds the record. 1. **Reproduce** — get a deterministic repro (a failing test, a command, exact steps). No repro → no confirmed bug yet; say so rather than guessing. 2. **Hypothesize** — list candidate causes; rank by likelihood and cost-to-check. 3. **Isolate** — trace to the true cause with a concrete **evidence chain** (`file:line` → observed value → why it's wrong). Bisect or instrument as needed. 4. **Fix** — make the **minimal** change that addresses the root cause, not the symptom. Note the over-scope traps you avoided. 5. **Verify** — the failing reproducer now passes, the symptom is gone, and the wider suite stays green.
**The Iron Law:** no root-cause claim without a `file:line` evidence chain; no fix without a failing reproducer that the fix flips to green; never patch the symptom while the cause stands. Failing-test-first is the default — if a bug is genuinely not unit-testable (config, perf, flake, environment), record *why* in the artifact and substitute the strongest available evidence (a before/after command, a metric, a log excerpt).
Write exactly ONE artifact — `workspace/debug/<YYYY-MM-DD>-<slug>.md` (`mkdir -p` its dir) — with: symptom + reproducer, the evidence chain (`file:line`), a one-sentence root cause + confidence, the fix (files, the minimal change, over-scope avoided), and verification evidence. Commit the record `yolo: debug <slug>`; the fix lands as ordinary descriptive commit(s) on the current branch.
not restate trailer strings. A debug record carries no trailer, no brief, no tracked state.
commit are the entire trail.
Reasoning-first development for Claude Code. Git is the source of truth; status is derived, never stored. YOLO turns "I want X" into a planned, executed, verified, and landed change, driven by conversation and git rather than tracked status files.
Use when facing a design or architecture decision that benefits from multiple perspectives before committing. Produces a decision record under…
Use when the user wants to build, add, or implement a feature. Captures intent, drafts a brief, confirms, then composes research → plan → execute → verify →…
Use when a feature is implemented and verified, to land it. Default path is PR + CI check, with the ship gate confirming before the irreversible merge;…
Use when setting up YOLO in a project for the first time, or repairing the setup. Scaffolds workspace/config.yaml and the features/, decisions/, and debug/…
Use when a feature should draw on the project's reference material for context. yolo-intake does NOT fetch, import, or copy anything — it points YOLO at a…