원클릭으로
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]"
})