| name | memory-capture |
| description | Unified memory capture with routing - session compact or quick tips. Triggers on "memory capture", "compact session", "save session", "quick tip", "memory tips", "่ฎฐๅฝ", "ๅ็ผฉไผ่ฏ". |
| allowed-tools | mcp__ccw-tools__core_memory(*), Read(*), AskUserQuestion |
Memory Capture Skill
Unified memory capture skill that routes to two execution modes:
- Compact: Compress full session memory into structured text for recovery
- Tips: Quick note-taking for ideas, snippets, and insights
Architecture Overview
โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ Memory Capture (Router) โ
โ โ Parse input โ Detect mode โ Route to phase โ
โโโโโโโโโโโโโโโโโฌโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
โ
โโโโโโโโโดโโโโโโโโ
โ โ
โโโโโโโโโโโโโ โโโโโโโโโโโโโ
โ Compact โ โ Tips โ
โ (Phase1) โ โ (Phase2) โ
โ Full โ โ Quick โ
โ Session โ โ Note โ
โโโโโโโฌโโโโโโ โโโโโโโฌโโโโโโ
โ โ
โโโโโโโโโฌโโโโโโโโ
โ
โโโโโโโโโโโโโโโโโ
โ core_memory โ
โ (import) โ
โโโโโโโโโโโโโโโโโ
Execution Flow
Step 1: Parse Input & Route
Detect execution mode from user input:
Auto-Route Rules (priority order):
| Signal | Route | Examples |
|---|
| Keyword: compact, session, ๅ็ผฉ, recovery, ไฟๅญไผ่ฏ | โ Compact | "compact current session" |
| Keyword: tip, note, ่ฎฐๅฝ, ๅฟซ้ | โ Tips | "่ฎฐๅฝไธไธชๆณๆณ" |
Has --tag or --context flags | โ Tips | "note content" --tag bug |
| Short text (<100 chars) + no session keywords | โ Tips | "Remember to use Redis" |
| Ambiguous or no arguments | โ AskUserQuestion | /memory-capture |
When ambiguous, use AskUserQuestion:
Question: "้ๆฉ่ฎฐๅฟๆ่ทๆจกๅผ"
Options:
1. Compact - ๅ็ผฉๅฝๅๅฎๆดไผ่ฏ่ฎฐๅฟ๏ผ็จไบไผ่ฏๆขๅค๏ผ
2. Tips - ๅฟซ้่ฎฐๅฝไธๆก็ฌ่ฎฐ/ๆณๆณ/ๆ็คบ
Step 2: Execute Selected Phase
Based on routing result, read and execute the corresponding phase:
Phase Reference Documents (read on-demand when phase executes):
Step 3: Save via core_memory
Both phases converge on the same storage mechanism:
mcp__ccw-tools__core_memory({
operation: "import",
text: structuredText
})
Core Rules
- Single Phase Execution: Only ONE phase executes per invocation - never both
- Content Faithful: Phase files contain full execution detail - follow them verbatim
- Absolute Paths: All file paths in output must be absolute
- No Summarization: Compact mode preserves complete plan verbatim - never abbreviate
- Speed Priority: Tips mode should be fast - minimal analysis overhead
Input Processing
Compact Mode Input
- Optional:
"session description" as supplementary context
- Example:
/memory-capture compact or /memory-capture "completed auth module"
Tips Mode Input
- Required:
<note content> - the tip/note text
- Optional:
--tag <tag1,tag2> for categorization
- Optional:
--context <context> for related code/feature reference
- Example:
/memory-capture tip "Use Redis for rate limiting" --tag config
Data Flow
User Input
โ
โโ [compact detected] โ Read phases/01-compact.md
โ โ Analyze session โ Generate structured text
โ โ core_memory import โ Report Recovery ID
โ
โโ [tips detected] โ Read phases/02-tips.md
โ Parse args โ Gather context โ Generate tip text
โ core_memory import โ Confirm with ID + tags
Error Handling
| Error | Action |
|---|
| core_memory import fails | Retry once, then report error with structured text for manual save |
| No session context (compact) | Warn user, generate with available info |
| Empty note content (tips) | Ask user to provide content via AskUserQuestion |
| Ambiguous routing | Default to AskUserQuestion - never guess |