From Agent Team Pack
Save a durable fact, design decision, or user preference to persistent memory (markdown + auto reindex, zero API cost). Use when the user says "覚えておいて"/"メモして", when a design decision is made, or when you learn something future sessions will need. Searches first and updates in place instead of duplicating.
How this skill is triggered — by the user, by Claude, or both
Slash command
/agent-team-pack:rememberThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
恒久的に残すべき事実を記憶mdに保存する。**書き込みは必ず CLI 経由**(重複拒否・字数上限・日付規約を機械的に強制するため、mdを直接編集しない)。
恒久的に残すべき事実を記憶mdに保存する。書き込みは必ず CLI 経由(重複拒否・字数上限・日付規約を機械的に強制するため、mdを直接編集しない)。
| 残す | 残さない |
|---|---|
| 設計・方針の決定とその理由 | 一時的な作業状態(→ CONTEXT.md へ) |
| ユーザーの好み・作業スタイル | コードやgit履歴から分かること |
| 恒久的な事実・制約・環境情報 | 秘密情報(トークン・パスワード等)絶対禁止 |
python3 "${CLAUDE_PLUGIN_ROOT}/memory_system/index_memory.py" search "保存したい内容のキーワード" -n 5 --json
python3 "${CLAUDE_PLUGIN_ROOT}/memory_system/memory_write.py" append \
--file <記憶ディレクトリ>/<トピック>.md \
--heading "YYYY-MM-DD <トピックの要約>" \
--body "<事実。決定なら理由も1行で>"
MEMORY_DIRS(または ${user_config.memory_dirs})の先頭ディレクトリ。テーマ別の md があればそこへ、なければ新ファイル可python3 "${CLAUDE_PLUGIN_ROOT}/memory_system/memory_write.py" replace \
--file <既存md> --match "<既存見出しの一部>" \
--heading "YYYY-MM-DD <更新後の要約>" --body "<更新後の内容>"
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