memorix 1.2.3 → 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 (39) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/README.md +3 -3
  3. package/README.zh-CN.md +3 -3
  4. package/dist/cli/index.js +5187 -4730
  5. package/dist/cli/index.js.map +1 -1
  6. package/dist/index.js +416 -46
  7. package/dist/index.js.map +1 -1
  8. package/dist/maintenance-runner.js +97 -18
  9. package/dist/maintenance-runner.js.map +1 -1
  10. package/dist/memcode-runtime/CHANGELOG.md +20 -0
  11. package/dist/sdk.js +416 -46
  12. package/dist/sdk.js.map +1 -1
  13. package/docs/1.2.4-PERSISTENT-MEMORY-DELIVERY.md +86 -0
  14. package/docs/AGENT_OPERATOR_PLAYBOOK.md +13 -1
  15. package/docs/API_REFERENCE.md +13 -3
  16. package/docs/dev-log/progress.txt +48 -7
  17. package/package.json +1 -1
  18. package/plugins/codex/memorix/.codex-plugin/plugin.json +1 -1
  19. package/src/cli/capability-map.ts +1 -1
  20. package/src/cli/command-guide.ts +4 -1
  21. package/src/cli/commands/agent-integrations.ts +5 -1
  22. package/src/cli/commands/codegraph.ts +1 -1
  23. package/src/cli/commands/context.ts +9 -1
  24. package/src/cli/commands/resume.ts +31 -0
  25. package/src/cli/index.ts +3 -1
  26. package/src/codegraph/auto-context.ts +54 -1
  27. package/src/codegraph/task-lens.ts +29 -0
  28. package/src/compact/token-budget.ts +16 -1
  29. package/src/config/toml-loader.ts +9 -5
  30. package/src/hooks/handler.ts +127 -66
  31. package/src/hooks/installers/index.ts +5 -4
  32. package/src/hooks/official-skills.ts +6 -4
  33. package/src/hooks/rules/memorix-agent-rules.md +9 -7
  34. package/src/knowledge/context-assembly.ts +4 -1
  35. package/src/knowledge/workset.ts +89 -1
  36. package/src/memory/session.ts +144 -10
  37. package/src/server.ts +137 -8
  38. package/src/store/bun-sqlite-compat.ts +118 -15
  39. package/src/store/sqlite-db.ts +3 -3
