@membank/cli 0.14.0 → 0.14.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +17 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -157,14 +157,30 @@ membank config show
|
|
|
157
157
|
|
|
158
158
|
### `membank synthesize`
|
|
159
159
|
|
|
160
|
-
View memory synthesis
|
|
160
|
+
View and manage memory synthesis.
|
|
161
161
|
|
|
162
162
|
```bash
|
|
163
|
+
membank synthesize run # trigger a synthesis run for a scope
|
|
163
164
|
membank synthesize show # current synthesis for global scope
|
|
164
165
|
membank synthesize show --scope <s> # synthesis for a specific project scope
|
|
165
166
|
membank synthesize status # all scopes and their synthesis state
|
|
166
167
|
```
|
|
167
168
|
|
|
169
|
+
Options for `run` and `show`: `--scope <scope>`
|
|
170
|
+
|
|
171
|
+
### `membank activity`
|
|
172
|
+
|
|
173
|
+
List activity events for the current project.
|
|
174
|
+
|
|
175
|
+
```bash
|
|
176
|
+
membank activity
|
|
177
|
+
membank activity --type memory.created
|
|
178
|
+
membank activity --since 2025-01-01
|
|
179
|
+
membank activity --global
|
|
180
|
+
```
|
|
181
|
+
|
|
182
|
+
Options: `--type <event_type>` (memory.created|updated|deleted|flagged|queried), `--since <date>`, `--memory-id <id>`, `--limit <n>` (default 50), `--global`, `--scope <hash>`
|
|
183
|
+
|
|
168
184
|
### `membank inject`
|
|
169
185
|
|
|
170
186
|
Output session context formatted for a harness. Called automatically by session hooks — you don't normally run this directly.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@membank/cli",
|
|
3
|
-
"version": "0.14.
|
|
3
|
+
"version": "0.14.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"commander": "^14.0.3",
|
|
22
22
|
"ora": "^9.4.0",
|
|
23
23
|
"zod": "^4.4.3",
|
|
24
|
-
"@membank/core": "0.12.
|
|
25
|
-
"@membank/mcp": "0.14.
|
|
24
|
+
"@membank/core": "0.12.1",
|
|
25
|
+
"@membank/mcp": "0.14.3"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "^25.6.0",
|