quality-detect-orphaned-code
Installation
SKILL.md
Detect Orphaned Code
Quick Start
Run orphan detection before marking any feature complete:
# Quick check for a specific module
grep -r "from.*your_module import\|import.*your_module" src/ --include="*.py" | grep -v test
# If output is EMPTY → Module is orphaned (not imported in production)
# Comprehensive orphan detection (if script exists)
./scripts/verify_integration.sh
# Check specific function usage
grep -r "your_function_name" src/ --include="*.py" | grep -v test | grep -v "^[^:]*:.*def "
Related skills