From fixclaude
Detects CLAUDE.md presence and symlinks in project, routes to fixclaude:init (create new) or update (augment existing) skill. Triggers on 'fixclaude', 'install fixclaude' commands.
How this skill is triggered — by the user, by Claude, or both
Slash command
/fixclaude:installThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Detect the current project state and install production-grade agent directives
Detect the current project state and install production-grade agent directives that override Claude Code's built-in limitations.
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
echo "MISSING: $TARGET"
fi
Based on the detection result:
fixclaude:init skill to create a new CLAUDE.mdfixclaude:update skill to augment the existing filefixclaude:update skill, passing the resolved real path as the target file. The update skill will modify the file that CLAUDE.md points to, not the symlink itself.npx claudepluginhub florianbuetow/claude-code --plugin fixclaudeCLAUDE.md instruction quality: writing effective project instructions, diagnosing why Claude ignores rules, routing content to the right layer, and systematic improvement. Invoke whenever task involves any interaction with CLAUDE.md files — writing, reviewing, auditing, improving, or debugging instruction compliance.
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.