一键导入
memory
Persistent memory system -- save and search observations across sessions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Persistent memory system -- save and search observations across sessions
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Configure external messaging channel adapters (Telegram, etc.) — saves credentials securely and patches kraken.jsonc
Manage the Kraken daemon -- view status, manage tasks, and perform maintenance
Configure LSP language servers for real-time diagnostics after code edits
Configure and test notification channels -- Slack, Discord, Email, GitHub, and system notifications
Manage API keys and secrets safely -- list, set, and delete without exposing values
Create, modify, and debug triggers -- cron jobs, webhooks, file watchers, CI failure handlers, PR mentions, and slash commands
| name | memory |
| description | Persistent memory system -- save and search observations across sessions |
| slash | memory |
| aliases | remember |
You have three memory tools: memory_save, memory_search, and memory_context.
Call memory_save IMMEDIATELY after any of these:
bugfix, decision, architecture, discovery, pattern, config, learning, refactor, performance**What**: One sentence -- what was done
**Why**: What motivated it (user request, bug, performance, etc.)
**Where**: Files or paths affected
**Learned**: Gotchas, edge cases, things that surprised you (omit if none)
architecture/auth-model. Same key updates the existing memory instead of creating a new one.project (default) for project-specific, personal for cross-project knowledgeWhen the user tells you their name, language, preferences, or any personal info, save it with scope: "personal" and a user/* topic key:
memory_save({
type: "preference",
title: "User name is Alice",
content: "The user told me their name is Alice.",
scope: "personal",
topic_key: "user/name"
})
Common user topic keys: user/name, user/language, user/style, user/preferences
architecture/auth vs bugfix/auth-nil-panic)topic_key to update an evolving topic instead of creating duplicatesarchitecture/*, bug/*, decision/*, pattern/*, config/*, discovery/*, user/*Call memory_search when:
id instead of queryCall memory_context when:
Before saying "done" or ending a session, save a summary observation:
memory_save({
type: "session-summary",
title: "Session: [brief description of what was accomplished]",
content: "## Goal\n[what we were working on]\n\n## Accomplished\n- [completed items]\n\n## Next Steps\n- [what remains]",
topic_key: "session/[date-or-topic]"
})