Discover and apply best practice skills automatically. Gap analysis scans the codebase, skill-search fills gaps from the registry, skill-classifier separates proactive from reactive skills, quality-standards generates CLAUDE.md guidance, self-review compares code against checklists, and verification-strategy sets up test/lint/typecheck feedback loops.
86
86%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Advisory
Suggest reviewing before use
#!/bin/bash
# quality-standards: Remove quality block from CLAUDE.md
#
# Removes everything between <!-- skill-discovery:start --> and
# <!-- skill-discovery:end --> markers, leaving the rest of CLAUDE.md intact.
CLAUDE_MD="CLAUDE.md"
if [ ! -f "$CLAUDE_MD" ]; then
echo "No CLAUDE.md found — nothing to remove."
exit 0
fi
python3 -c "
import re
with open('$CLAUDE_MD') as f:
content = f.read()
updated = re.sub(r'\n?<!-- skill-discovery:start -->.*?<!-- skill-discovery:end -->\n?', '', content, flags=re.DOTALL)
with open('$CLAUDE_MD', 'w') as f:
f.write(updated)
"
echo "Quality standards block removed from $CLAUDE_MD"