From claude-md
Analyzes conversations to identify and propose targeted updates to CLAUDE.md memory files based on user corrections and misunderstandings.
npx claudepluginhub robbyt/claude-skills --plugin claude-mdThis skill uses the workspace's default tool permissions.
Analyze recent conversation history to identify improvements for CLAUDE.md memory files.
Creates isolated Git worktrees for feature branches with prioritized directory selection, gitignore safety checks, auto project setup for Node/Python/Rust/Go, and baseline verification.
Executes implementation plans in current session by dispatching fresh subagents per independent task, with two-stage reviews: spec compliance then code quality.
Dispatches parallel agents to independently tackle 2+ tasks like separate test failures or subsystems without shared state or dependencies.
Analyze recent conversation history to identify improvements for CLAUDE.md memory files.
Find all CLAUDE.md files:
python scripts/find_claude_md.py
Analyze conversation for:
Read reference materials:
references/memory-locations.md - Memory file hierarchy and placementreferences/anti-patterns.md - Common mistakes to avoidPresent findings using AskUserQuestion with checkboxes.
For each suggestion:
Example:
Issue: Repeatedly used 'var' instead of 'const' in JavaScript
Proposal: Add "NEVER use var in JavaScript, use const or let"
File: ./frontend/CLAUDE.md
Wait for user approval before implementing.
For approved changes:
Select correct memory file:
./CLAUDE.md - Project-wide, shared with team./.claude/CLAUDE.md - Alternative project location./.claude/rules/*.md - Modular topic-specific rules~/.claude/CLAUDE.md - Personal preferences (all projects)./CLAUDE.local.md - Personal project-specific (gitignored)Apply changes:
Avoid anti-patterns:
| Type | Location | Purpose | Shared |
|---|---|---|---|
| Project | ./CLAUDE.md | Team instructions | Yes (git) |
| Rules | ./.claude/rules/*.md | Modular topic rules | Yes (git) |
| User | ~/.claude/CLAUDE.md | Personal preferences | No |
| Local | ./CLAUDE.local.md | Personal project prefs | No (gitignored) |
Files higher in hierarchy take precedence. Use @path/to/file syntax to import files.
scripts/find_claude_md.py - Locate all CLAUDE.md filesreferences/memory-locations.md - Detailed memory hierarchy docsreferences/anti-patterns.md - Common mistakes to avoid