From fixclaude
Update an existing CLAUDE.md (or the file it symlinks to) with production-grade agent directives that override Claude Code's built-in limitations. Merges new directives without destroying existing project-specific instructions. Use when the user says "fixclaude update", "update claude md", "add claude fixes", or "augment claude md".
npx claudepluginhub florianbuetow/claude-code --plugin fixclaudeThis skill uses the workspace's default tool permissions.
Augment an existing CLAUDE.md with production-grade agent directives. Preserves
Guides Next.js Cache Components and Partial Prerendering (PPR) with cacheComponents enabled. Implements 'use cache', cacheLife(), cacheTag(), revalidateTag(), static/dynamic optimization, and cache debugging.
Guides building MCP servers enabling LLMs to interact with external services via tools. Covers best practices, TypeScript/Node (MCP SDK), Python (FastMCP).
Generates original PNG/PDF visual art via design philosophy manifestos for posters, graphics, and static designs on user request.
Augment an existing CLAUDE.md with production-grade agent directives. Preserves existing project-specific instructions while adding overrides for Claude Code's built-in limitations.
If a specific path was passed (from the install router handling a symlink), use that path. Otherwise:
TARGET="CLAUDE.md"
if [ -L "$TARGET" ]; then
TARGET=$(readlink -f "$TARGET")
echo "Resolved symlink to: $TARGET"
fi
Read the target file completely. Understand its structure:
Read the full template from:
${CLAUDE_PLUGIN_ROOT}/references/claude-md-template.md
Read the source leak findings reference for full context on what each directive fixes:
${CLAUDE_PLUGIN_ROOT}/skills/analyze/references/source-leak-findings.md
Compare the existing CLAUDE.md against all 7 findings. For each finding, determine whether the existing file already addresses it:
| Finding | Check |
|---|---|
| 1. Verification gate | Has forced verification / compile-check mandate? |
| 2. Context death spiral | Has Step 0 cleanup / phased execution rules? |
| 3. Brevity mandate | Has senior dev override / quality reframing? |
| 4. Agent swarm | Has sub-agent swarming rules? |
| 5. 2,000-line blind spot | Has file read budget / chunked read rules? |
| 6. Tool result blindness | Has truncation awareness / narrow scoping rules? |
| 7. grep not AST | Has multi-search mandate for renames? |
For each missing or incomplete directive:
---
## Agent Override Directives
> Production-grade overrides for Claude Code limitations.
> Based on https://github.com/iamfakeguru/claude-md (MIT, fakeguru)
> Installed by fixclaude plugin
Write the updated file. Then tell the user:
fixclaude:analyze for a detailed gap analysis