Skillquality 0.45

verify-when-complete

Run format, lint, build, and test verification before claiming work is complete. Detects the project toolchain (Taskfile, Makefile, or raw Go) and runs the appropriate commands. Use before committing, pushing, creating PRs, claiming a fix works, or any completion assertion.

Price
free
Protocol
skill
Verified
no

What it does

Verify When Complete

No completion claims without fresh verification evidence.

This skill is the operational arm of ~/.claude/rules/probe-not-assume.md: claims of completion require fresh, probed evidence, not implementer self-report.

Core Principle

Evidence before claims, always. If you haven't run the verification command in this message, you cannot claim it passes.

Gate Rule

Before claiming any status or expressing satisfaction:

  1. Identify: What command proves this claim?
  2. Run: Execute the full command (fresh, complete)
  3. Read: Full output, check exit code, count failures
  4. Verify: Does output confirm the claim?
    • If NO: state actual status with evidence
    • If YES: state claim with evidence
  5. Only then: make the claim

Red Flags: Stop and Verify

  • Using "should", "probably", "seems to"
  • Expressing satisfaction before verification ("Great!", "Done!")
  • About to commit/push/PR without verification
  • Relying on a previous run, not a fresh one
  • Trusting subagent success reports without independent verification

Detected Toolchain

!if [ -f Taskfile.yaml ]; then echo "taskfile"; elif [ -f Makefile ]; then echo "makefile"; else echo "raw"; fi

Use the detected toolchain above to select commands from the tables below.

Verification Steps

Run each step in order. If any step fails, stop and report the error.

Format

ToolchainCommand
Taskfiletask fmt (if exists)
Makefilemake fmt (if exists)
Raw Gogo fmt ./...

Lint

ToolchainCommand
Taskfiletask lint (if exists)
Makefilemake lint (if exists)
Raw Gogo vet ./...

Build

ToolchainCommand
Taskfiletask build (if exists)
Makefilemake build (if exists)
Raw Gogo build ./...

Test

ToolchainCommand
Taskfiletask test (if exists)
Makefilemake test (if exists)
Raw Gogo test -race -count 1 -v ./...

If a specific task/target doesn't exist, fall back to the raw Go equivalent. Run tests uncached (-count 1), with race detection, no -short flag.

When to Apply

  • Before committing or pushing
  • Before creating or updating a pull request
  • Before claiming a bug is fixed
  • Before claiming a rebase or conflict resolution succeeded
  • Before moving to the next task after making changes
  • Before any statement asserting correctness or completion

Cross-references

  • The narrowest verification command this skill produces (e.g. task test -- -run '^TestX$' -count=1) is the natural reproducer for the bisect skill. When a test that this skill once green-lit is now red, bisect with that exact command.

Capabilities

skillsource-paultyngskill-verify-when-completetopic-agent-skillstopic-ai-toolstopic-claude-codetopic-cursortopic-dotfiles

Install

Quality

0.45/ 1.00

deterministic score 0.45 from registry signals: · indexed on github topic:agent-skills · 8 github stars · SKILL.md body (2,783 chars)

Provenance

Indexed fromgithub
Enriched2026-05-18 19:09:03Z · deterministic:skill-github:v1 · v1
First seen2026-05-18
Last seen2026-05-18

Agent access