agentsclimarketplace

Verify

Skill tercel/code-forge/skills/verify

Complete development workflow — from TDD-driven implementation plans to execution, debugging, code review, git worktree management, branch lifecycle, and parallel agent dispatch.

Install
npx -y skills add tercel/code-forge --skill verify

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

2 things to look at

  • no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
  • 5 stars5 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

Use before claiming work is done, fixed, or passing — requires running verification commands and confirming output before any success claim. Prevents false completion claims, unverified assertions, and "should work" statements.

SKILL.md

3.5 KB, 811 tokens by cl100k_base, as published. Nobody here has run it

Code Forge — Verify

⚡ Execution Entry Point

@../shared/execution-entrypoint.md

For this skill: start at the first executable step. If you catch yourself about to say "falling back to manual verification", STOP and go to the indicated step.


Evidence-based completion verification. Run before claiming any work is done.

When to Use

  • About to say "tests pass", "build succeeds", "bug is fixed", or "feature is complete"
  • Before committing, creating a PR, or marking a task as done
  • After any code change that should be verified
  • When reviewing sub-agent output before trusting it

Note: code-forge:impl runs verification automatically. This skill is for general use.

Iron Law

NO COMPLETION CLAIMS WITHOUT FRESH VERIFICATION EVIDENCE.

No exceptions. Not "it should work." Not "I just ran it." Not "the agent said it passed."

The Gate

Every completion claim must pass through this gate — because false claims waste reviewer time and erode trust in automated workflows. A single unverified "tests pass" can mask a regression that reaches production.

IDENTIFY → RUN → READ → VERIFY → CLAIM
  1. IDENTIFY the verification command (test, build, lint, type-check)
  2. RUN the command fresh (not from memory, not from a previous run)
  3. READ the complete output (not skimmed, not truncated)
  4. VERIFY the output matches the claim (zero failures, exit code 0)
  5. ONLY THEN make the claim

Example:

  • Before: "I fixed the off-by-one error, tests should pass now."
  • Run: npm test → Output: 42 passed, 0 failed
  • After: "Off-by-one fix verified — 42 tests pass (0 failures, exit 0)."

Forbidden Words

These words in a completion claim are red flags — they mean you haven't verified:

  • "should work" / "should pass"
  • "probably" / "likely"
  • "seems to" / "appears to"
  • "I believe" / "I think"
  • "based on the changes"
  • "it worked before"

Replace with evidence: "All 34 tests pass (output: 34 passed, 0 failed, exit code 0)."

If no automated verification exists, state that explicitly: "No automated test covers this — manual verification required: [steps]." This is honest, not hedging.

Verification Patterns

Tests

Run command → See "X passed, 0 failed" → Claim "all tests pass"

NOT: "Tests should pass now" or "I fixed the issue so tests will pass."

Regression Test

Write test → Run (PASS) → Revert fix → Run (MUST FAIL) → Restore fix → Run (PASS)

The revert-and-fail step proves the test actually catches the bug.

Build

Run build → See exit code 0, no errors → Claim "build passes"

Requirements Checklist

For each requirement:
  [ ] Identified verification method
  [ ] Ran verification
  [ ] Evidence recorded

NOT: "Tests pass, so the feature is complete."

Sub-Agent Output

Agent claims success → Check VCS diff → Run tests yourself → Verify changes

NEVER trust agent reports without independent verification.

Common Mistakes

  • Trusting memory of a previous test run instead of running fresh
  • Reading only the last line of output, missing errors above
  • Claiming "build passes" after only running tests (or vice versa)
  • Verifying one aspect but claiming completeness for all aspects
  • Skipping verification "just this once" because it's a small change

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,984. 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.