quality-verify-implementation-complete
Installation
SKILL.md
Verify Implementation Complete
Quick Start
Before claiming any implementation is "done", run this verification:
# 1. Check if your new module is imported
grep -r "from.*your_module import\|import.*your_module" src/
# 2. Check if your functions are called
grep -r "your_function_name" src/ --include="*.py" | grep -v test | grep -v "def "
# 3. Run integration verification
./scripts/verify_integration.sh # If available
# 4. Answer the Four Questions (see below)
Related skills