Skip to content
Development
Skill

/yolo-verify

Use to check a feature's work against its success_criteria and record the result. Produces verification.md and, on pass, the YOLO-Verified trailer. Triggers on "verify this", "does it meet the criteria", or as the verify step of yolo-feature.

From plugin
yolo
911 skills1 command
Install
$ npx -y skills add CoriChui/yolo --skill yolo-verify --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/yolo-verify

Context preview

The summary Claude sees to decide when to auto-load this skill.

Use to check a feature's work against its success_criteria and record the result. Produces verification.md and, on pass, the YOLO-Verified trailer. Triggers on "verify this", "does it meet the criteria", or as the verify step of yolo-feature.

SKILL.md

yolo-verify.SKILL.md
name: yolo-verify
description: Use to check a feature's work against its success_criteria and record the result. Produces verification.md and, on pass, the YOLO-Verified trailer. Triggers on "verify this", "does it meet the criteria", or as the verify step of yolo-feature.

yolo-verify

Decide, with evidence, whether the work satisfies the brief's `success_criteria`.

Inputs

  • `workspace/features/<slug>/brief.md` (`success_criteria`), the diff `git diff <base_branch>...feature/<slug>` (three-dot — only what the branch introduced; see `.claude/yolo/conventions.md`), and `plan.md` `lint_commands`/`test_commands`.

Procedure

1. Run the recorded `lint_commands` and `test_commands`. Capture pass/fail and key output. 2. For EACH criterion in `success_criteria`, gather concrete evidence (a passing test, an observed behavior, a code reference). Mark it met/unmet. 3. Write `workspace/features/<slug>/verification.md`: one section per criterion with its evidence, plus the lint/test results.

Outcome

  • **All criteria met** → commit the verification file with the trailer:

`git add workspace/features/<slug>/verification.md && git commit -m "yolo: verify <slug>" --trailer "YOLO-Verified: true"`

  • **Any criterion unmet** → write the file recording what failed, do NOT write the trailer, and report the gap so execution can resume. A feature is never "done" without `YOLO-Verified: true` (`.claude/yolo/conventions.md`). The execute→verify loop is **bounded** (`.claude/yolo/conventions.md` *The two gates*); after repeated failure the caller should stop and escalate to the human rather than re-running, since that signals the plan or criteria need rethinking.

Constraints

  • The only file you write is `verification.md`. You do not edit code.
  • Verification is semantic (criteria), distinct from CI (mechanical) — yolo-finish handles CI.
Read more
Ships withyolo

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.

Get the whole plugin
Stats
9
Stars
0
Forks
Maintained
Maintenance
MIT
License
2mo ago
Last commit
7mo ago
Created

Repo: CoriChui/yolo

Other skills on yolo.

yolo-debug
Skill

yolo-debug

Use when a reported problem, failure, or bug needs a systematic root-cause investigation — reproduce → isolate → fix → verify — recorded as one durable…

@corichui@corichuiView Skill
yolo-feature
Skill

yolo-feature

Use when the user wants to build, add, or implement a feature. Captures intent, drafts a brief, confirms, then composes research → plan → execute → verify →…

@corichui@corichuiView Skill
yolo-finish
Skill

yolo-finish

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;…

@corichui@corichuiView Skill
yolo-init
Skill

yolo-init

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/…

@corichui@corichuiView Skill
yolo-intake
Skill

yolo-intake

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…

@corichui@corichuiView Skill