analyze
Installation
SKILL.md
Fix Claude -- Analyze
Analyze an existing CLAUDE.md file against the 7 structural bottlenecks discovered in the Claude Code source code leak. Produce a gap report explaining what each issue is, why it matters, and whether the current directives mitigate it.
Workflow
Step 1: Resolve and Read Target
TARGET="CLAUDE.md"
if [ -L "$TARGET" ]; then
TARGET=$(readlink -f "$TARGET")
echo "Resolved symlink to: $TARGET"
fi
Read the full target file. If it doesn't exist, tell the user to run
Related skills