@memrosetta/cli 0.5.0 → 0.5.2

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.
Files changed (57) hide show
  1. package/dist/chunk-47SU2YUJ.js +64 -0
  2. package/dist/chunk-4LNXT25H.js +891 -0
  3. package/dist/chunk-C4ANKSCI.js +151 -0
  4. package/dist/chunk-CEHRM6IW.js +151 -0
  5. package/dist/chunk-G2W4YK2T.js +56 -0
  6. package/dist/chunk-GGXC7TAJ.js +139 -0
  7. package/dist/chunk-GRNZVSAF.js +56 -0
  8. package/dist/chunk-GZINXXM4.js +139 -0
  9. package/dist/chunk-RZFCVYTK.js +71 -0
  10. package/dist/chunk-US6CEDMU.js +66 -0
  11. package/dist/chunk-VMGX5FCY.js +64 -0
  12. package/dist/chunk-WYHEAKPC.js +71 -0
  13. package/dist/clear-32Y3U2WR.js +39 -0
  14. package/dist/clear-AFEJPCDA.js +39 -0
  15. package/dist/compress-CL5D4VVJ.js +33 -0
  16. package/dist/compress-UUEO7WCU.js +33 -0
  17. package/dist/count-U2ML5ZON.js +24 -0
  18. package/dist/count-VVOGYSM7.js +24 -0
  19. package/dist/duplicates-CEJ7WSGW.js +149 -0
  20. package/dist/duplicates-IBUS7CJS.js +149 -0
  21. package/dist/enforce-T7AS4PVD.js +381 -0
  22. package/dist/enforce-TC5SDPEZ.js +381 -0
  23. package/dist/feedback-3PJTTEOD.js +51 -0
  24. package/dist/feedback-IB7BHIRP.js +51 -0
  25. package/dist/get-TQ2U7HCD.js +30 -0
  26. package/dist/get-WPZIHQKW.js +30 -0
  27. package/dist/hooks/enforce-codex.js +88 -0
  28. package/dist/hooks/on-prompt.js +3 -3
  29. package/dist/hooks/on-stop.js +3 -3
  30. package/dist/index.js +30 -20
  31. package/dist/ingest-37UXPVT5.js +97 -0
  32. package/dist/ingest-TPQRH34A.js +97 -0
  33. package/dist/init-6YQL3RCQ.js +210 -0
  34. package/dist/init-ISP73KEC.js +210 -0
  35. package/dist/init-LHXRCCLX.js +210 -0
  36. package/dist/invalidate-ER2TFFWK.js +40 -0
  37. package/dist/invalidate-PVHUGAJ6.js +40 -0
  38. package/dist/maintain-NICAXFK6.js +37 -0
  39. package/dist/maintain-Q553GBSF.js +37 -0
  40. package/dist/migrate-CZL3YNQK.js +255 -0
  41. package/dist/migrate-FI26FSBP.js +255 -0
  42. package/dist/relate-5TN2WEG3.js +57 -0
  43. package/dist/relate-KLBMYWB3.js +57 -0
  44. package/dist/reset-IPOAKTJM.js +132 -0
  45. package/dist/reset-P62B444X.js +132 -0
  46. package/dist/search-AYZBKRXF.js +48 -0
  47. package/dist/search-JQ3MLRKS.js +48 -0
  48. package/dist/status-FWHUUZ4R.js +184 -0
  49. package/dist/status-JF2V7ZBX.js +184 -0
  50. package/dist/status-UV66PWUD.js +184 -0
  51. package/dist/store-AAJCT3PX.js +101 -0
  52. package/dist/store-OVDS57U5.js +101 -0
  53. package/dist/sync-56KJTKE7.js +542 -0
  54. package/dist/sync-BCKBYRXY.js +542 -0
  55. package/dist/working-memory-CJARSGEK.js +53 -0
  56. package/dist/working-memory-Z3RUGSTQ.js +53 -0
  57. package/package.json +6 -5
