Loop verify
Loopkit for Claude Code - guardrails, hooks, and two loop modes that won't let a task "finish" until it's actually done.
npx -y skills add ksed8/cc-loopkit --skill loop-verifyAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- 29 days oldThe repository was created 29 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Outer-loop verification step for run.sh — checks the repo against PROMPT.md and .claude/IMPLEMENTATION_PLAN.md, runs mechanical checks, invokes the verifier subagent, and records the verdict. Invoked externally as `/loop-verify` by run.sh, once per outer-loop iteration. Not for ad hoc use — during interactive work, invoke the `verifier` subagent directly instead.
SKILL.md
3.9 KB, as published. Nobody here has run it
/loop-verify
You are the verify step of the outer loop (run.sh). You are a reporter, not
a fixer: you never edit application code — only .claude/IMPLEMENTATION_PLAN.md
and .claude/MEMORY.md. This is enforced by a hook (CLAUDE_VERIFY_MODE=1
restricts Edit/Write to those two files), not just this instruction, so don't
fight it.
You are running in a fresh session with no memory of prior iterations. SessionStart
should have already injected PROMPT.md, .claude/IMPLEMENTATION_PLAN.md, and the
tail of .claude/MEMORY.md into your context — but SessionStart caps each at 4000
bytes, so if .claude/IMPLEMENTATION_PLAN.md looks truncated, re-Read it in full.
Procedure
- If
PROMPT.md(project root) or.claude/IMPLEMENTATION_PLAN.mdis missing: append a note to.claude/IMPLEMENTATION_PLAN.md's Verify log saying so (create the file with just that note if it doesn't exist), leaveSTATUS:untouched, and stop — there is nothing to verify yet. - Run the mechanical checks:
bash .claude/scripts/run-checks.sh. Exit 0 means typecheck/tests are green — this is the same check the inner Stop gate uses. - Invoke the
verifiersubagent (@agent-verifier) to judge the current diff and commits againstPROMPT.md. Let it gather its own diff (git diff,git diff --staged, recent commits) — don't pre-filter it for them. Use its{passes, failures}verdict. - Combine: overall PASS only if the mechanical checks were green AND the
verifier returned
passes: trueAND every step in.claude/IMPLEMENTATION_PLAN.md's## Stepsis checked off. Anything else is FAIL.
Recording the verdict
Edit .claude/IMPLEMENTATION_PLAN.md only:
- Insert a new entry at the top of
## Verify log(newest first — do not touch or remove prior entries):## <date> — verdict: PASS|FAIL Mechanical: <green | which check(s) failed> Semantic: <verifier passes:true | its failures, one per line> - If PASS: change the
STATUS:line to exactlySTATUS: done— this exact string is whatrun.shgreps to end the loop. Get it right. - If FAIL: leave
STATUS:asin_progress, UNLESS the same failure reason has now appeared 3+ times across consecutive Verify log entries — that means the plan itself is wrong, not just unfinished. In that case setSTATUS: blockedand say why in the log entry, so a human looks at it instead of the loop burning iterations on a plan that can't succeed.
Then append (do not prepend) a short dated entry to .claude/MEMORY.md — create
it if missing. .claude/MEMORY.md is read chronologically tail-first by the next
session, so append at the end:
## <date> — loop-verify (iteration N)
Verdict: PASS|FAIL. <one line on what's still missing, or "shipped">
Keep both files terse. Their entire purpose is giving the next fresh-context iteration exactly what it needs and nothing more — a verbose log defeats that.
What NOT to do
- Do not edit, format, or "fix" application code, even something trivially wrong you notice in passing. Not your job this step; note it in the Verify log instead.
- Do not second-guess or rewrite
## Steps— that's the implementer step's plan, not yours to redesign here. - Do not set
STATUS: doneunless both the mechanical checks and the verifier subagent actually passed. A falsedonesilently ends the loop on unfinished work.