Consolidate and deduplicate MEMORY.md. Use when memory file is getting large, has duplicates, or needs cleanup. Triggers on: consolidate memory, clean memory, deduplicate memory, memory cleanup.
From george-setupnpx claudepluginhub george11642/george-plugins --plugin george-setupThis skill uses the workspace's default tool permissions.
Designs and optimizes AI agent action spaces, tool definitions, observation formats, error recovery, and context for higher task completion rates.
Enables AI agents to execute x402 payments with per-task budgets, spending controls, and non-custodial wallets via MCP tools. Use when agents pay for APIs, services, or other agents.
Compares coding agents like Claude Code and Aider on custom YAML-defined codebase tasks using git worktrees, measuring pass rate, cost, time, and consistency.
Run the memory consolidation script to deduplicate and organize MEMORY.md.
python3 ~/.claude/scripts/consolidate-memory.py
Report the output summary to the user (lines before/after, duplicates removed, topic files created).
If the user wants to review changes, show a diff:
diff ~/.claude/projects/-home-george/memory/MEMORY.md.bak ~/.claude/projects/-home-george/memory/MEMORY.md
## headers.bak backup before modifyingTo run consolidation automatically (e.g., weekly), add a cron entry:
# Edit crontab
crontab -e
# Add this line for weekly consolidation (Sunday at 3am):
0 3 * * 0 /usr/bin/python3 ~/.claude/scripts/consolidate-memory.py >> ~/.claude/logs/consolidation.log 2>&1
Make sure the logs directory exists:
mkdir -p ~/.claude/logs