@@ -0,0 +1,210 @@
1
+ import {
2
+ getAgentsMdPath,
3
+ getCodexConfigFilePath,
4
+ getCodexHooksPath,
5
+ getCursorMcpConfigPath,
6
+ getCursorRulesPath,
7
+ getGeminiMdPath,
8
+ getGeminiSettingsFilePath,
9
+ getGenericMCPPath,
10
+ isClaudeCodeInstalled,
11
+ registerClaudeCodeHooks,
12
+ registerCodexHooks,
13
+ registerCodexMCP,
14
+ registerCursorMCP,
15
+ registerGeminiMCP,
16
+ registerGenericMCP,
17
+ updateClaudeMd
18
+ } from "./chunk-4LNXT25H.js";
19
+ import {
20
+ hasFlag,
21
+ optionalOption
22
+ } from "./chunk-SYPVELIW.js";
23
+ import {
24
+ getDefaultDbPath,
25
+ getEngine
26
+ } from "./chunk-VAVUPQZA.js";
27
+ import {
28
+ output
29
+ } from "./chunk-ET6TNQOJ.js";
30
+ import {
31
+ getConfig,
32
+ writeConfig
33
+ } from "./chunk-SEPYQK3J.js";
34
+
35
+ // src/commands/init.ts
36
+ import { existsSync } from "fs";
37
+ var LANG_FLAG_TO_PRESET = {
38
+ en: "en",
39
+ multi: "multilingual",
40
+ ko: "ko"
41
+ };
42
+ async function run(options) {
43
+ const { args, format, db, noEmbeddings } = options;
44
+ const wantClaudeCode = hasFlag(args, "--claude-code");
45
+ const wantCursor = hasFlag(args, "--cursor");
46
+ const wantCodex = hasFlag(args, "--codex");
47
+ const wantGemini = hasFlag(args, "--gemini");
48
+ const langFlag = optionalOption(args, "--lang");
49
+ const embeddingPreset = langFlag ? LANG_FLAG_TO_PRESET[langFlag] : void 0;
50
+ if (langFlag && !LANG_FLAG_TO_PRESET[langFlag]) {
51
+ process.stderr.write(
52
+ `Unknown --lang value: "${langFlag}". Supported: en, multi, ko
53
+ `
54
+ );
55
+ process.exitCode = 1;
56
+ return;
57
+ }
58
+ {
59
+ const config2 = getConfig();
60
+ const updates = {};
61
+ if (db) {
62
+ updates.dbPath = db;
63
+ }
64
+ if (noEmbeddings) {
65
+ updates.enableEmbeddings = false;
66
+ }
67
+ if (embeddingPreset) {
68
+ updates.embeddingPreset = embeddingPreset;
69
+ }
70
+ if (Object.keys(updates).length > 0) {
71
+ writeConfig({ ...config2, ...updates });
72
+ }
73
+ }
74
+ const config = getConfig();
75
+ const dbPath = db ?? config.dbPath ?? getDefaultDbPath();
76
+ const existed = existsSync(dbPath);
77
+ const engine = await getEngine({ db: dbPath, noEmbeddings });
78
+ await engine.close();
79
+ const result = {
80
+ database: {
81
+ path: dbPath,
82
+ created: !existed
83
+ },
84
+ integrations: {}
85
+ };
86
+ registerGenericMCP();
87
+ result.integrations.mcp = {
88
+ registered: true,
89
+ path: getGenericMCPPath()
90
+ };
91
+ if (wantClaudeCode) {
92
+ const hooksOk = registerClaudeCodeHooks();
93
+ const claudeMdOk = updateClaudeMd();
94
+ result.integrations.claudeCode = {
95
+ hooks: hooksOk,
96
+ mcp: true,
97
+ claudeMd: claudeMdOk
98
+ };
99
+ }
100
+ if (wantCursor) {
101
+ const cursorRulesUpdated = registerCursorMCP();
102
+ result.integrations.cursor = {
103
+ mcp: true,
104
+ path: getCursorMcpConfigPath(),
105
+ cursorRules: cursorRulesUpdated,
106
+ cursorRulesPath: getCursorRulesPath()
107
+ };
108
+ }
109
+ if (wantCodex) {
110
+ const agentsMdUpdated = registerCodexMCP();
111
+ const hooksRegistered = registerCodexHooks();
112
+ result.integrations.codex = {
113
+ mcp: true,
114
+ path: getCodexConfigFilePath(),
115
+ agentsMd: agentsMdUpdated,
116
+ agentsMdPath: getAgentsMdPath(),
117
+ stopHook: hooksRegistered,
118
+ stopHookPath: getCodexHooksPath()
119
+ };
120
+ }
121
+ if (wantGemini) {
122
+ const geminiMdUpdated = registerGeminiMCP();
123
+ result.integrations.gemini = {
124
+ mcp: true,
125
+ path: getGeminiSettingsFilePath(),
126
+ geminiMd: geminiMdUpdated,
127
+ geminiMdPath: getGeminiMdPath()
128
+ };
129
+ }
130
+ if (format === "text") {
131
+ printTextOutput(result, wantClaudeCode, wantCursor, wantCodex, wantGemini);
132
+ return;
133
+ }
134
+ output(result, format);
135
+ }
136
+ function printTextOutput(result, claudeCode, cursor, codex = false, gemini = false) {
137
+ const w = (s) => process.stdout.write(s);
138
+ w("\nMemRosetta initialized successfully.\n\n");
139
+ w(" What was set up:\n");
140
+ w(" ----------------------------------------\n");
141
+ w(` Database: ${result.database.path}`);
142
+ w(result.database.created ? " (created)\n" : " (already exists)\n");
143
+ w(` MCP Server: ${result.integrations.mcp.path} (always included)
144
+ `);
145
+ const currentConfig = getConfig();
146
+ if (currentConfig.embeddingPreset && currentConfig.embeddingPreset !== "en") {
147
+ const presetLabels = {
148
+ multilingual: "multilingual (multilingual-e5-small)",
149
+ ko: "Korean (ko-sroberta-multitask)"
150
+ };
151
+ w(` Embeddings: ${presetLabels[currentConfig.embeddingPreset] ?? currentConfig.embeddingPreset}
152
+ `);
153
+ }
154
+ if (claudeCode) {
155
+ const cc = result.integrations.claudeCode;
156
+ if (cc.hooks) {
157
+ w(" Stop Hook: ~/.claude/settings.json (auto-save on session end)\n");
158
+ } else if (!isClaudeCodeInstalled()) {
159
+ w(" Stop Hook: SKIPPED (Claude Code not found at ~/.claude)\n");
160
+ w(' Install Claude Code first, then run "memrosetta init --claude-code" again.\n');
161
+ }
162
+ if (cc.claudeMd) {
163
+ w(" CLAUDE.md: ~/.claude/CLAUDE.md (memory instructions added)\n");
164
+ } else {
165
+ w(" CLAUDE.md: already configured\n");
166
+ }
167
+ }
168
+ if (cursor) {
169
+ w(` Cursor MCP: ${result.integrations.cursor.path}
170
+ `);
171
+ if (result.integrations.cursor.cursorRules) {
172
+ w(` .cursorrules: ${result.integrations.cursor.cursorRulesPath} (memory instructions added)
173
+ `);
174
+ } else {
175
+ w(" .cursorrules: already configured\n");
176
+ }
177
+ }
178
+ if (codex) {
179
+ w(` Codex MCP: ${result.integrations.codex.path}
180
+ `);
181
+ if (result.integrations.codex.agentsMd) {
182
+ w(` AGENTS.md: ${result.integrations.codex.agentsMdPath} (memory instructions added)
183
+ `);
184
+ } else {
185
+ w(" AGENTS.md: already configured\n");
186
+ }
187
+ }
188
+ if (gemini) {
189
+ w(` Gemini MCP: ${result.integrations.gemini.path}
190
+ `);
191
+ if (result.integrations.gemini.geminiMd) {
192
+ w(` GEMINI.md: ${result.integrations.gemini.geminiMdPath} (memory instructions added)
193
+ `);
194
+ } else {
195
+ w(" GEMINI.md: already configured\n");
196
+ }
197
+ }
198
+ w("\n");
199
+ if (!claudeCode && !cursor && !codex && !gemini) {
200
+ w(" MCP is ready. Add --claude-code, --cursor, --codex, or --gemini for tool-specific setup.\n");
201
+ w(" Example: memrosetta init --claude-code\n");
202
+ w("\n");
203
+ }
204
+ if (claudeCode) {
205
+ w(" Restart Claude Code to activate.\n\n");
206
+ }
207
+ }
208
+ export {
209
+ run
210
+ };
@@ -0,0 +1,210 @@
1
+ import {
2
+ getAgentsMdPath,
3
+ getCodexConfigFilePath,
4
+ getCodexHooksPath,
5
+ getCursorMcpConfigPath,
6
+ getCursorRulesPath,
7
+ getGeminiMdPath,
8
+ getGeminiSettingsFilePath,
9
+ getGenericMCPPath,
10
+ isClaudeCodeInstalled,
11
+ registerClaudeCodeHooks,
12
+ registerCodexHooks,
13
+ registerCodexMCP,
14
+ registerCursorMCP,
15
+ registerGeminiMCP,
16
+ registerGenericMCP,
17
+ updateClaudeMd
18
+ } from "./chunk-4LNXT25H.js";
19
+ import {
20
+ hasFlag,
21
+ optionalOption
22
+ } from "./chunk-US6CEDMU.js";
23
+ import {
24
+ getDefaultDbPath,
25
+ getEngine
26
+ } from "./chunk-47SU2YUJ.js";
27
+ import {
28
+ output
29
+ } from "./chunk-ET6TNQOJ.js";
30
+ import {
31
+ getConfig,
32
+ writeConfig
33
+ } from "./chunk-WYHEAKPC.js";
34
+
35
+ // src/commands/init.ts
36
+ import { existsSync } from "fs";
37
+ var LANG_FLAG_TO_PRESET = {
38
+ en: "en",
39
+ multi: "multilingual",
40
+ ko: "ko"
41
+ };
42
+ async function run(options) {
43
+ const { args, format, db, noEmbeddings } = options;
44
+ const wantClaudeCode = hasFlag(args, "--claude-code");
45
+ const wantCursor = hasFlag(args, "--cursor");
46
+ const wantCodex = hasFlag(args, "--codex");
47
+ const wantGemini = hasFlag(args, "--gemini");
48
+ const langFlag = optionalOption(args, "--lang");
49
+ const embeddingPreset = langFlag ? LANG_FLAG_TO_PRESET[langFlag] : void 0;
50
+ if (langFlag && !LANG_FLAG_TO_PRESET[langFlag]) {
51
+ process.stderr.write(
52
+ `Unknown --lang value: "${langFlag}". Supported: en, multi, ko
53
+ `
54
+ );
55
+ process.exitCode = 1;
56
+ return;
57
+ }
58
+ {
59
+ const config2 = getConfig();
60
+ const updates = {};
61
+ if (db) {
62
+ updates.dbPath = db;
63
+ }
64
+ if (noEmbeddings) {
65
+ updates.enableEmbeddings = false;
66
+ }
67
+ if (embeddingPreset) {
68
+ updates.embeddingPreset = embeddingPreset;
69
+ }
70
+ if (Object.keys(updates).length > 0) {
71
+ writeConfig({ ...config2, ...updates });
72
+ }
73
+ }
74
+ const config = getConfig();
75
+ const dbPath = db ?? config.dbPath ?? getDefaultDbPath();
76
+ const existed = existsSync(dbPath);
77
+ const engine = await getEngine({ db: dbPath, noEmbeddings });
78
+ await engine.close();
79
+ const result = {
80
+ database: {
81
+ path: dbPath,
82
+ created: !existed
83
+ },
84
+ integrations: {}
85
+ };
86
+ registerGenericMCP();
87
+ result.integrations.mcp = {
88
+ registered: true,
89
+ path: getGenericMCPPath()
90
+ };
91
+ if (wantClaudeCode) {
92
+ const hooksOk = registerClaudeCodeHooks();
93
+ const claudeMdOk = updateClaudeMd();
94
+ result.integrations.claudeCode = {
95
+ hooks: hooksOk,
96
+ mcp: true,
97
+ claudeMd: claudeMdOk
98
+ };
99
+ }
100
+ if (wantCursor) {
101
+ const cursorRulesUpdated = registerCursorMCP();
102
+ result.integrations.cursor = {
103
+ mcp: true,
104
+ path: getCursorMcpConfigPath(),
105
+ cursorRules: cursorRulesUpdated,
106
+ cursorRulesPath: getCursorRulesPath()
107
+ };
108
+ }
109
+ if (wantCodex) {
110
+ const agentsMdUpdated = registerCodexMCP();
111
+ const hooksRegistered = registerCodexHooks();
112
+ result.integrations.codex = {
113
+ mcp: true,
114
+ path: getCodexConfigFilePath(),
115
+ agentsMd: agentsMdUpdated,
116
+ agentsMdPath: getAgentsMdPath(),
117
+ stopHook: hooksRegistered,
118
+ stopHookPath: getCodexHooksPath()
119
+ };
120
+ }
121
+ if (wantGemini) {
122
+ const geminiMdUpdated = registerGeminiMCP();
123
+ result.integrations.gemini = {
124
+ mcp: true,
125
+ path: getGeminiSettingsFilePath(),
126
+ geminiMd: geminiMdUpdated,
127
+ geminiMdPath: getGeminiMdPath()
128
+ };
129
+ }
130
+ if (format === "text") {
131
+ printTextOutput(result, wantClaudeCode, wantCursor, wantCodex, wantGemini);
132
+ return;
133
+ }
134
+ output(result, format);
135
+ }
136
+ function printTextOutput(result, claudeCode, cursor, codex = false, gemini = false) {
137
+ const w = (s) => process.stdout.write(s);
138
+ w("\nMemRosetta initialized successfully.\n\n");
139
+ w(" What was set up:\n");
140
+ w(" ----------------------------------------\n");
141
+ w(` Database: ${result.database.path}`);
142
+ w(result.database.created ? " (created)\n" : " (already exists)\n");
143
+ w(` MCP Server: ${result.integrations.mcp.path} (always included)
144
+ `);
145
+ const currentConfig = getConfig();
146
+ if (currentConfig.embeddingPreset && currentConfig.embeddingPreset !== "en") {
147
+ const presetLabels = {
148
+ multilingual: "multilingual (multilingual-e5-small)",
149
+ ko: "Korean (ko-sroberta-multitask)"
150
+ };
151
+ w(` Embeddings: ${presetLabels[currentConfig.embeddingPreset] ?? currentConfig.embeddingPreset}
152
+ `);
153
+ }
154
+ if (claudeCode) {
155
+ const cc = result.integrations.claudeCode;
156
+ if (cc.hooks) {
157
+ w(" Stop Hook: ~/.claude/settings.json (auto-save on session end)\n");
158
+ } else if (!isClaudeCodeInstalled()) {
159
+ w(" Stop Hook: SKIPPED (Claude Code not found at ~/.claude)\n");
160
+ w(' Install Claude Code first, then run "memrosetta init --claude-code" again.\n');
161
+ }
162
+ if (cc.claudeMd) {
163
+ w(" CLAUDE.md: ~/.claude/CLAUDE.md (memory instructions added)\n");
164
+ } else {
165
+ w(" CLAUDE.md: already configured\n");
166
+ }
167
+ }
168
+ if (cursor) {
169
+ w(` Cursor MCP: ${result.integrations.cursor.path}
170
+ `);
171
+ if (result.integrations.cursor.cursorRules) {
172
+ w(` .cursorrules: ${result.integrations.cursor.cursorRulesPath} (memory instructions added)
173
+ `);
174
+ } else {
175
+ w(" .cursorrules: already configured\n");
176
+ }
177
+ }
178
+ if (codex) {
179
+ w(` Codex MCP: ${result.integrations.codex.path}
180
+ `);
181
+ if (result.integrations.codex.agentsMd) {
182
+ w(` AGENTS.md: ${result.integrations.codex.agentsMdPath} (memory instructions added)
183
+ `);
184
+ } else {
185
+ w(" AGENTS.md: already configured\n");
186
+ }
187
+ }
188
+ if (gemini) {
189
+ w(` Gemini MCP: ${result.integrations.gemini.path}
190
+ `);
191
+ if (result.integrations.gemini.geminiMd) {
192
+ w(` GEMINI.md: ${result.integrations.gemini.geminiMdPath} (memory instructions added)
193
+ `);
194
+ } else {
195
+ w(" GEMINI.md: already configured\n");
196
+ }
197
+ }
198
+ w("\n");
199
+ if (!claudeCode && !cursor && !codex && !gemini) {
200
+ w(" MCP is ready. Add --claude-code, --cursor, --codex, or --gemini for tool-specific setup.\n");
201
+ w(" Example: memrosetta init --claude-code\n");
202
+ w("\n");
203
+ }
204
+ if (claudeCode) {
205
+ w(" Restart Claude Code to activate.\n\n");
206
+ }
207
+ }
208
+ export {
209
+ run
210
+ };
@@ -0,0 +1,40 @@
1
+ import {
2
+ buildMemoryInvalidatedOp,
3
+ openCliSyncContext
4
+ } from "./chunk-GGXC7TAJ.js";
5
+ import {
6
+ optionalOption
7
+ } from "./chunk-US6CEDMU.js";
8
+ import {
9
+ getEngine,
10
+ resolveDbPath
11
+ } from "./chunk-47SU2YUJ.js";
12
+ import {
13
+ output,
14
+ outputError
15
+ } from "./chunk-ET6TNQOJ.js";
16
+ import "./chunk-WYHEAKPC.js";
17
+
18
+ // src/commands/invalidate.ts
19
+ async function run(options) {
20
+ const { args, format, db, noEmbeddings } = options;
21
+ const memoryId = args.find((a) => !a.startsWith("-"));
22
+ if (!memoryId) {
23
+ outputError("Usage: memrosetta invalidate <memoryId>", format);
24
+ process.exitCode = 1;
25
+ return;
26
+ }
27
+ const reason = optionalOption(args, "--reason");
28
+ const engine = await getEngine({ db, noEmbeddings });
29
+ const now = (/* @__PURE__ */ new Date()).toISOString();
30
+ await engine.invalidate(memoryId, reason);
31
+ const sync = await openCliSyncContext(resolveDbPath(db));
32
+ if (sync.enabled) {
33
+ sync.enqueue(buildMemoryInvalidatedOp(sync, memoryId, now, reason));
34
+ sync.close();
35
+ }
36
+ output({ memoryId, invalidated: true }, format);
37
+ }
38
+ export {
39
+ run
40
+ };
@@ -0,0 +1,40 @@
1
+ import {
2
+ buildMemoryInvalidatedOp,
3
+ openCliSyncContext
4
+ } from "./chunk-GZINXXM4.js";
5
+ import {
6
+ optionalOption
7
+ } from "./chunk-US6CEDMU.js";
8
+ import {
9
+ getEngine,
10
+ resolveDbPath
11
+ } from "./chunk-VMGX5FCY.js";
12
+ import {
13
+ output,
14
+ outputError
15
+ } from "./chunk-ET6TNQOJ.js";
16
+ import "./chunk-RZFCVYTK.js";
17
+
18
+ // src/commands/invalidate.ts
19
+ async function run(options) {
20
+ const { args, format, db, noEmbeddings } = options;
21
+ const memoryId = args.find((a) => !a.startsWith("-"));
22
+ if (!memoryId) {
23
+ outputError("Usage: memrosetta invalidate <memoryId>", format);
24
+ process.exitCode = 1;
25
+ return;
26
+ }
27
+ const reason = optionalOption(args, "--reason");
28
+ const engine = await getEngine({ db, noEmbeddings });
29
+ const now = (/* @__PURE__ */ new Date()).toISOString();
30
+ await engine.invalidate(memoryId, reason);
31
+ const sync = await openCliSyncContext(resolveDbPath(db));
32
+ if (sync.enabled) {
33
+ sync.enqueue(buildMemoryInvalidatedOp(sync, memoryId, now, reason));
34
+ sync.close();
35
+ }
36
+ output({ memoryId, invalidated: true }, format);
37
+ }
38
+ export {
39
+ run
40
+ };
@@ -0,0 +1,37 @@
1
+ import {
2
+ optionalOption
3
+ } from "./chunk-US6CEDMU.js";
4
+ import {
5
+ getEngine
6
+ } from "./chunk-VMGX5FCY.js";
7
+ import {
8
+ output
9
+ } from "./chunk-ET6TNQOJ.js";
10
+ import {
11
+ getDefaultUserId
12
+ } from "./chunk-RZFCVYTK.js";
13
+
14
+ // src/commands/maintain.ts
15
+ async function run(options) {
16
+ const { args, format, db, noEmbeddings } = options;
17
+ const userId = optionalOption(args, "--user") ?? getDefaultUserId();
18
+ const engine = await getEngine({ db, noEmbeddings });
19
+ const result = await engine.maintain(userId);
20
+ if (format === "text") {
21
+ process.stdout.write(`Maintenance completed for user: ${userId}
22
+ `);
23
+ process.stdout.write(` Activation scores updated: ${result.activationUpdated}
24
+ `);
25
+ process.stdout.write(` Tiers updated: ${result.tiersUpdated}
26
+ `);
27
+ process.stdout.write(` Groups compressed: ${result.compressed}
28
+ `);
29
+ process.stdout.write(` Memories archived: ${result.removed}
30
+ `);
31
+ return;
32
+ }
33
+ output({ userId, ...result }, format);
34
+ }
35
+ export {
36
+ run
37
+ };
@@ -0,0 +1,37 @@
1
+ import {
2
+ optionalOption
3
+ } from "./chunk-US6CEDMU.js";
4
+ import {
5
+ getEngine
6
+ } from "./chunk-47SU2YUJ.js";
7
+ import {
8
+ output
9
+ } from "./chunk-ET6TNQOJ.js";
10
+ import {
11
+ getDefaultUserId
12
+ } from "./chunk-WYHEAKPC.js";
13
+
14
+ // src/commands/maintain.ts
15
+ async function run(options) {
16
+ const { args, format, db, noEmbeddings } = options;
17
+ const userId = optionalOption(args, "--user") ?? getDefaultUserId();
18
+ const engine = await getEngine({ db, noEmbeddings });
19
+ const result = await engine.maintain(userId);
20
+ if (format === "text") {
21
+ process.stdout.write(`Maintenance completed for user: ${userId}
22
+ `);
23
+ process.stdout.write(` Activation scores updated: ${result.activationUpdated}
24
+ `);
25
+ process.stdout.write(` Tiers updated: ${result.tiersUpdated}
26
+ `);
27
+ process.stdout.write(` Groups compressed: ${result.compressed}
28
+ `);
29
+ process.stdout.write(` Memories archived: ${result.removed}
30
+ `);
31
+ return;
32
+ }
33
+ output({ userId, ...result }, format);
34
+ }
35
+ export {
36
+ run
37
+ };