@@ -30,36 +30,111 @@ var init_esm_shims = __esm({
30
30
 
31
31
  // src/store/bun-sqlite-compat.ts
32
32
  import { createRequire } from "module";
33
+ function loadNodeSqlite() {
34
+ const nodeSqlite = requireFromHere("node:sqlite");
35
+ return nodeSqlite.DatabaseSync;
36
+ }
37
+ function isNativeBindingFailure(error) {
38
+ const message = error instanceof Error ? error.message : String(error);
39
+ return /could not locate the bindings file|better_sqlite3\.node|module did not self-register/i.test(message);
40
+ }
41
+ function addCompatibility(db2) {
42
+ if (!db2.pragma) {
43
+ db2.pragma = function(pragma, options) {
44
+ const statement = db2.prepare(`PRAGMA ${pragma}`);
45
+ if (options?.simple) {
46
+ const result = statement.get();
47
+ return result ? Object.values(result)[0] : void 0;
48
+ }
49
+ return statement.all();
50
+ };
51
+ }
52
+ if (!db2.transaction) {
53
+ let depth = 0;
54
+ let sequence = 0;
55
+ db2.transaction = function(fn) {
56
+ return (...args) => {
57
+ const outermost = depth === 0;
58
+ const savepoint = `memorix_tx_${++sequence}`;
59
+ if (outermost) {
60
+ db2.exec("BEGIN IMMEDIATE");
61
+ } else {
62
+ db2.exec(`SAVEPOINT ${savepoint}`);
63
+ }
64
+ depth += 1;
65
+ try {
66
+ const result = fn(...args);
67
+ if (result && typeof result.then === "function") {
68
+ throw new Error("[memorix] SQLite transactions must be synchronous");
69
+ }
70
+ depth -= 1;
71
+ if (outermost) {
72
+ db2.exec("COMMIT");
73
+ } else {
74
+ db2.exec(`RELEASE SAVEPOINT ${savepoint}`);
75
+ }
76
+ return result;
77
+ } catch (error) {
78
+ depth -= 1;
79
+ try {
80
+ if (outermost) {
81
+ db2.exec("ROLLBACK");
82
+ } else {
83
+ db2.exec(`ROLLBACK TO SAVEPOINT ${savepoint}`);
84
+ db2.exec(`RELEASE SAVEPOINT ${savepoint}`);
85
+ }
86
+ } catch {
87
+ }
88
+ throw error;
89
+ }
90
+ };
91
+ };
92
+ }
93
+ return db2;
94
+ }
95
+ function instantiateDatabase(Sqlite, filePath, options) {
96
+ return driver === "node:sqlite" && options === void 0 ? new Sqlite(filePath) : new Sqlite(filePath, options);
97
+ }
33
98
  function loadSqlite() {
34
99
  if (Database) return Database;
100
+ if (process.env.MEMORIX_SQLITE_DRIVER === "node") {
101
+ Database = loadNodeSqlite();
102
+ driver = "node:sqlite";
103
+ return Database;
104
+ }
35
105
  try {
36
106
  Database = requireFromHere("better-sqlite3");
107
+ driver = "better-sqlite3";
108
+ return Database;
109
+ } catch {
110
+ }
111
+ try {
112
+ Database = loadNodeSqlite();
113
+ driver = "node:sqlite";
37
114
  return Database;
38
115
  } catch {
39
116
  }
40
117
  try {
41
118
  const bunSqlite = requireFromHere("bun:sqlite");
42
119
  Database = bunSqlite.Database;
120
+ driver = "bun:sqlite";
43
121
  return Database;
44
122
  } catch {
45
- throw new Error("[memorix] Neither better-sqlite3 nor bun:sqlite is available");
123
+ throw new Error("[memorix] SQLite is unavailable (better-sqlite3, node:sqlite, and bun:sqlite failed)");
46
124
  }
47
125
  }
48
126
  function createDatabase(path13, options) {
49
127
  const Sqlite = loadSqlite();
50
- const db2 = new Sqlite(path13, options);
51
- if (!db2.pragma) {
52
- db2.pragma = function(pragma, options2) {
53
- if (options2 && options2.simple) {
54
- const result = db2.prepare(`PRAGMA ${pragma}`).get();
55
- return result ? Object.values(result)[0] : void 0;
56
- }
57
- return db2.prepare(`PRAGMA ${pragma}`).all();
58
- };
128
+ try {
129
+ return addCompatibility(instantiateDatabase(Sqlite, path13, options));
130
+ } catch (error) {
131
+ if (driver !== "better-sqlite3" || !isNativeBindingFailure(error)) throw error;
132
+ Database = loadNodeSqlite();
133
+ driver = "node:sqlite";
134
+ return addCompatibility(instantiateDatabase(Database, path13, options));
59
135
  }
60
- return db2;
61
136
  }
62
- var Database, requireFromHere;
137
+ var Database, driver, requireFromHere;
63
138
  var init_bun_sqlite_compat = __esm({
64
139
  "src/store/bun-sqlite-compat.ts"() {
65
140
  "use strict";
@@ -78,7 +153,7 @@ function loadBetterSqlite3() {
78
153
  BetterSqlite3 = loadSqlite();
79
154
  return BetterSqlite3;
80
155
  } catch {
81
- throw new Error("[memorix] SQLite is not available (neither better-sqlite3 nor bun:sqlite)");
156
+ throw new Error("[memorix] SQLite is not available (better-sqlite3, node:sqlite, and bun:sqlite all failed)");
82
157
  }
83
158
  }
84
159
  function hasColumn(db2, table, column) {
@@ -1163,6 +1238,9 @@ function parseTomlValue(raw, filePath, line) {
1163
1238
  if (raw.startsWith('"') && raw.endsWith('"')) {
1164
1239
  return raw.slice(1, -1).replace(/\\"/g, '"').replace(/\\\\/g, "\\");
1165
1240
  }
1241
+ if (raw.startsWith("'") && raw.endsWith("'")) {
1242
+ return raw.slice(1, -1);
1243
+ }
1166
1244
  if (raw === "true") return true;
1167
1245
  if (raw === "false") return false;
1168
1246
  if (/^-?\d+$/.test(raw)) return Number.parseInt(raw, 10);
@@ -1175,7 +1253,7 @@ function parseTomlValue(raw, filePath, line) {
1175
1253
  throw new Error(`Unsupported TOML value in ${filePath}:${line}`);
1176
1254
  }
1177
1255
  function stripComment(line) {
1178
- let inString = false;
1256
+ let quote = null;
1179
1257
  let escaped = false;
1180
1258
  for (let i = 0; i < line.length; i++) {
1181
1259
  const char = line[i];
@@ -1183,15 +1261,16 @@ function stripComment(line) {
1183
1261
  escaped = false;
1184
1262
  continue;
1185
1263
  }
1186
- if (char === "\\" && inString) {
1264
+ if (char === "\\" && quote === '"') {
1187
1265
  escaped = true;
1188
1266
  continue;
1189
1267
  }
1190
- if (char === '"') {
1191
- inString = !inString;
1268
+ if (char === '"' || char === "'") {
1269
+ if (quote === char) quote = null;
1270
+ else if (quote === null) quote = char;
1192
1271
  continue;
1193
1272
  }
1194
- if (char === "#" && !inString) {
1273
+ if (char === "#" && quote === null) {
1195
1274
  return line.slice(0, i);
1196
1275
  }
1197
1276
  }