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
-
Use verification commands to run the smallest strong set of checks:
pytestfor Python projectsnpm testfor Node.js projectsnpm run typecheckfor TypeScript
-
Report what passed and what is missing:
- List all passing tests
- List any failing tests with error details
- Note any skipped or pending tests
-
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?