Agent skill

verify-code

Stars 163
Forks 31

Install this agent skill to your Project

npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/verify-code

SKILL.md

Verify Code

When to use

  • After tasks are marked done
  • Before marking implementation as complete
  • As part of TDD workflow verification phase

Instructions

  1. Use verification commands to run the smallest strong set of checks:

    • pytest for Python projects
    • npm test for Node.js projects
    • npm run typecheck for TypeScript
  2. Report what passed and what is missing:

    • List all passing tests
    • List any failing tests with error details
    • Note any skipped or pending tests
  3. If any blocking issue exists, return to implementation:

    • Do NOT mark as complete if tests fail
    • Document what changes are needed
    • Return to implementation phase

Verification Checklist

  • All unit tests pass
  • All integration tests pass
  • Type checking passes (if applicable)
  • Linting passes with no errors
  • No regressions in existing functionality
  • Build completes successfully

Didn't find tool you were looking for?

Be as detailed as possible for better results