بنقرة واحدة
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]"
})