Help us improve
Share bugs, ideas, or general feedback.
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.
npx claudepluginhub florianbuetow/claude-code --plugin fixclaudeHow 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
CLAUDE.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 p5.js generative art with seeded randomness, noise fields, and interactive parameter exploration. Use for algorithmic art, flow fields, or particle systems.
Share bugs, ideas, or general feedback.
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.