agentsclimarketplace

Verification

Skill iwritec0de/app-dev/skills/verification

Full-stack Next.js development plugin for Claude Code

Install
npx -y skills add iwritec0de/app-dev --skill verification

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

One thing to look at

  • 3 stars3 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

This skill should be used before claiming any work is complete, before committing, before creating PRs, or before reporting task status. Enforces fresh verification evidence for all completion claims. Provides the verification gate methodology: run commands, read output, then report.

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

3.7 KB, as published. Nobody here has run it

Verification Skill

Evidence before claims, always. NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION.

Iron Law

NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE. If you have not run the verification command in the current session, you cannot claim it passes. Prior knowledge, assumptions, and memory of previous runs do not count. Only fresh output from the current session constitutes evidence.

The Five-Step Gate

Every completion claim must pass through this gate:

  1. Identify — Determine which command proves your claim. "Tests pass" requires running the test suite. "No lint errors" requires running the linter. "It builds" requires running the build.
  2. Execute — Run the command freshly. Not from memory. Not from a previous session. Right now, in the current session.
  3. Read — Read the FULL output. Do not skim. Do not assume. If the output is long, read all of it. Errors can hide at the end.
  4. Verify — Confirm the output actually supports your claim. A test suite that prints results but exits with a failure code does not pass. A build that emits warnings about missing dependencies is not clean.
  5. Assert — Only after steps 1-4 are complete, state your claim and include the evidence. Quote the relevant output.

JS/TS Verification Checklist

Before claiming work is complete in this project, run each applicable command and confirm clean output:

CheckCommandWhat it proves
Type checkingtsc --noEmitNo type errors across the project
Testsnpx vitest run or npm testAll tests pass
Lintnpx eslint .No lint errors or warnings
Formattingnpx prettier --check .All files match formatting rules
Production buildnext buildBuild succeeds, catches SSR/hydration issues

Run these in order. A type error caught by tsc is cheaper to fix than one discovered during next build. A lint error is cheaper to fix before tests run.

If a project uses a different test runner, linter, or build tool, substitute the appropriate commands. The principle is the same: run the real tool, read the real output.

Red Flags

These phrases are signals that the verification gate has NOT been passed:

  • "should" — "Tests should pass" means you did not run them.
  • "probably" — "This probably works" means you did not verify it.
  • "seems to work" — "It seems to work" means you observed something informal, not a verification command.
  • "I believe" — "I believe the build is clean" means you are guessing.
  • Premature "Done!" — Claiming completion without showing command output.
  • "All good!" — Without evidence, this is an opinion, not a verification.

If you catch yourself using these phrases, stop and run the actual command.

When to Verify

  • Before every commit — Run the full checklist. Do not commit code that fails any check.
  • Before marking a task done — The task is not done until verification proves it.
  • Before creating a PR — The PR description should reference verification results.
  • Before reporting status — "Feature complete" means verified, not "I think I finished writing code."
  • Before delegating "completed" work — If you hand off work as complete, you are vouching for it. Verify first.

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.