From claude-md
Analyzes conversations to identify and propose targeted updates to CLAUDE.md memory files based on user corrections and misunderstandings.
How this skill is triggered — by the user, by Claude, or both
Slash command
/claude-md:skills/reflectThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Analyze recent conversation history to identify improvements for CLAUDE.md memory files.
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 avoid2plugins reuse this skill
First indexed Jan 1, 2026
npx claudepluginhub robbyt/claude-skills --plugin claude-mdAnalyzes conversations to identify and propose targeted updates to CLAUDE.md memory files based on user corrections and misunderstandings.
Manages CLAUDE.md and engram memory lifecycle: generates structured reflections, reviews/applies them, and consolidates memory health. Invoked via /reflect or explicit memory hygiene requests.
Reviews auto-memory entries and proposes promotions to CLAUDE.md, CLAUDE.local.md, or shared memory. Also detects outdated, conflicting, and duplicate entries across memory layers.