From Dev10x
Audits Claude global and project memory files for stale patterns, version-pinned paths, contradictory instructions, and anti-patterns causing skill bypass or permission friction. Reports findings and offers cleanup.
npx claudepluginhub dev10x-guru/dev10x-claude --plugin Dev10xThis skill is limited to using the following tools:
Memory files accumulate over time and can become stale, contradictory,
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.
Memory files accumulate over time and can become stale, contradictory, or actively harmful. This skill audits memory files across all scopes (global, project, plugin) and identifies issues that cause agents to misbehave — particularly patterns that lead to skill bypass.
REQUIRED: Create tasks before ANY work. Execute at startup:
TaskCreate(subject="Discover memory files", activeForm="Discovering")TaskCreate(subject="Analyze for anti-patterns", activeForm="Analyzing")TaskCreate(subject="Present findings", activeForm="Presenting")TaskCreate(subject="Apply fixes", activeForm="Applying fixes")Scan all memory locations:
~/.claude/memory/*.md~/.claude/memory/Dev10x/**~/.claude/memory/MEMORY.mdCount files per scope and report.
For each memory file, check for these categories:
Search for hardcoded plugin cache paths with version numbers:
~/.claude/plugins/cache/Dev10x-Guru/dev10x-claude/0.XX.0/...
These break on plugin upgrades. Replace with:
${CLAUDE_PLUGIN_ROOT}/... (in skill contexts)Search for memory entries that instruct agents to call scripts directly instead of using Skill() or MCP tools:
Bash(, scripts/, .sh, .py with execution
context (not documentation references)feedback_use_skills_not_scripts.md) are not violationsSearch for memory entries that contradict each other:
Search for references to things that no longer exist:
Compare MEMORY.md index entries against actual files:
Display findings grouped by category and severity:
| Severity | Meaning |
|---|---|
| ERROR | Actively causing misbehavior |
| WARNING | Likely to cause issues |
| INFO | Maintenance opportunity |
REQUIRED: Call AskUserQuestion (do NOT use plain text).
Options:
For each approved fix: