memorix 1.2.2 → 1.2.4

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 (163) hide show
  1. package/CHANGELOG.md +27 -0
  2. package/README.md +3 -3
  3. package/README.zh-CN.md +3 -3
  4. package/TEAM.md +86 -86
  5. package/dist/cli/index.js +5199 -4726
  6. package/dist/cli/index.js.map +1 -1
  7. package/dist/index.js +428 -49
  8. package/dist/index.js.map +1 -1
  9. package/dist/maintenance-runner.js +97 -18
  10. package/dist/maintenance-runner.js.map +1 -1
  11. package/dist/memcode-runtime/CHANGELOG.md +27 -0
  12. package/dist/sdk.js +428 -49
  13. package/dist/sdk.js.map +1 -1
  14. package/docs/1.2.4-PERSISTENT-MEMORY-DELIVERY.md +86 -0
  15. package/docs/AGENT_OPERATOR_PLAYBOOK.md +13 -1
  16. package/docs/API_REFERENCE.md +13 -3
  17. package/docs/DESIGN_DECISIONS.md +357 -357
  18. package/docs/dev-log/progress.txt +60 -9
  19. package/package.json +1 -1
  20. package/plugins/codex/memorix/.codex-plugin/plugin.json +1 -1
  21. package/src/audit/index.ts +156 -156
  22. package/src/cli/capability-map.ts +1 -1
  23. package/src/cli/command-guide.ts +4 -1
  24. package/src/cli/commands/agent-integrations.ts +5 -1
  25. package/src/cli/commands/audit-list.ts +89 -89
  26. package/src/cli/commands/background.ts +659 -659
  27. package/src/cli/commands/codegraph.ts +1 -1
  28. package/src/cli/commands/context.ts +9 -1
  29. package/src/cli/commands/formation.ts +48 -48
  30. package/src/cli/commands/git-hook-install.ts +111 -111
  31. package/src/cli/commands/handoff.ts +54 -54
  32. package/src/cli/commands/hooks-status.ts +63 -63
  33. package/src/cli/commands/ingest-commit.ts +153 -153
  34. package/src/cli/commands/ingest-image.ts +66 -66
  35. package/src/cli/commands/ingest-log.ts +180 -180
  36. package/src/cli/commands/ingest.ts +44 -44
  37. package/src/cli/commands/integrate-shared.ts +15 -15
  38. package/src/cli/commands/lock.ts +82 -82
  39. package/src/cli/commands/message.ts +104 -104
  40. package/src/cli/commands/poll.ts +58 -58
  41. package/src/cli/commands/purge-all-memory.ts +85 -85
  42. package/src/cli/commands/purge-project-memory.ts +83 -83
  43. package/src/cli/commands/reasoning.ts +118 -118
  44. package/src/cli/commands/resume.ts +31 -0
  45. package/src/cli/commands/serve-shared.ts +118 -118
  46. package/src/cli/commands/session.ts +15 -7
  47. package/src/cli/commands/skills.ts +114 -114
  48. package/src/cli/commands/task.ts +167 -167
  49. package/src/cli/commands/transfer.ts +47 -47
  50. package/src/cli/commands/uninstall-project-artifacts.ts +85 -85
  51. package/src/cli/index.ts +3 -1
  52. package/src/cli/tui/ChatView.tsx +234 -234
  53. package/src/cli/tui/CommandBar.tsx +312 -312
  54. package/src/cli/tui/ContextRail.tsx +118 -118
  55. package/src/cli/tui/HeaderBar.tsx +72 -72
  56. package/src/cli/tui/LogoBanner.tsx +51 -51
  57. package/src/cli/tui/Sidebar.tsx +179 -179
  58. package/src/cli/tui/index.ts +41 -41
  59. package/src/cli/tui/markdown-render.tsx +371 -371
  60. package/src/cli/tui/session-service.ts +3 -2
  61. package/src/cli/tui/use-mouse.ts +157 -157
  62. package/src/cli/tui/useNavigation.ts +56 -56
  63. package/src/cli/update-checker.ts +211 -211
  64. package/src/cli/version.ts +7 -7
  65. package/src/cli/workbench.ts +1 -1
  66. package/src/codegraph/auto-context.ts +54 -1
  67. package/src/codegraph/task-lens.ts +29 -0
  68. package/src/compact/token-budget.ts +89 -74
  69. package/src/config/toml-loader.ts +9 -5
  70. package/src/dashboard/project-classification.ts +64 -64
  71. package/src/embedding/fastembed-provider.ts +142 -142
  72. package/src/embedding/transformers-provider.ts +111 -111
  73. package/src/git/extractor.ts +209 -209
  74. package/src/git/hooks-path.ts +85 -85
  75. package/src/hooks/handler.ts +127 -66
  76. package/src/hooks/installers/index.ts +5 -4
  77. package/src/hooks/official-skills.ts +6 -4
  78. package/src/hooks/pattern-detector.ts +173 -173
  79. package/src/hooks/rules/memorix-agent-rules.md +9 -7
  80. package/src/hooks/significance-filter.ts +250 -250
  81. package/src/knowledge/context-assembly.ts +4 -1
  82. package/src/knowledge/workset.ts +89 -1
  83. package/src/llm/memory-manager.ts +328 -328
  84. package/src/llm/provider.ts +885 -885
  85. package/src/llm/quality.ts +248 -248
  86. package/src/memory/attribution-guard.ts +249 -249
  87. package/src/memory/disclosure-policy.ts +135 -135
  88. package/src/memory/entity-extractor.ts +197 -197
  89. package/src/memory/formation/evaluate.ts +217 -217
  90. package/src/memory/formation/extract.ts +361 -361
  91. package/src/memory/formation/index.ts +417 -417
  92. package/src/memory/formation/resolve.ts +344 -344
  93. package/src/memory/formation/types.ts +315 -315
  94. package/src/memory/freshness.ts +122 -122
  95. package/src/memory/graph.ts +197 -197
  96. package/src/memory/refs.ts +94 -94
  97. package/src/memory/secret-filter.ts +79 -79
  98. package/src/memory/session.ts +158 -9
  99. package/src/multimodal/image-loader.ts +143 -143
  100. package/src/orchestrate/adapters/claude-stream.ts +192 -192
  101. package/src/orchestrate/adapters/claude.ts +111 -111
  102. package/src/orchestrate/adapters/codex-stream.ts +134 -134
  103. package/src/orchestrate/adapters/codex.ts +41 -41
  104. package/src/orchestrate/adapters/gemini-stream.ts +166 -166
  105. package/src/orchestrate/adapters/gemini.ts +42 -42
  106. package/src/orchestrate/adapters/index.ts +73 -73
  107. package/src/orchestrate/adapters/opencode-stream.ts +143 -143
  108. package/src/orchestrate/adapters/opencode.ts +47 -47
  109. package/src/orchestrate/adapters/spawn-helper.ts +286 -286
  110. package/src/orchestrate/adapters/types.ts +77 -77
  111. package/src/orchestrate/capability-router.ts +284 -284
  112. package/src/orchestrate/context-compact.ts +188 -188
  113. package/src/orchestrate/cost-tracker.ts +219 -219
  114. package/src/orchestrate/error-recovery.ts +191 -191
  115. package/src/orchestrate/evidence.ts +140 -140
  116. package/src/orchestrate/ledger.ts +110 -110
  117. package/src/orchestrate/memorix-bridge.ts +343 -343
  118. package/src/orchestrate/output-budget.ts +80 -80
  119. package/src/orchestrate/permission.ts +152 -152
  120. package/src/orchestrate/pipeline-trace.ts +131 -131
  121. package/src/orchestrate/prompt-builder.ts +155 -155
  122. package/src/orchestrate/ring-buffer.ts +37 -37
  123. package/src/orchestrate/task-graph.ts +389 -389
  124. package/src/orchestrate/worktree.ts +232 -232
  125. package/src/project/aliases.ts +374 -374
  126. package/src/project/detector.ts +268 -268
  127. package/src/rules/adapters/claude-code.ts +99 -99
  128. package/src/rules/adapters/codex.ts +97 -97
  129. package/src/rules/adapters/copilot.ts +124 -124
  130. package/src/rules/adapters/cursor.ts +114 -114
  131. package/src/rules/adapters/kiro.ts +126 -126
  132. package/src/rules/adapters/trae.ts +56 -56
  133. package/src/rules/adapters/windsurf.ts +83 -83
  134. package/src/rules/syncer.ts +235 -235
  135. package/src/sdk.ts +299 -299
  136. package/src/search/intent-detector.ts +289 -289
  137. package/src/search/query-expansion.ts +52 -52
  138. package/src/server/formation-timeout.ts +27 -27
  139. package/src/server.ts +144 -10
  140. package/src/skills/mini-skills.ts +386 -386
  141. package/src/store/bun-sqlite-compat.ts +118 -15
  142. package/src/store/chat-store.ts +119 -119
  143. package/src/store/graph-store.ts +249 -249
  144. package/src/store/mini-skill-store.ts +349 -349
  145. package/src/store/persistence-json.ts +212 -212
  146. package/src/store/persistence.ts +291 -291
  147. package/src/store/project-affinity.ts +195 -195
  148. package/src/store/sqlite-db.ts +3 -3
  149. package/src/team/event-bus.ts +76 -76
  150. package/src/team/file-locks.ts +173 -173
  151. package/src/team/handoff.ts +161 -161
  152. package/src/team/messages.ts +203 -203
  153. package/src/team/poll.ts +132 -132
  154. package/src/team/tasks.ts +211 -211
  155. package/src/workspace/mcp-adapters/codex.ts +191 -191
  156. package/src/workspace/mcp-adapters/copilot.ts +105 -105
  157. package/src/workspace/mcp-adapters/cursor.ts +53 -53
  158. package/src/workspace/mcp-adapters/kiro.ts +64 -64
  159. package/src/workspace/mcp-adapters/opencode.ts +123 -123
  160. package/src/workspace/mcp-adapters/trae.ts +134 -134
  161. package/src/workspace/mcp-adapters/windsurf.ts +91 -91
  162. package/src/workspace/sanitizer.ts +60 -60
  163. package/src/workspace/workflow-sync.ts +131 -131
