|
19 | 19 | |---------|----------|--------| |
20 | 20 | | [`compact`](#compact) | Compress current session memory to structured text | `/memory:compact [optional: session description]` | |
21 | 21 | | [`tips`](#tips) | Quick note-taking | `/memory:tips <note content> [--tag tags] [--context context]` | |
22 | | -| [`load`](#load) | Load task context via CLI project analysis | `/memory:load [--tool gemini\|qwen] "task context description"` | |
| 22 | +| [`prepare`](#prepare) | Load task context via CLI project analysis | `/memory:prepare [--tool gemini\|qwen] "task context description"` | |
23 | 23 | | [`update-full`](#update-full) | Update all CLAUDE.md files | `/memory:update-full [--tool gemini\|qwen\|codex] [--path directory]` | |
24 | 24 | | [`update-related`](#update-related) | Update CLAUDE.md for git-changed modules | `/memory:update-related [--tool gemini\|qwen\|codex]` | |
25 | 25 | | [`docs-full-cli`](#docs-full-cli) | Generate full project documentation using CLI | `/memory:docs-full-cli [path] [--tool tool]` | |
|
33 | 33 | **Function**: Compress current session memory to structured text, extracting objectives, plans, files, decisions, constraints, and state, saving via MCP core_memory tool. |
34 | 34 |
|
35 | 35 | **Syntax**: |
36 | | -``` |
| 36 | +```bash |
37 | 37 | /memory:compact [optional: session description] |
38 | 38 | ``` |
39 | 39 |
|
|
59 | 59 | **Function**: Quick note-taking command, capturing thoughts, snippets, reminders, and insights for future reference. |
60 | 60 |
|
61 | 61 | **Syntax**: |
62 | | -``` |
| 62 | +```bash |
63 | 63 | /memory:tips <note content> [--tag <tag1,tag2>] [--context <context>] |
64 | 64 | ``` |
65 | 65 |
|
|
79 | 79 | /memory:tips "use Redis to cache user sessions" --context "login optimization" |
80 | 80 | ``` |
81 | 81 |
|
82 | | -### load |
| 82 | +### prepare |
83 | 83 |
|
84 | 84 | **Function**: Delegate to universal-executor agent, analyzing project via Gemini/Qwen CLI and returning JSON core content package for task context. |
85 | 85 |
|
86 | 86 | **Syntax**: |
87 | | -``` |
88 | | -/memory:load [--tool gemini|qwen] "task context description" |
| 87 | +```bash |
| 88 | +/memory:prepare [--tool gemini|qwen] "task context description" |
89 | 89 | ``` |
90 | 90 |
|
91 | 91 | **Options**: |
|
96 | 96 | **Examples**: |
97 | 97 | ```bash |
98 | 98 | # Use default tool |
99 | | -/memory:load "user authentication module" |
| 99 | +/memory:prepare "user authentication module" |
100 | 100 |
|
101 | 101 | # Specify tool |
102 | | -/memory:load --tool gemini "payment system architecture" |
| 102 | +/memory:prepare --tool gemini "payment system architecture" |
103 | 103 | ``` |
104 | 104 |
|
105 | 105 | ### update-full |
106 | 106 |
|
107 | 107 | **Function**: Update all CLAUDE.md files, using layer-based execution (Layer 3->1), batch agent processing (4 modules/agent), and gemini->qwen->codex fallback. |
108 | 108 |
|
109 | 109 | **Syntax**: |
110 | | -``` |
| 110 | +```bash |
111 | 111 | /memory:update-full [--tool gemini|qwen|codex] [--path <directory>] |
112 | 112 | ``` |
113 | 113 |
|
|
137 | 137 | **Function**: Update CLAUDE.md files for git-changed modules, using batch agent execution (4 modules/agent) and gemini->qwen->codex fallback. |
138 | 138 |
|
139 | 139 | **Syntax**: |
140 | | -``` |
| 140 | +```bash |
141 | 141 | /memory:update-related [--tool gemini|qwen|codex] |
142 | 142 | ``` |
143 | 143 |
|
|
158 | 158 | **Function**: Generate full project documentation using CLI (Layer 3->1), batch agent processing (4 modules/agent), gemini->qwen->codex fallback, direct parallel for <20 modules. |
159 | 159 |
|
160 | 160 | **Syntax**: |
161 | | -``` |
| 161 | +```bash |
162 | 162 | /memory:docs-full-cli [path] [--tool <gemini|qwen|codex>] |
163 | 163 | ``` |
164 | 164 |
|
|
179 | 179 | **Function**: Generate documentation for git-changed modules using CLI, batch agent processing (4 modules/agent), gemini->qwen->codex fallback, direct execution for <15 modules. |
180 | 180 |
|
181 | 181 | **Syntax**: |
182 | | -``` |
| 182 | +```bash |
183 | 183 | /memory:docs-related-cli [--tool <gemini|qwen|codex>] |
184 | 184 | ``` |
185 | 185 |
|
|
197 | 197 | **Function**: Generate SKILL memory package from style reference, facilitating loading and consistent design system usage. |
198 | 198 |
|
199 | 199 | **Syntax**: |
200 | | -``` |
| 200 | +```bash |
201 | 201 | /memory:style-skill-memory [package-name] [--regenerate] |
202 | 202 | ``` |
203 | 203 |
|
|
0 commit comments