yolo-debug
Use when a reported problem, failure, or bug needs a systematic root-cause investigation — reproduce → isolate → fix → verify — recorded as one durable…
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; fast-local is the escape hatch. Includes the risk classifier whose hard triggers always stop for a human. Triggers on "ship
$ npx -y skills add CoriChui/yolo --skill yolo-finish --agent claude-codeHow it fires
How this skill gets triggered: by you, by Claude, or both.
/yolo-finishContext preview
The summary Claude sees to decide when to auto-load this skill.
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; fast-local is the escape hatch. Includes the risk classifier whose hard triggers always stop for a human. Triggers on "ship
name: yolo-finish description: 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; fast-local is the escape hatch. Includes the risk classifier whose hard triggers always stop for a human. Triggers on "ship it", "land this", "open a PR", or as the finish step of yolo-feature.
Land verified work. Match the rigor to the risk.
The branch carries `YOLO-Verified: true` (`.claude/yolo/conventions.md`). If not, run yolo-verify first.
Run finish reasoning (risk classification, summary synthesis) at the `agents.finish` tier from `workspace/config.yaml` (inherit if unset).
commit — always `--no-ff` so there is a commit to carry the done-trailer (never a fast-forward). Normal single-checkout case: `git switch <base_branch> && git merge --no-ff feature/<slug> -m "yolo: merge feature/<slug>" -m "YOLO-Feature: <slug>"`. If `base_branch` is checked out in another worktree, run that same merge *from that worktree* (git refuses to update a ref checked out elsewhere — don't fight it). The condensed summary goes in the merge-commit message. No forge.
(`gh pr create` / `glab mr create`). The PR description IS the summary — generated from the brief (what) + plan (how) + diff (the work) + verification (evidence) — with the `YOLO-Feature: <slug>` trailer kept as the body's final standalone paragraph (see *Land*).
In BOTH paths the landing MUST produce the durable done-markers (see *Land*).
"Has CI" means a **required check actually reports on the PR** (`gh pr checks <pr>` returns checks / GitLab has a pipeline for the MR) — NOT merely the presence of a workflow file, which may produce no required check.
the yolo-verify result as the gate.
to the human (do not wait forever on a check that will never arrive).
When polling a pending check, bound the wait (cap attempts / total time, e.g. ~20 min); on timeout, stop and escalate to the human rather than hanging.
The hard triggers below are **path-independent**: they fire on a fast-local merge exactly as on a PR — "just ship it locally" never skips them. Only the CI handling above is PR-specific. Compute against the **three-dot** diff `git diff <base_branch>...feature/<slug>` (what the branch introduced since the merge-base — two-dot `..` would fold in unrelated changes that landed on base and falsely inflate size and sensitive-path hits) and `workspace/config.yaml` `risk.*`.
Hard triggers (always stop for the human, even when the ship gate was pre-consented, on either path):
Soft triggers (call them out at the ship gate; escalate when crossed):
Landing on `<base_branch>` (local merge OR PR merge) is the irreversible boundary — the **ship gate** (`.claude/yolo/conventions.md` *The two gates*). By default it asks a human before merging. Only two things pre-consent it: a per-feature prose "just ship it / don't ask" from the user, or `finish.auto_merge_on_green: true` (headless/unattended runs only). A hard trigger overrides any pre-consent, on both the local and PR paths.
Decision (the CI clause applies on the PR path; everything else applies to both paths):
Avoid the check-then-merge race: capture the reviewed head SHA at the ship gate and merge **only that SHA** — `gh pr merge --match-head-commit <SHA>` (GitHub refuses if the head moved; the flag is `--match-head-commit`, there is no `--sha`) — or re-confirm CI-green + unchanged-head immediately before merging.
The landing makes the feature **done**, and that fact must survive branch deletion and squash merges (per `.claude/yolo/conventions.md`). Produce BOTH markers:
merge commit's message is formed: `git tag -a "yolo/done/<slug>" -m "yolo: done <slug>"` (push it on the PR path: `git push origin "yolo/done/<slug>"`).
`--trailer` flag, so put it in a trailing message paragraph: `git merge --no-ff feature/<slug> -m "yolo: merge feature/<slug>" -m "YOLO-Feature: <slug>"`. For a local squash: `git commit -m "yolo: merge feature/<slug>" --trailer "YOLO-Feature: <slug>"` (`git commit` *does* support `--trailer`). For a **forge** merge/squash (`gh pr merge`, `glab mr merge`) the commit message is composed server-side from the PR title/body — so put `YOLO-Feature: <slug>` as the **final paragraph of the PR body, alone on its own line with nothing after it**. Git
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 a reported problem, failure, or bug needs a systematic root-cause investigation — reproduce → isolate → fix → verify — recorded as one durable…
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 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…