@@ -1,4 +1,4 @@
1
- import { defineCommand } from 'citty';
1
+ import { defineCommand } from 'citty';
2
2
  import {
3
3
  emitError,
4
4
  emitResult,
@@ -8,194 +8,194 @@ import {
8
8
  resolveCliActorId,
9
9
  shortId,
10
10
  } from './operator-shared.js';
11
-
12
- export default defineCommand({
13
- meta: {
14
- name: 'task',
15
- description: 'Create, claim, complete, and inspect team tasks',
16
- },
17
- args: {
18
- description: { type: 'string', description: 'Task description (for create)' },
19
- deps: { type: 'string', description: 'Comma-separated dependency task IDs' },
20
- taskId: { type: 'string', description: 'Task ID for claim, complete, fail, or release' },
21
- agentId: { type: 'string', description: 'Agent ID for claim, complete, fail, release, or agent-aware list' },
22
- result: { type: 'string', description: 'Completion or failure summary' },
23
- status: { type: 'string', description: 'Filter by status for list' },
24
- available: { type: 'boolean', description: 'Show only claimable tasks' },
25
- metadata: { type: 'string', description: 'JSON metadata object for create' },
26
- requiredRole: { type: 'string', description: 'Required role for this task' },
27
- preferredRole: { type: 'string', description: 'Preferred role for this task' },
28
- json: { type: 'boolean', description: 'Emit machine-readable JSON output' },
29
- },
30
- run: async ({ args }) => {
31
- const action = (args._ as string[])?.[0] || '';
32
- const asJson = !!args.json;
33
-
34
- try {
11
+
12
+ export default defineCommand({
13
+ meta: {
14
+ name: 'task',
15
+ description: 'Create, claim, complete, and inspect team tasks',
16
+ },
17
+ args: {
18
+ description: { type: 'string', description: 'Task description (for create)' },
19
+ deps: { type: 'string', description: 'Comma-separated dependency task IDs' },
20
+ taskId: { type: 'string', description: 'Task ID for claim, complete, fail, or release' },
21
+ agentId: { type: 'string', description: 'Agent ID for claim, complete, fail, release, or agent-aware list' },
22
+ result: { type: 'string', description: 'Completion or failure summary' },
23
+ status: { type: 'string', description: 'Filter by status for list' },
24
+ available: { type: 'boolean', description: 'Show only claimable tasks' },
25
+ metadata: { type: 'string', description: 'JSON metadata object for create' },
26
+ requiredRole: { type: 'string', description: 'Required role for this task' },
27
+ preferredRole: { type: 'string', description: 'Preferred role for this task' },
28
+ json: { type: 'boolean', description: 'Emit machine-readable JSON output' },
29
+ },
30
+ run: async ({ args }) => {
31
+ const action = (args._ as string[])?.[0] || '';
32
+ const asJson = !!args.json;
33
+
34
+ try {
35
35
  const { project, teamStore, identity } = await getCliProjectContext();
36
36
  const agentId = resolveCliActorId(args.agentId, identity);
37
-
38
- switch (action) {
39
- case 'create': {
40
- if (!args.description) {
41
- emitError('description is required for "memorix task create"', asJson);
42
- return;
43
- }
44
-
45
- const metadata = parseOptionalJsonObject(args.metadata as string | undefined, 'metadata');
46
- if (metadata) {
47
- const { checkPipelineGuards } = await import('../../orchestrate/planner.js');
48
- const guard = checkPipelineGuards({
49
- existingTasks: teamStore.listTasks(project.id),
50
- newTaskMeta: metadata,
51
- });
52
- if (!guard.allowed) {
53
- emitError(guard.reason, asJson);
54
- return;
55
- }
56
- }
57
-
58
- const task = teamStore.createTask({
59
- projectId: project.id,
60
- description: args.description as string,
61
- deps: parseCsvList(args.deps as string | undefined),
62
- metadata,
37
+
38
+ switch (action) {
39
+ case 'create': {
40
+ if (!args.description) {
41
+ emitError('description is required for "memorix task create"', asJson);
42
+ return;
43
+ }
44
+
45
+ const metadata = parseOptionalJsonObject(args.metadata as string | undefined, 'metadata');
46
+ if (metadata) {
47
+ const { checkPipelineGuards } = await import('../../orchestrate/planner.js');
48
+ const guard = checkPipelineGuards({
49
+ existingTasks: teamStore.listTasks(project.id),
50
+ newTaskMeta: metadata,
51
+ });
52
+ if (!guard.allowed) {
53
+ emitError(guard.reason, asJson);
54
+ return;
55
+ }
56
+ }
57
+
58
+ const task = teamStore.createTask({
59
+ projectId: project.id,
60
+ description: args.description as string,
61
+ deps: parseCsvList(args.deps as string | undefined),
62
+ metadata,
63
63
  createdBy: agentId,
64
- requiredRole: args.requiredRole as string | undefined,
65
- preferredRole: args.preferredRole as string | undefined,
66
- });
67
- const deps = teamStore.getTaskDeps(task.task_id);
68
- emitResult(
69
- { project, task, deps },
70
- `Task created: ${shortId(task.task_id)} "${task.description}"${deps.length > 0 ? ` (${deps.length} dep)` : ''}`,
71
- asJson,
72
- );
73
- return;
74
- }
75
-
76
- case 'claim': {
64
+ requiredRole: args.requiredRole as string | undefined,
65
+ preferredRole: args.preferredRole as string | undefined,
66
+ });
67
+ const deps = teamStore.getTaskDeps(task.task_id);
68
+ emitResult(
69
+ { project, task, deps },
70
+ `Task created: ${shortId(task.task_id)} "${task.description}"${deps.length > 0 ? ` (${deps.length} dep)` : ''}`,
71
+ asJson,
72
+ );
73
+ return;
74
+ }
75
+
76
+ case 'claim': {
77
77
  if (!args.taskId || !agentId) {
78
78
  emitError('taskId and an active CLI identity or agentId are required for "memorix task claim"', asJson);
79
79
  return;
80
80
  }
81
81
  const result = teamStore.claimTask(args.taskId as string, agentId);
82
- if (!result.success) {
83
- emitError(result.reason ?? 'Unable to claim task', asJson);
84
- return;
85
- }
86
- emitResult(
87
- { project, result },
88
- `Task claimed: ${result.task?.description ?? args.taskId}${result.hint ? `\nHint: ${result.hint}` : ''}`,
89
- asJson,
90
- );
91
- return;
92
- }
93
-
94
- case 'complete': {
82
+ if (!result.success) {
83
+ emitError(result.reason ?? 'Unable to claim task', asJson);
84
+ return;
85
+ }
86
+ emitResult(
87
+ { project, result },
88
+ `Task claimed: ${result.task?.description ?? args.taskId}${result.hint ? `\nHint: ${result.hint}` : ''}`,
89
+ asJson,
90
+ );
91
+ return;
92
+ }
93
+
94
+ case 'complete': {
95
95
  if (!args.taskId || !agentId || !args.result) {
96
96
  emitError('taskId, result, and an active CLI identity or agentId are required for "memorix task complete"', asJson);
97
97
  return;
98
98
  }
99
99
  const result = teamStore.completeTask(args.taskId as string, agentId, args.result as string);
100
- if (!result.success) {
101
- emitError(result.reason ?? 'Unable to complete task', asJson);
102
- return;
103
- }
104
- emitResult(
105
- { project, task: teamStore.getTask(args.taskId as string), result: args.result },
106
- `Task completed: ${shortId(args.taskId as string)}`,
107
- asJson,
108
- );
109
- return;
110
- }
111
-
112
- case 'fail': {
100
+ if (!result.success) {
101
+ emitError(result.reason ?? 'Unable to complete task', asJson);
102
+ return;
103
+ }
104
+ emitResult(
105
+ { project, task: teamStore.getTask(args.taskId as string), result: args.result },
106
+ `Task completed: ${shortId(args.taskId as string)}`,
107
+ asJson,
108
+ );
109
+ return;
110
+ }
111
+
112
+ case 'fail': {
113
113
  if (!args.taskId || !agentId || !args.result) {
114
114
  emitError('taskId, result, and an active CLI identity or agentId are required for "memorix task fail"', asJson);
115
115
  return;
116
116
  }
117
117
  const result = teamStore.failTask(args.taskId as string, agentId, args.result as string);
118
- if (!result.success) {
119
- emitError(result.reason ?? 'Unable to fail task', asJson);
120
- return;
121
- }
122
- emitResult(
123
- { project, task: teamStore.getTask(args.taskId as string), result: args.result },
124
- `Task failed: ${shortId(args.taskId as string)}`,
125
- asJson,
126
- );
127
- return;
128
- }
129
-
130
- case 'release': {
118
+ if (!result.success) {
119
+ emitError(result.reason ?? 'Unable to fail task', asJson);
120
+ return;
121
+ }
122
+ emitResult(
123
+ { project, task: teamStore.getTask(args.taskId as string), result: args.result },
124
+ `Task failed: ${shortId(args.taskId as string)}`,
125
+ asJson,
126
+ );
127
+ return;
128
+ }
129
+
130
+ case 'release': {
131
131
  if (!args.taskId || !agentId) {
132
132
  emitError('taskId and an active CLI identity or agentId are required for "memorix task release"', asJson);
133
133
  return;
134
134
  }
135
135
  const result = teamStore.releaseTask(args.taskId as string, agentId);
136
- if (!result.success) {
137
- emitError(result.reason ?? 'Unable to release task', asJson);
138
- return;
139
- }
140
- emitResult(
141
- { project, task: teamStore.getTask(args.taskId as string) },
142
- `Task released: ${shortId(args.taskId as string)}`,
143
- asJson,
144
- );
145
- return;
146
- }
147
-
148
- case 'list': {
149
- const tasks =
136
+ if (!result.success) {
137
+ emitError(result.reason ?? 'Unable to release task', asJson);
138
+ return;
139
+ }
140
+ emitResult(
141
+ { project, task: teamStore.getTask(args.taskId as string) },
142
+ `Task released: ${shortId(args.taskId as string)}`,
143
+ asJson,
144
+ );
145
+ return;
146
+ }
147
+
148
+ case 'list': {
149
+ const tasks =
150
150
  args.available && agentId
151
151
  ? teamStore.listTasksForAgent(project.id, agentId)
152
- : teamStore.listTasks(
153
- project.id,
154
- args.available
155
- ? { available: true }
156
- : args.status
157
- ? { status: args.status as string }
158
- : undefined,
159
- );
160
- const payload = tasks.map((task) => ({
161
- ...task,
162
- deps: teamStore.getTaskDeps(task.task_id),
163
- }));
164
- emitResult(
165
- { project, tasks: payload },
166
- tasks.length === 0
167
- ? 'No tasks found.'
168
- : payload
169
- .map((task) => {
170
- const assignee = task.assignee_agent_id
171
- ? teamStore.getAgent(task.assignee_agent_id)?.name ?? shortId(task.assignee_agent_id)
172
- : 'unassigned';
173
- const roleTag = task.required_role
174
- ? `[${task.required_role}${task.preferred_role && task.preferred_role !== task.required_role ? ` -> ${task.preferred_role}` : ''}]`
175
- : task.preferred_role
176
- ? `[~${task.preferred_role}]`
177
- : '';
178
- return `- ${task.status}: ${shortId(task.task_id)} "${task.description}" - ${assignee} ${roleTag}`.trim();
179
- })
180
- .join('\n'),
181
- asJson,
182
- );
183
- return;
184
- }
185
-
186
- default:
187
- console.log('Memorix Task Commands');
188
- console.log('');
189
- console.log('Usage:');
190
- console.log(' memorix task create --description "..." [--agentId <id>] [--deps id1,id2]');
191
- console.log(' memorix task claim --taskId <id> --agentId <id>');
192
- console.log(' memorix task complete --taskId <id> --agentId <id> --result "..."');
193
- console.log(' memorix task fail --taskId <id> --agentId <id> --result "..."');
194
- console.log(' memorix task release --taskId <id> --agentId <id>');
195
- console.log(' memorix task list [--status pending|in_progress|completed|failed] [--available --agentId <id>]');
196
- }
197
- } catch (error) {
198
- emitError(error instanceof Error ? error.message : String(error), asJson);
199
- }
200
- },
201
- });
152
+ : teamStore.listTasks(
153
+ project.id,
154
+ args.available
155
+ ? { available: true }
156
+ : args.status
157
+ ? { status: args.status as string }
158
+ : undefined,
159
+ );
160
+ const payload = tasks.map((task) => ({
161
+ ...task,
162
+ deps: teamStore.getTaskDeps(task.task_id),
163
+ }));
164
+ emitResult(
165
+ { project, tasks: payload },
166
+ tasks.length === 0
167
+ ? 'No tasks found.'
168
+ : payload
169
+ .map((task) => {
170
+ const assignee = task.assignee_agent_id
171
+ ? teamStore.getAgent(task.assignee_agent_id)?.name ?? shortId(task.assignee_agent_id)
172
+ : 'unassigned';
173
+ const roleTag = task.required_role
174
+ ? `[${task.required_role}${task.preferred_role && task.preferred_role !== task.required_role ? ` -> ${task.preferred_role}` : ''}]`
175
+ : task.preferred_role
176
+ ? `[~${task.preferred_role}]`
177
+ : '';
178
+ return `- ${task.status}: ${shortId(task.task_id)} "${task.description}" - ${assignee} ${roleTag}`.trim();
179
+ })
180
+ .join('\n'),
181
+ asJson,
182
+ );
183
+ return;
184
+ }
185
+
186
+ default:
187
+ console.log('Memorix Task Commands');
188
+ console.log('');
189
+ console.log('Usage:');
190
+ console.log(' memorix task create --description "..." [--agentId <id>] [--deps id1,id2]');
191
+ console.log(' memorix task claim --taskId <id> --agentId <id>');
192
+ console.log(' memorix task complete --taskId <id> --agentId <id> --result "..."');
193
+ console.log(' memorix task fail --taskId <id> --agentId <id> --result "..."');
194
+ console.log(' memorix task release --taskId <id> --agentId <id>');
195
+ console.log(' memorix task list [--status pending|in_progress|completed|failed] [--available --agentId <id>]');
196
+ }
197
+ } catch (error) {
198
+ emitError(error instanceof Error ? error.message : String(error), asJson);
199
+ }
200
+ },
201
+ });
@@ -35,28 +35,28 @@ async function writeExportPayload(projectRoot: string, output: string, payload:
35
35
  await fs.writeFile(outputPath, payload, 'utf8');
36
36
  return outputPath;
37
37
  }
38
-
39
- export default defineCommand({
40
- meta: {
41
- name: 'transfer',
42
- description: 'Export or import project memory snapshots',
43
- },
44
- args: {
38
+
39
+ export default defineCommand({
40
+ meta: {
41
+ name: 'transfer',
42
+ description: 'Export or import project memory snapshots',
43
+ },
44
+ args: {
45
45
  format: { type: 'string', description: 'Export format: json or markdown' },
46
46
  data: { type: 'string', description: 'JSON payload from a previous export' },
47
47
  file: { type: 'string', description: 'File containing a JSON payload to import' },
48
48
  stdin: { type: 'boolean', description: 'Read a JSON import payload from standard input' },
49
49
  out: { type: 'string', description: 'Write the export payload to this file instead of stdout' },
50
- json: { type: 'boolean', description: 'Emit machine-readable JSON output' },
51
- },
52
- run: async ({ args }) => {
53
- const action = (args._ as string[])?.[0] || '';
54
- const asJson = !!args.json;
55
-
56
- try {
50
+ json: { type: 'boolean', description: 'Emit machine-readable JSON output' },
51
+ },
52
+ run: async ({ args }) => {
53
+ const action = (args._ as string[])?.[0] || '';
54
+ const asJson = !!args.json;
55
+
56
+ try {
57
57
  const { project, dataDir, reader } = await getCliProjectContext();
58
-
59
- switch (action) {
58
+
59
+ switch (action) {
60
60
  case 'export': {
61
61
  const format = (args.format as string | undefined) === 'markdown' ? 'markdown' : 'json';
62
62
  if (format === 'markdown') {
@@ -87,40 +87,40 @@ export default defineCommand({
87
87
  serialized,
88
88
  asJson,
89
89
  );
90
- return;
91
- }
92
-
93
- case 'import': {
90
+ return;
91
+ }
92
+
93
+ case 'import': {
94
94
  const raw = (await readImportPayload(args as Record<string, unknown>, project.rootPath)).trim();
95
95
  if (!raw) throw new Error('Import payload is empty.');
96
- let parsed: Parameters<typeof importFromJson>[1];
97
- try {
98
- parsed = JSON.parse(raw);
99
- } catch (error) {
100
- emitError(`Invalid JSON import payload: ${error instanceof Error ? error.message : String(error)}`, asJson);
101
- return;
102
- }
103
- const result = await importFromJson(dataDir, parsed);
104
- emitResult(
105
- { project, result },
106
- `Import complete: ${result.observationsImported} observation(s), ${result.sessionsImported} session(s), ${result.skipped} skipped.`,
107
- asJson,
108
- );
109
- return;
110
- }
111
-
112
- default:
113
- console.log('Memorix Transfer Commands');
114
- console.log('');
115
- console.log('Usage:');
96
+ let parsed: Parameters<typeof importFromJson>[1];
97
+ try {
98
+ parsed = JSON.parse(raw);
99
+ } catch (error) {
100
+ emitError(`Invalid JSON import payload: ${error instanceof Error ? error.message : String(error)}`, asJson);
101
+ return;
102
+ }
103
+ const result = await importFromJson(dataDir, parsed);
104
+ emitResult(
105
+ { project, result },
106
+ `Import complete: ${result.observationsImported} observation(s), ${result.sessionsImported} session(s), ${result.skipped} skipped.`,
107
+ asJson,
108
+ );
109
+ return;
110
+ }
111
+
112
+ default:
113
+ console.log('Memorix Transfer Commands');
114
+ console.log('');
115
+ console.log('Usage:');
116
116
  console.log(' memorix transfer export [--format json|markdown] [--out ./.memorix-export.json]');
117
117
  console.log(' memorix transfer import --file ./.memorix-export.json');
118
118
  console.log(' memorix transfer import --stdin');
119
119
  console.log(' memorix transfer import --data "<json>"');
120
- }
121
- } catch (error) {
122
- emitError(error instanceof Error ? error.message : String(error), asJson);
123
- }
124
- },
125
- });
126
-
120
+ }
121
+ } catch (error) {
122
+ emitError(error instanceof Error ? error.message : String(error), asJson);
123
+ }
124
+ },
125
+ });
126
+
@@ -1,86 +1,86 @@
1
- /**
2
- * CLI Command: memorix uninstall project-artifacts
3
- *
4
- * Uninstall project-level hook files only (preserve memory data).
5
- */
6
-
7
- import { defineCommand } from 'citty';
8
- import * as p from '@clack/prompts';
9
-
10
- export default defineCommand({
11
- meta: {
12
- name: 'project-artifacts',
13
- description: 'Uninstall project hook files (preserve memory data)',
14
- },
15
- args: {
16
- agent: {
17
- type: 'string',
18
- description: 'Target agent (all if omitted)',
19
- required: false,
20
- },
21
- },
22
- run: async ({ args }) => {
23
- const { detectInstalledAgents, uninstallHooks } = await import('../../hooks/installers/index.js');
24
- const os = await import('node:os');
25
- let cwd: string;
26
- try { cwd = process.cwd(); } catch { cwd = os.homedir(); }
27
-
28
- p.intro('Uninstall Project Artifacts');
29
-
30
- let agents: string[];
31
- if (args.agent) {
32
- agents = [args.agent];
33
- } else {
34
- agents = await detectInstalledAgents();
35
- }
36
-
37
- if (agents.length === 0) {
38
- console.log('No supported agents detected.');
39
- return;
40
- }
41
-
42
- // Show what will be uninstalled
43
- console.log('');
44
- console.log('Will uninstall hooks for:');
45
- for (const agent of agents) {
46
- console.log(` - ${agent}`);
47
- }
48
- console.log('');
49
- console.log('This will remove hook files from the project:');
50
- console.log(' - .claude/settings.local.json');
51
- console.log(' - .windsurf/hooks.json');
52
- console.log(' - .cursor/hooks.json');
53
- console.log(' - .github/hooks/memorix.json');
54
- console.log(' - .cursor/rules/memorix.mdc');
55
- console.log(' - etc.');
56
- console.log('');
57
- console.log('Memory data will be preserved.');
58
- console.log('');
59
-
60
- // Confirm
61
- const confirmed = await p.confirm({
62
- message: 'Continue uninstall?',
63
- });
64
-
65
- if (p.isCancel(confirmed) || !confirmed) {
66
- p.outro('Uninstall cancelled.');
67
- return;
68
- }
69
-
70
- // Uninstall
71
- for (const agent of agents) {
72
- const ok = await uninstallHooks(
73
- agent as import('../../hooks/types.js').AgentName,
74
- cwd,
75
- false, // project-level
76
- );
77
- if (ok) {
78
- console.log(`[OK] ${agent}: hooks removed`);
79
- } else {
1
+ /**
2
+ * CLI Command: memorix uninstall project-artifacts
3
+ *
4
+ * Uninstall project-level hook files only (preserve memory data).
5
+ */
6
+
7
+ import { defineCommand } from 'citty';
8
+ import * as p from '@clack/prompts';
9
+
10
+ export default defineCommand({
11
+ meta: {
12
+ name: 'project-artifacts',
13
+ description: 'Uninstall project hook files (preserve memory data)',
14
+ },
15
+ args: {
16
+ agent: {
17
+ type: 'string',
18
+ description: 'Target agent (all if omitted)',
19
+ required: false,
20
+ },
21
+ },
22
+ run: async ({ args }) => {
23
+ const { detectInstalledAgents, uninstallHooks } = await import('../../hooks/installers/index.js');
24
+ const os = await import('node:os');
25
+ let cwd: string;
26
+ try { cwd = process.cwd(); } catch { cwd = os.homedir(); }
27
+
28
+ p.intro('Uninstall Project Artifacts');
29
+
30
+ let agents: string[];
31
+ if (args.agent) {
32
+ agents = [args.agent];
33
+ } else {
34
+ agents = await detectInstalledAgents();
35
+ }
36
+
37
+ if (agents.length === 0) {
38
+ console.log('No supported agents detected.');
39
+ return;
40
+ }
41
+
42
+ // Show what will be uninstalled
43
+ console.log('');
44
+ console.log('Will uninstall hooks for:');
45
+ for (const agent of agents) {
46
+ console.log(` - ${agent}`);
47
+ }
48
+ console.log('');
49
+ console.log('This will remove hook files from the project:');
50
+ console.log(' - .claude/settings.local.json');
51
+ console.log(' - .windsurf/hooks.json');
52
+ console.log(' - .cursor/hooks.json');
53
+ console.log(' - .github/hooks/memorix.json');
54
+ console.log(' - .cursor/rules/memorix.mdc');
55
+ console.log(' - etc.');
56
+ console.log('');
57
+ console.log('Memory data will be preserved.');
58
+ console.log('');
59
+
60
+ // Confirm
61
+ const confirmed = await p.confirm({
62
+ message: 'Continue uninstall?',
63
+ });
64
+
65
+ if (p.isCancel(confirmed) || !confirmed) {
66
+ p.outro('Uninstall cancelled.');
67
+ return;
68
+ }
69
+
70
+ // Uninstall
71
+ for (const agent of agents) {
72
+ const ok = await uninstallHooks(
73
+ agent as import('../../hooks/types.js').AgentName,
74
+ cwd,
75
+ false, // project-level
76
+ );
77
+ if (ok) {
78
+ console.log(`[OK] ${agent}: hooks removed`);
79
+ } else {
80
80
  console.log(`[SKIP] ${agent}: no hooks found`);
81
- }
82
- }
83
-
84
- p.outro('Project artifacts uninstalled. Memory data preserved.');
85
- },
86
- });
81
+ }
82
+ }
83
+
84
+ p.outro('Project artifacts uninstalled. Memory data preserved.');
85
+ },
86
+ });