install
Installation
SKILL.md
Fix Claude -- Install
Detect the current project state and install production-grade agent directives that override Claude Code's built-in limitations.
Workflow
Step 1: Detect CLAUDE.md
Run this bash command to check for CLAUDE.md and resolve symlinks:
TARGET="CLAUDE.md"
if [ -L "$TARGET" ]; then
REAL_PATH=$(readlink -f "$TARGET")
echo "SYMLINK: $TARGET -> $REAL_PATH"
elif [ -f "$TARGET" ]; then
echo "EXISTS: $TARGET"
else
Related skills