From Agent Team Pack
Review and consolidate persistent memory using the LLM-free inventory report (stale blocks, near-duplicate pairs, oversized files). Use when the user asks to clean up/organize memory ("記憶を整理して"), when remember is rejected for file size, or periodically (e.g. monthly).
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-team-pack:memory-gcThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
溜まった記憶の重複・陳腐化を整理し、検索品質を保つ。**候補列挙はローカルツール(課金ゼロ)、統合の判断と実行だけをこのセッション内で行う**。
溜まった記憶の重複・陳腐化を整理し、検索品質を保つ。候補列挙はローカルツール(課金ゼロ)、統合の判断と実行だけをこのセッション内で行う。
python3 "${CLAUDE_PLUGIN_ROOT}/memory_system/memory_report.py" --stale-days 90
(MEMORY_DIRS 未設定なら MEMORY_DIRS="${user_config.memory_dirs}" を付ける)
| カテゴリ | 対応 |
|---|---|
| 重複候補ペア | 内容を読み比べ、新しい方に統合して古い方を消す(memory_write.py の replace で新しい方を更新 → 古いブロックは Edit で削除可) |
| stale(90日以上未更新) | まだ正しい→そのまま。状況が変わった→replace で更新。もう不要→削除 |
| 肥大ファイル | テーマ別に分割するか、ブロックを統合して圧縮 |
python3 "${CLAUDE_PLUGIN_ROOT}/memory_system/index_memory.py" reindex
統合・更新・削除した件数と内容の要約を伝える。
Creates, edits, and optimizes skills for Claude Code, including drafting, evaluating with test prompts, iterating on performance, and improving skill descriptions for better triggering accuracy.
npx claudepluginhub dbtnrobo/agent-team-pack --plugin agent-team-pack