@askexenow/exe-os 0.9.7 → 0.9.9
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/dist/bin/backfill-conversations.js +953 -105
- package/dist/bin/backfill-responses.js +952 -104
- package/dist/bin/backfill-vectors.js +956 -108
- package/dist/bin/cleanup-stale-review-tasks.js +802 -58
- package/dist/bin/cli.js +2292 -1070
- package/dist/bin/exe-agent-config.js +157 -101
- package/dist/bin/exe-agent.js +55 -29
- package/dist/bin/exe-assign.js +940 -92
- package/dist/bin/exe-boot.js +1424 -442
- package/dist/bin/exe-call.js +240 -141
- package/dist/bin/exe-cloud.js +198 -70
- package/dist/bin/exe-dispatch.js +951 -192
- package/dist/bin/exe-doctor.js +791 -51
- package/dist/bin/exe-export-behaviors.js +790 -42
- package/dist/bin/exe-forget.js +771 -31
- package/dist/bin/exe-gateway.js +1592 -521
- package/dist/bin/exe-heartbeat.js +850 -109
- package/dist/bin/exe-kill.js +783 -35
- package/dist/bin/exe-launch-agent.js +1030 -107
- package/dist/bin/exe-link.js +916 -110
- package/dist/bin/exe-new-employee.js +526 -217
- package/dist/bin/exe-pending-messages.js +1046 -62
- package/dist/bin/exe-pending-notifications.js +1318 -111
- package/dist/bin/exe-pending-reviews.js +1040 -72
- package/dist/bin/exe-rename.js +772 -59
- package/dist/bin/exe-review.js +772 -32
- package/dist/bin/exe-search.js +982 -128
- package/dist/bin/exe-session-cleanup.js +1180 -306
- package/dist/bin/exe-settings.js +185 -105
- package/dist/bin/exe-start-codex.js +886 -132
- package/dist/bin/exe-start-opencode.js +873 -119
- package/dist/bin/exe-status.js +803 -59
- package/dist/bin/exe-team.js +772 -32
- package/dist/bin/git-sweep.js +1046 -223
- package/dist/bin/graph-backfill.js +779 -31
- package/dist/bin/graph-export.js +785 -37
- package/dist/bin/install.js +632 -200
- package/dist/bin/scan-tasks.js +1055 -232
- package/dist/bin/setup.js +1419 -320
- package/dist/bin/shard-migrate.js +783 -35
- package/dist/bin/update.js +138 -49
- package/dist/bin/wiki-sync.js +782 -34
- package/dist/gateway/index.js +1444 -449
- package/dist/hooks/bug-report-worker.js +1141 -269
- package/dist/hooks/codex-stop-task-finalizer.js +4678 -0
- package/dist/hooks/commit-complete.js +1044 -221
- package/dist/hooks/error-recall.js +989 -135
- package/dist/hooks/exe-heartbeat-hook.js +99 -75
- package/dist/hooks/ingest-worker.js +4176 -3226
- package/dist/hooks/ingest.js +920 -168
- package/dist/hooks/instructions-loaded.js +874 -70
- package/dist/hooks/notification.js +860 -56
- package/dist/hooks/post-compact.js +881 -73
- package/dist/hooks/pre-compact.js +1050 -227
- package/dist/hooks/pre-tool-use.js +1084 -159
- package/dist/hooks/prompt-ingest-worker.js +1089 -164
- package/dist/hooks/prompt-submit.js +1469 -515
- package/dist/hooks/response-ingest-worker.js +1104 -179
- package/dist/hooks/session-end.js +1085 -251
- package/dist/hooks/session-start.js +1241 -231
- package/dist/hooks/stop.js +935 -109
- package/dist/hooks/subagent-stop.js +881 -73
- package/dist/hooks/summary-worker.js +1323 -307
- package/dist/index.js +1449 -452
- package/dist/lib/agent-config.js +28 -6
- package/dist/lib/cloud-sync.js +909 -115
- package/dist/lib/config.js +30 -10
- package/dist/lib/consolidation.js +42 -9
- package/dist/lib/database.js +739 -33
- package/dist/lib/db-daemon-client.js +73 -19
- package/dist/lib/db.js +2359 -0
- package/dist/lib/device-registry.js +760 -47
- package/dist/lib/embedder.js +201 -73
- package/dist/lib/employee-templates.js +30 -4
- package/dist/lib/employees.js +290 -86
- package/dist/lib/exe-daemon-client.js +187 -83
- package/dist/lib/exe-daemon.js +1696 -616
- package/dist/lib/hybrid-search.js +982 -128
- package/dist/lib/identity.js +43 -13
- package/dist/lib/license.js +133 -48
- package/dist/lib/messaging.js +167 -80
- package/dist/lib/reminders.js +35 -5
- package/dist/lib/schedules.js +772 -32
- package/dist/lib/skill-learning.js +54 -7
- package/dist/lib/store.js +779 -31
- package/dist/lib/task-router.js +94 -73
- package/dist/lib/tasks.js +298 -225
- package/dist/lib/tmux-routing.js +246 -172
- package/dist/lib/token-spend.js +52 -14
- package/dist/mcp/server.js +2893 -850
- package/dist/mcp/tools/complete-reminder.js +35 -5
- package/dist/mcp/tools/create-reminder.js +35 -5
- package/dist/mcp/tools/create-task.js +507 -323
- package/dist/mcp/tools/deactivate-behavior.js +40 -10
- package/dist/mcp/tools/list-reminders.js +35 -5
- package/dist/mcp/tools/list-tasks.js +277 -104
- package/dist/mcp/tools/send-message.js +129 -56
- package/dist/mcp/tools/update-task.js +1864 -188
- package/dist/runtime/index.js +1083 -259
- package/dist/tui/App.js +1501 -434
- package/package.json +3 -2
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
var __defProp = Object.defineProperty;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
3
4
|
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
5
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
4
6
|
var __esm = (fn, res) => function __init() {
|
|
5
7
|
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
6
8
|
};
|
|
@@ -8,6 +10,15 @@ var __export = (target, all) => {
|
|
|
8
10
|
for (var name in all)
|
|
9
11
|
__defProp(target, name, { get: all[name], enumerable: true });
|
|
10
12
|
};
|
|
13
|
+
var __copyProps = (to, from, except, desc) => {
|
|
14
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
15
|
+
for (let key of __getOwnPropNames(from))
|
|
16
|
+
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
17
|
+
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
18
|
+
}
|
|
19
|
+
return to;
|
|
20
|
+
};
|
|
21
|
+
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
11
22
|
|
|
12
23
|
// src/lib/db-retry.ts
|
|
13
24
|
function isBusyError(err) {
|
|
@@ -64,9 +75,34 @@ var init_db_retry = __esm({
|
|
|
64
75
|
}
|
|
65
76
|
});
|
|
66
77
|
|
|
78
|
+
// src/lib/secure-files.ts
|
|
79
|
+
import { chmodSync, existsSync, mkdirSync } from "fs";
|
|
80
|
+
import { chmod, mkdir } from "fs/promises";
|
|
81
|
+
async function ensurePrivateDir(dirPath) {
|
|
82
|
+
await mkdir(dirPath, { recursive: true, mode: PRIVATE_DIR_MODE });
|
|
83
|
+
try {
|
|
84
|
+
await chmod(dirPath, PRIVATE_DIR_MODE);
|
|
85
|
+
} catch {
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
async function enforcePrivateFile(filePath) {
|
|
89
|
+
try {
|
|
90
|
+
await chmod(filePath, PRIVATE_FILE_MODE);
|
|
91
|
+
} catch {
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
var PRIVATE_DIR_MODE, PRIVATE_FILE_MODE;
|
|
95
|
+
var init_secure_files = __esm({
|
|
96
|
+
"src/lib/secure-files.ts"() {
|
|
97
|
+
"use strict";
|
|
98
|
+
PRIVATE_DIR_MODE = 448;
|
|
99
|
+
PRIVATE_FILE_MODE = 384;
|
|
100
|
+
}
|
|
101
|
+
});
|
|
102
|
+
|
|
67
103
|
// src/lib/config.ts
|
|
68
|
-
import { readFile, writeFile
|
|
69
|
-
import { readFileSync, existsSync, renameSync } from "fs";
|
|
104
|
+
import { readFile, writeFile } from "fs/promises";
|
|
105
|
+
import { readFileSync, existsSync as existsSync2, renameSync } from "fs";
|
|
70
106
|
import path from "path";
|
|
71
107
|
import os from "os";
|
|
72
108
|
function resolveDataDir() {
|
|
@@ -74,7 +110,7 @@ function resolveDataDir() {
|
|
|
74
110
|
if (process.env.EXE_MEM_DIR) return process.env.EXE_MEM_DIR;
|
|
75
111
|
const newDir = path.join(os.homedir(), ".exe-os");
|
|
76
112
|
const legacyDir = path.join(os.homedir(), ".exe-mem");
|
|
77
|
-
if (!
|
|
113
|
+
if (!existsSync2(newDir) && existsSync2(legacyDir)) {
|
|
78
114
|
try {
|
|
79
115
|
renameSync(legacyDir, newDir);
|
|
80
116
|
process.stderr.write(`[exe-os] Migrated data directory: ~/.exe-mem \u2192 ~/.exe-os
|
|
@@ -137,9 +173,9 @@ function normalizeAutoUpdate(raw) {
|
|
|
137
173
|
}
|
|
138
174
|
async function loadConfig() {
|
|
139
175
|
const dir = process.env.EXE_OS_DIR ?? process.env.EXE_MEM_DIR ?? EXE_AI_DIR;
|
|
140
|
-
await
|
|
176
|
+
await ensurePrivateDir(dir);
|
|
141
177
|
const configPath = path.join(dir, "config.json");
|
|
142
|
-
if (!
|
|
178
|
+
if (!existsSync2(configPath)) {
|
|
143
179
|
return { ...DEFAULT_CONFIG, dbPath: path.join(dir, "memories.db") };
|
|
144
180
|
}
|
|
145
181
|
const raw = await readFile(configPath, "utf-8");
|
|
@@ -152,6 +188,7 @@ async function loadConfig() {
|
|
|
152
188
|
`);
|
|
153
189
|
try {
|
|
154
190
|
await writeFile(configPath, JSON.stringify(migratedCfg, null, 2) + "\n");
|
|
191
|
+
await enforcePrivateFile(configPath);
|
|
155
192
|
} catch {
|
|
156
193
|
}
|
|
157
194
|
}
|
|
@@ -171,6 +208,7 @@ var EXE_AI_DIR, DB_PATH, MODELS_DIR, CONFIG_PATH, LEGACY_LANCE_PATH, CURRENT_CON
|
|
|
171
208
|
var init_config = __esm({
|
|
172
209
|
"src/lib/config.ts"() {
|
|
173
210
|
"use strict";
|
|
211
|
+
init_secure_files();
|
|
174
212
|
EXE_AI_DIR = resolveDataDir();
|
|
175
213
|
DB_PATH = path.join(EXE_AI_DIR, "memories.db");
|
|
176
214
|
MODELS_DIR = path.join(EXE_AI_DIR, "models");
|
|
@@ -249,7 +287,7 @@ var init_config = __esm({
|
|
|
249
287
|
|
|
250
288
|
// src/lib/employees.ts
|
|
251
289
|
import { readFile as readFile2, writeFile as writeFile2, mkdir as mkdir2 } from "fs/promises";
|
|
252
|
-
import { existsSync as
|
|
290
|
+
import { existsSync as existsSync3, symlinkSync, readlinkSync, readFileSync as readFileSync2, renameSync as renameSync2, unlinkSync, writeFileSync } from "fs";
|
|
253
291
|
import { execSync } from "child_process";
|
|
254
292
|
import path2 from "path";
|
|
255
293
|
import os2 from "os";
|
|
@@ -266,14 +304,14 @@ function getCoordinatorName(employees = loadEmployeesSync()) {
|
|
|
266
304
|
return getCoordinatorEmployee(employees)?.name ?? DEFAULT_COORDINATOR_TEMPLATE_NAME;
|
|
267
305
|
}
|
|
268
306
|
function loadEmployeesSync(employeesPath = EMPLOYEES_PATH) {
|
|
269
|
-
if (!
|
|
307
|
+
if (!existsSync3(employeesPath)) return [];
|
|
270
308
|
try {
|
|
271
309
|
return JSON.parse(readFileSync2(employeesPath, "utf-8"));
|
|
272
310
|
} catch {
|
|
273
311
|
return [];
|
|
274
312
|
}
|
|
275
313
|
}
|
|
276
|
-
var EMPLOYEES_PATH, DEFAULT_COORDINATOR_TEMPLATE_NAME, COORDINATOR_ROLE;
|
|
314
|
+
var EMPLOYEES_PATH, DEFAULT_COORDINATOR_TEMPLATE_NAME, COORDINATOR_ROLE, IDENTITY_DIR;
|
|
277
315
|
var init_employees = __esm({
|
|
278
316
|
"src/lib/employees.ts"() {
|
|
279
317
|
"use strict";
|
|
@@ -281,12 +319,609 @@ var init_employees = __esm({
|
|
|
281
319
|
EMPLOYEES_PATH = path2.join(EXE_AI_DIR, "exe-employees.json");
|
|
282
320
|
DEFAULT_COORDINATOR_TEMPLATE_NAME = "exe";
|
|
283
321
|
COORDINATOR_ROLE = "COO";
|
|
322
|
+
IDENTITY_DIR = path2.join(EXE_AI_DIR, "identity");
|
|
323
|
+
}
|
|
324
|
+
});
|
|
325
|
+
|
|
326
|
+
// src/lib/database-adapter.ts
|
|
327
|
+
import os3 from "os";
|
|
328
|
+
import path3 from "path";
|
|
329
|
+
import { createRequire } from "module";
|
|
330
|
+
import { pathToFileURL } from "url";
|
|
331
|
+
function quotedIdentifier(identifier) {
|
|
332
|
+
return `"${identifier.replace(/"/g, '""')}"`;
|
|
333
|
+
}
|
|
334
|
+
function unqualifiedTableName(name) {
|
|
335
|
+
const raw = name.trim().replace(/^"|"$/g, "");
|
|
336
|
+
const parts = raw.split(".");
|
|
337
|
+
return parts[parts.length - 1].replace(/^"|"$/g, "").toLowerCase();
|
|
338
|
+
}
|
|
339
|
+
function stripTrailingSemicolon(sql) {
|
|
340
|
+
return sql.trim().replace(/;+\s*$/u, "");
|
|
341
|
+
}
|
|
342
|
+
function appendClause(sql, clause) {
|
|
343
|
+
const trimmed = stripTrailingSemicolon(sql);
|
|
344
|
+
const returningMatch = /\sRETURNING\b[\s\S]*$/iu.exec(trimmed);
|
|
345
|
+
if (!returningMatch) {
|
|
346
|
+
return `${trimmed}${clause}`;
|
|
347
|
+
}
|
|
348
|
+
const idx = returningMatch.index;
|
|
349
|
+
return `${trimmed.slice(0, idx)}${clause}${trimmed.slice(idx)}`;
|
|
350
|
+
}
|
|
351
|
+
function normalizeStatement(stmt) {
|
|
352
|
+
if (typeof stmt === "string") {
|
|
353
|
+
return { kind: "positional", sql: stmt, args: [] };
|
|
354
|
+
}
|
|
355
|
+
const sql = stmt.sql;
|
|
356
|
+
if (Array.isArray(stmt.args) || stmt.args === void 0) {
|
|
357
|
+
return { kind: "positional", sql, args: stmt.args ?? [] };
|
|
358
|
+
}
|
|
359
|
+
return { kind: "named", sql, args: stmt.args };
|
|
360
|
+
}
|
|
361
|
+
function rewriteBooleanLiterals(sql) {
|
|
362
|
+
let out = sql;
|
|
363
|
+
for (const column of BOOLEAN_COLUMN_NAMES) {
|
|
364
|
+
const scoped = `((?:\\b[a-z_][a-z0-9_]*\\.)?${column})`;
|
|
365
|
+
out = out.replace(new RegExp(`${scoped}\\s*=\\s*0\\b`, "giu"), "$1 = FALSE");
|
|
366
|
+
out = out.replace(new RegExp(`${scoped}\\s*=\\s*1\\b`, "giu"), "$1 = TRUE");
|
|
367
|
+
out = out.replace(new RegExp(`${scoped}\\s*!=\\s*0\\b`, "giu"), "$1 != FALSE");
|
|
368
|
+
out = out.replace(new RegExp(`${scoped}\\s*!=\\s*1\\b`, "giu"), "$1 != TRUE");
|
|
369
|
+
out = out.replace(new RegExp(`${scoped}\\s*<>\\s*0\\b`, "giu"), "$1 <> FALSE");
|
|
370
|
+
out = out.replace(new RegExp(`${scoped}\\s*<>\\s*1\\b`, "giu"), "$1 <> TRUE");
|
|
371
|
+
}
|
|
372
|
+
return out;
|
|
373
|
+
}
|
|
374
|
+
function rewriteInsertOrIgnore(sql) {
|
|
375
|
+
if (!/^\s*INSERT\s+OR\s+IGNORE\s+INTO\b/iu.test(sql)) {
|
|
376
|
+
return sql;
|
|
377
|
+
}
|
|
378
|
+
const replaced = sql.replace(/^\s*INSERT\s+OR\s+IGNORE\s+INTO\b/iu, "INSERT INTO");
|
|
379
|
+
return /\bON\s+CONFLICT\b/iu.test(replaced) ? replaced : appendClause(replaced, " ON CONFLICT DO NOTHING");
|
|
380
|
+
}
|
|
381
|
+
function rewriteInsertOrReplace(sql) {
|
|
382
|
+
const match = /^\s*INSERT\s+OR\s+REPLACE\s+INTO\s+([A-Za-z0-9_."]+)\s*\(([^)]+)\)([\s\S]*)$/iu.exec(sql);
|
|
383
|
+
if (!match) {
|
|
384
|
+
return sql;
|
|
385
|
+
}
|
|
386
|
+
const rawTable = match[1];
|
|
387
|
+
const rawColumns = match[2];
|
|
388
|
+
const remainder = match[3];
|
|
389
|
+
const tableName = unqualifiedTableName(rawTable);
|
|
390
|
+
const conflictKeys = UPSERT_KEYS[tableName];
|
|
391
|
+
if (!conflictKeys?.length) {
|
|
392
|
+
return sql;
|
|
393
|
+
}
|
|
394
|
+
const columns = rawColumns.split(",").map((col) => col.trim().replace(/^"|"$/g, ""));
|
|
395
|
+
const updateColumns = columns.filter((col) => !conflictKeys.includes(col));
|
|
396
|
+
const conflictTarget = conflictKeys.map(quotedIdentifier).join(", ");
|
|
397
|
+
const updateClause = updateColumns.length === 0 ? " DO NOTHING" : ` DO UPDATE SET ${updateColumns.map((col) => `${quotedIdentifier(col)} = EXCLUDED.${quotedIdentifier(col)}`).join(", ")}`;
|
|
398
|
+
return `INSERT INTO ${rawTable} (${rawColumns})${appendClause(remainder, ` ON CONFLICT (${conflictTarget})${updateClause}`)}`;
|
|
399
|
+
}
|
|
400
|
+
function rewriteSql(sql) {
|
|
401
|
+
let out = sql;
|
|
402
|
+
out = out.replace(/\bdatetime\(\s*['"]now['"]\s*\)/giu, "CURRENT_TIMESTAMP");
|
|
403
|
+
out = out.replace(/\bvector32\s*\(\s*\?\s*\)/giu, "?");
|
|
404
|
+
out = rewriteBooleanLiterals(out);
|
|
405
|
+
out = rewriteInsertOrReplace(out);
|
|
406
|
+
out = rewriteInsertOrIgnore(out);
|
|
407
|
+
return stripTrailingSemicolon(out);
|
|
408
|
+
}
|
|
409
|
+
function toBoolean(value) {
|
|
410
|
+
if (value === null || value === void 0) return value;
|
|
411
|
+
if (typeof value === "boolean") return value;
|
|
412
|
+
if (typeof value === "number") return value !== 0;
|
|
413
|
+
if (typeof value === "bigint") return value !== 0n;
|
|
414
|
+
if (typeof value === "string") {
|
|
415
|
+
const normalized = value.trim().toLowerCase();
|
|
416
|
+
if (normalized === "0" || normalized === "false") return false;
|
|
417
|
+
if (normalized === "1" || normalized === "true") return true;
|
|
418
|
+
}
|
|
419
|
+
return Boolean(value);
|
|
420
|
+
}
|
|
421
|
+
function countQuestionMarks(sql, end) {
|
|
422
|
+
let count = 0;
|
|
423
|
+
let inSingle = false;
|
|
424
|
+
let inDouble = false;
|
|
425
|
+
let inLineComment = false;
|
|
426
|
+
let inBlockComment = false;
|
|
427
|
+
for (let i = 0; i < end; i++) {
|
|
428
|
+
const ch = sql[i];
|
|
429
|
+
const next = sql[i + 1];
|
|
430
|
+
if (inLineComment) {
|
|
431
|
+
if (ch === "\n") inLineComment = false;
|
|
432
|
+
continue;
|
|
433
|
+
}
|
|
434
|
+
if (inBlockComment) {
|
|
435
|
+
if (ch === "*" && next === "/") {
|
|
436
|
+
inBlockComment = false;
|
|
437
|
+
i += 1;
|
|
438
|
+
}
|
|
439
|
+
continue;
|
|
440
|
+
}
|
|
441
|
+
if (!inSingle && !inDouble && ch === "-" && next === "-") {
|
|
442
|
+
inLineComment = true;
|
|
443
|
+
i += 1;
|
|
444
|
+
continue;
|
|
445
|
+
}
|
|
446
|
+
if (!inSingle && !inDouble && ch === "/" && next === "*") {
|
|
447
|
+
inBlockComment = true;
|
|
448
|
+
i += 1;
|
|
449
|
+
continue;
|
|
450
|
+
}
|
|
451
|
+
if (!inDouble && ch === "'" && sql[i - 1] !== "\\") {
|
|
452
|
+
inSingle = !inSingle;
|
|
453
|
+
continue;
|
|
454
|
+
}
|
|
455
|
+
if (!inSingle && ch === '"' && sql[i - 1] !== "\\") {
|
|
456
|
+
inDouble = !inDouble;
|
|
457
|
+
continue;
|
|
458
|
+
}
|
|
459
|
+
if (!inSingle && !inDouble && ch === "?") {
|
|
460
|
+
count += 1;
|
|
461
|
+
}
|
|
462
|
+
}
|
|
463
|
+
return count;
|
|
464
|
+
}
|
|
465
|
+
function findBooleanPlaceholderIndexes(sql) {
|
|
466
|
+
const indexes = /* @__PURE__ */ new Set();
|
|
467
|
+
for (const column of BOOLEAN_COLUMN_NAMES) {
|
|
468
|
+
const pattern = new RegExp(`(?:\\b[a-z_][a-z0-9_]*\\.)?${column}\\s*=\\s*\\?`, "giu");
|
|
469
|
+
for (const match of sql.matchAll(pattern)) {
|
|
470
|
+
const matchText = match[0];
|
|
471
|
+
const qIndex = match.index + matchText.lastIndexOf("?");
|
|
472
|
+
indexes.add(countQuestionMarks(sql, qIndex + 1));
|
|
473
|
+
}
|
|
474
|
+
}
|
|
475
|
+
return indexes;
|
|
476
|
+
}
|
|
477
|
+
function coerceInsertBooleanArgs(sql, args) {
|
|
478
|
+
const match = /^\s*INSERT(?:\s+OR\s+(?:IGNORE|REPLACE))?\s+INTO\s+([A-Za-z0-9_."]+)\s*\(([^)]+)\)/iu.exec(sql);
|
|
479
|
+
if (!match) return;
|
|
480
|
+
const rawTable = match[1];
|
|
481
|
+
const rawColumns = match[2];
|
|
482
|
+
const boolColumns = BOOLEAN_COLUMNS_BY_TABLE[unqualifiedTableName(rawTable)];
|
|
483
|
+
if (!boolColumns?.size) return;
|
|
484
|
+
const columns = rawColumns.split(",").map((col) => col.trim().replace(/^"|"$/g, ""));
|
|
485
|
+
for (const [index, column] of columns.entries()) {
|
|
486
|
+
if (boolColumns.has(column) && index < args.length) {
|
|
487
|
+
args[index] = toBoolean(args[index]);
|
|
488
|
+
}
|
|
489
|
+
}
|
|
490
|
+
}
|
|
491
|
+
function coerceUpdateBooleanArgs(sql, args) {
|
|
492
|
+
const match = /^\s*UPDATE\s+([A-Za-z0-9_."]+)\s+SET\s+([\s\S]+?)(?:\s+WHERE\b|$)/iu.exec(sql);
|
|
493
|
+
if (!match) return;
|
|
494
|
+
const rawTable = match[1];
|
|
495
|
+
const setClause = match[2];
|
|
496
|
+
const boolColumns = BOOLEAN_COLUMNS_BY_TABLE[unqualifiedTableName(rawTable)];
|
|
497
|
+
if (!boolColumns?.size) return;
|
|
498
|
+
const assignments = setClause.split(",");
|
|
499
|
+
let placeholderIndex = 0;
|
|
500
|
+
for (const assignment of assignments) {
|
|
501
|
+
if (!assignment.includes("?")) continue;
|
|
502
|
+
placeholderIndex += 1;
|
|
503
|
+
const colMatch = /^\s*(?:[A-Za-z_][A-Za-z0-9_]*\.)?([A-Za-z_][A-Za-z0-9_]*)\s*=\s*\?/iu.exec(assignment);
|
|
504
|
+
if (colMatch && boolColumns.has(colMatch[1])) {
|
|
505
|
+
args[placeholderIndex - 1] = toBoolean(args[placeholderIndex - 1]);
|
|
506
|
+
}
|
|
507
|
+
}
|
|
508
|
+
}
|
|
509
|
+
function coerceBooleanArgs(sql, args) {
|
|
510
|
+
const nextArgs = [...args];
|
|
511
|
+
coerceInsertBooleanArgs(sql, nextArgs);
|
|
512
|
+
coerceUpdateBooleanArgs(sql, nextArgs);
|
|
513
|
+
const placeholderIndexes = findBooleanPlaceholderIndexes(sql);
|
|
514
|
+
for (const index of placeholderIndexes) {
|
|
515
|
+
if (index > 0 && index <= nextArgs.length) {
|
|
516
|
+
nextArgs[index - 1] = toBoolean(nextArgs[index - 1]);
|
|
517
|
+
}
|
|
518
|
+
}
|
|
519
|
+
return nextArgs;
|
|
520
|
+
}
|
|
521
|
+
function convertQuestionMarksToDollarParams(sql) {
|
|
522
|
+
let out = "";
|
|
523
|
+
let placeholder = 0;
|
|
524
|
+
let inSingle = false;
|
|
525
|
+
let inDouble = false;
|
|
526
|
+
let inLineComment = false;
|
|
527
|
+
let inBlockComment = false;
|
|
528
|
+
for (let i = 0; i < sql.length; i++) {
|
|
529
|
+
const ch = sql[i];
|
|
530
|
+
const next = sql[i + 1];
|
|
531
|
+
if (inLineComment) {
|
|
532
|
+
out += ch;
|
|
533
|
+
if (ch === "\n") inLineComment = false;
|
|
534
|
+
continue;
|
|
535
|
+
}
|
|
536
|
+
if (inBlockComment) {
|
|
537
|
+
out += ch;
|
|
538
|
+
if (ch === "*" && next === "/") {
|
|
539
|
+
out += next;
|
|
540
|
+
inBlockComment = false;
|
|
541
|
+
i += 1;
|
|
542
|
+
}
|
|
543
|
+
continue;
|
|
544
|
+
}
|
|
545
|
+
if (!inSingle && !inDouble && ch === "-" && next === "-") {
|
|
546
|
+
out += ch + next;
|
|
547
|
+
inLineComment = true;
|
|
548
|
+
i += 1;
|
|
549
|
+
continue;
|
|
550
|
+
}
|
|
551
|
+
if (!inSingle && !inDouble && ch === "/" && next === "*") {
|
|
552
|
+
out += ch + next;
|
|
553
|
+
inBlockComment = true;
|
|
554
|
+
i += 1;
|
|
555
|
+
continue;
|
|
556
|
+
}
|
|
557
|
+
if (!inDouble && ch === "'" && sql[i - 1] !== "\\") {
|
|
558
|
+
inSingle = !inSingle;
|
|
559
|
+
out += ch;
|
|
560
|
+
continue;
|
|
561
|
+
}
|
|
562
|
+
if (!inSingle && ch === '"' && sql[i - 1] !== "\\") {
|
|
563
|
+
inDouble = !inDouble;
|
|
564
|
+
out += ch;
|
|
565
|
+
continue;
|
|
566
|
+
}
|
|
567
|
+
if (!inSingle && !inDouble && ch === "?") {
|
|
568
|
+
placeholder += 1;
|
|
569
|
+
out += `$${placeholder}`;
|
|
570
|
+
continue;
|
|
571
|
+
}
|
|
572
|
+
out += ch;
|
|
573
|
+
}
|
|
574
|
+
return out;
|
|
575
|
+
}
|
|
576
|
+
function translateStatementForPostgres(stmt) {
|
|
577
|
+
const normalized = normalizeStatement(stmt);
|
|
578
|
+
if (normalized.kind === "named") {
|
|
579
|
+
throw new Error("Named SQL parameters are not supported by the Prisma adapter.");
|
|
580
|
+
}
|
|
581
|
+
const rewrittenSql = rewriteSql(normalized.sql);
|
|
582
|
+
const coercedArgs = coerceBooleanArgs(rewrittenSql, normalized.args);
|
|
583
|
+
return {
|
|
584
|
+
sql: convertQuestionMarksToDollarParams(rewrittenSql),
|
|
585
|
+
args: coercedArgs
|
|
586
|
+
};
|
|
587
|
+
}
|
|
588
|
+
function shouldBypassPostgres(stmt) {
|
|
589
|
+
const normalized = normalizeStatement(stmt);
|
|
590
|
+
if (normalized.kind === "named") {
|
|
591
|
+
return true;
|
|
592
|
+
}
|
|
593
|
+
return IMMEDIATE_FALLBACK_PATTERNS.some((pattern) => pattern.test(normalized.sql));
|
|
594
|
+
}
|
|
595
|
+
function shouldFallbackOnError(error) {
|
|
596
|
+
const message = error instanceof Error ? error.message : String(error);
|
|
597
|
+
return /42P01|42883|42601|does not exist|syntax error|not supported|Named SQL parameters are not supported/iu.test(message);
|
|
598
|
+
}
|
|
599
|
+
function isReadQuery(sql) {
|
|
600
|
+
const trimmed = sql.trimStart();
|
|
601
|
+
return /^(SELECT|WITH|SHOW|EXPLAIN|VALUES)\b/iu.test(trimmed) || /\bRETURNING\b/iu.test(trimmed);
|
|
602
|
+
}
|
|
603
|
+
function buildRow(row, columns) {
|
|
604
|
+
const values = columns.map((column) => row[column]);
|
|
605
|
+
return Object.assign(values, row);
|
|
606
|
+
}
|
|
607
|
+
function buildResultSet(rows, rowsAffected = 0) {
|
|
608
|
+
const columns = rows[0] ? Object.keys(rows[0]) : [];
|
|
609
|
+
const resultRows = rows.map((row) => buildRow(row, columns));
|
|
610
|
+
return {
|
|
611
|
+
columns,
|
|
612
|
+
columnTypes: columns.map(() => ""),
|
|
613
|
+
rows: resultRows,
|
|
614
|
+
rowsAffected,
|
|
615
|
+
lastInsertRowid: void 0,
|
|
616
|
+
toJSON() {
|
|
617
|
+
return {
|
|
618
|
+
columns,
|
|
619
|
+
columnTypes: columns.map(() => ""),
|
|
620
|
+
rows,
|
|
621
|
+
rowsAffected,
|
|
622
|
+
lastInsertRowid: void 0
|
|
623
|
+
};
|
|
624
|
+
}
|
|
625
|
+
};
|
|
626
|
+
}
|
|
627
|
+
async function loadPrismaClient() {
|
|
628
|
+
if (!prismaClientPromise) {
|
|
629
|
+
prismaClientPromise = (async () => {
|
|
630
|
+
const explicitPath = process.env.EXE_OS_PRISMA_CLIENT_PATH;
|
|
631
|
+
if (explicitPath) {
|
|
632
|
+
const module2 = await import(pathToFileURL(explicitPath).href);
|
|
633
|
+
const PrismaClient2 = module2.PrismaClient ?? module2.default?.PrismaClient;
|
|
634
|
+
if (!PrismaClient2) {
|
|
635
|
+
throw new Error(`No PrismaClient export found at ${explicitPath}`);
|
|
636
|
+
}
|
|
637
|
+
return new PrismaClient2();
|
|
638
|
+
}
|
|
639
|
+
const exeDbRoot = process.env.EXE_DB_ROOT ?? path3.join(os3.homedir(), "exe-db");
|
|
640
|
+
const requireFromExeDb = createRequire(path3.join(exeDbRoot, "package.json"));
|
|
641
|
+
const prismaEntry = requireFromExeDb.resolve("@prisma/client");
|
|
642
|
+
const module = await import(pathToFileURL(prismaEntry).href);
|
|
643
|
+
const PrismaClient = module.PrismaClient ?? module.default?.PrismaClient;
|
|
644
|
+
if (!PrismaClient) {
|
|
645
|
+
throw new Error(`No PrismaClient export found in ${prismaEntry}`);
|
|
646
|
+
}
|
|
647
|
+
return new PrismaClient();
|
|
648
|
+
})();
|
|
649
|
+
}
|
|
650
|
+
return prismaClientPromise;
|
|
651
|
+
}
|
|
652
|
+
async function ensureCompatibilityViews(prisma) {
|
|
653
|
+
if (!compatibilityBootstrapPromise) {
|
|
654
|
+
compatibilityBootstrapPromise = (async () => {
|
|
655
|
+
for (const mapping of VIEW_MAPPINGS) {
|
|
656
|
+
const relation = mapping.source.replace(/"/g, "");
|
|
657
|
+
const rows = await prisma.$queryRawUnsafe(
|
|
658
|
+
"SELECT to_regclass($1) AS regclass",
|
|
659
|
+
relation
|
|
660
|
+
);
|
|
661
|
+
if (!rows[0]?.regclass) {
|
|
662
|
+
continue;
|
|
663
|
+
}
|
|
664
|
+
await prisma.$executeRawUnsafe(
|
|
665
|
+
`CREATE OR REPLACE VIEW public.${quotedIdentifier(mapping.view)} AS SELECT * FROM ${mapping.source}`
|
|
666
|
+
);
|
|
667
|
+
}
|
|
668
|
+
})();
|
|
669
|
+
}
|
|
670
|
+
return compatibilityBootstrapPromise;
|
|
671
|
+
}
|
|
672
|
+
async function executeOnPrisma(executor, stmt) {
|
|
673
|
+
const translated = translateStatementForPostgres(stmt);
|
|
674
|
+
if (isReadQuery(translated.sql)) {
|
|
675
|
+
const rows = await executor.$queryRawUnsafe(
|
|
676
|
+
translated.sql,
|
|
677
|
+
...translated.args
|
|
678
|
+
);
|
|
679
|
+
return buildResultSet(rows, /\bRETURNING\b/iu.test(translated.sql) ? rows.length : 0);
|
|
680
|
+
}
|
|
681
|
+
const rowsAffected = await executor.$executeRawUnsafe(translated.sql, ...translated.args);
|
|
682
|
+
return buildResultSet([], rowsAffected);
|
|
683
|
+
}
|
|
684
|
+
function splitSqlStatements(sql) {
|
|
685
|
+
const parts = [];
|
|
686
|
+
let current = "";
|
|
687
|
+
let inSingle = false;
|
|
688
|
+
let inDouble = false;
|
|
689
|
+
let inLineComment = false;
|
|
690
|
+
let inBlockComment = false;
|
|
691
|
+
for (let i = 0; i < sql.length; i++) {
|
|
692
|
+
const ch = sql[i];
|
|
693
|
+
const next = sql[i + 1];
|
|
694
|
+
if (inLineComment) {
|
|
695
|
+
current += ch;
|
|
696
|
+
if (ch === "\n") inLineComment = false;
|
|
697
|
+
continue;
|
|
698
|
+
}
|
|
699
|
+
if (inBlockComment) {
|
|
700
|
+
current += ch;
|
|
701
|
+
if (ch === "*" && next === "/") {
|
|
702
|
+
current += next;
|
|
703
|
+
inBlockComment = false;
|
|
704
|
+
i += 1;
|
|
705
|
+
}
|
|
706
|
+
continue;
|
|
707
|
+
}
|
|
708
|
+
if (!inSingle && !inDouble && ch === "-" && next === "-") {
|
|
709
|
+
current += ch + next;
|
|
710
|
+
inLineComment = true;
|
|
711
|
+
i += 1;
|
|
712
|
+
continue;
|
|
713
|
+
}
|
|
714
|
+
if (!inSingle && !inDouble && ch === "/" && next === "*") {
|
|
715
|
+
current += ch + next;
|
|
716
|
+
inBlockComment = true;
|
|
717
|
+
i += 1;
|
|
718
|
+
continue;
|
|
719
|
+
}
|
|
720
|
+
if (!inDouble && ch === "'" && sql[i - 1] !== "\\") {
|
|
721
|
+
inSingle = !inSingle;
|
|
722
|
+
current += ch;
|
|
723
|
+
continue;
|
|
724
|
+
}
|
|
725
|
+
if (!inSingle && ch === '"' && sql[i - 1] !== "\\") {
|
|
726
|
+
inDouble = !inDouble;
|
|
727
|
+
current += ch;
|
|
728
|
+
continue;
|
|
729
|
+
}
|
|
730
|
+
if (!inSingle && !inDouble && ch === ";") {
|
|
731
|
+
if (current.trim()) {
|
|
732
|
+
parts.push(current.trim());
|
|
733
|
+
}
|
|
734
|
+
current = "";
|
|
735
|
+
continue;
|
|
736
|
+
}
|
|
737
|
+
current += ch;
|
|
738
|
+
}
|
|
739
|
+
if (current.trim()) {
|
|
740
|
+
parts.push(current.trim());
|
|
741
|
+
}
|
|
742
|
+
return parts;
|
|
743
|
+
}
|
|
744
|
+
async function createPrismaDbAdapter(fallbackClient) {
|
|
745
|
+
const prisma = await loadPrismaClient();
|
|
746
|
+
await ensureCompatibilityViews(prisma);
|
|
747
|
+
let closed = false;
|
|
748
|
+
let adapter;
|
|
749
|
+
const fallbackExecute = async (stmt, error) => {
|
|
750
|
+
if (!fallbackClient) {
|
|
751
|
+
if (error) throw error;
|
|
752
|
+
throw new Error("No fallback SQLite client is available for this Prisma-routed query.");
|
|
753
|
+
}
|
|
754
|
+
if (error) {
|
|
755
|
+
process.stderr.write(
|
|
756
|
+
`[database-adapter] Falling back to SQLite: ${error instanceof Error ? error.message : String(error)}
|
|
757
|
+
`
|
|
758
|
+
);
|
|
759
|
+
}
|
|
760
|
+
return fallbackClient.execute(stmt);
|
|
761
|
+
};
|
|
762
|
+
adapter = {
|
|
763
|
+
async execute(stmt) {
|
|
764
|
+
if (shouldBypassPostgres(stmt)) {
|
|
765
|
+
return fallbackExecute(stmt);
|
|
766
|
+
}
|
|
767
|
+
try {
|
|
768
|
+
return await executeOnPrisma(prisma, stmt);
|
|
769
|
+
} catch (error) {
|
|
770
|
+
if (shouldFallbackOnError(error)) {
|
|
771
|
+
return fallbackExecute(stmt, error);
|
|
772
|
+
}
|
|
773
|
+
throw error;
|
|
774
|
+
}
|
|
775
|
+
},
|
|
776
|
+
async batch(stmts, mode) {
|
|
777
|
+
if (stmts.some((stmt) => shouldBypassPostgres(stmt))) {
|
|
778
|
+
if (!fallbackClient) {
|
|
779
|
+
throw new Error("Cannot batch unsupported SQLite-only statements without a fallback client.");
|
|
780
|
+
}
|
|
781
|
+
return fallbackClient.batch(stmts, mode);
|
|
782
|
+
}
|
|
783
|
+
try {
|
|
784
|
+
if (prisma.$transaction) {
|
|
785
|
+
return await prisma.$transaction(async (tx) => {
|
|
786
|
+
const results2 = [];
|
|
787
|
+
for (const stmt of stmts) {
|
|
788
|
+
results2.push(await executeOnPrisma(tx, stmt));
|
|
789
|
+
}
|
|
790
|
+
return results2;
|
|
791
|
+
});
|
|
792
|
+
}
|
|
793
|
+
const results = [];
|
|
794
|
+
for (const stmt of stmts) {
|
|
795
|
+
results.push(await executeOnPrisma(prisma, stmt));
|
|
796
|
+
}
|
|
797
|
+
return results;
|
|
798
|
+
} catch (error) {
|
|
799
|
+
if (fallbackClient && shouldFallbackOnError(error)) {
|
|
800
|
+
process.stderr.write(
|
|
801
|
+
`[database-adapter] Falling back batch to SQLite: ${error instanceof Error ? error.message : String(error)}
|
|
802
|
+
`
|
|
803
|
+
);
|
|
804
|
+
return fallbackClient.batch(stmts, mode);
|
|
805
|
+
}
|
|
806
|
+
throw error;
|
|
807
|
+
}
|
|
808
|
+
},
|
|
809
|
+
async migrate(stmts) {
|
|
810
|
+
if (fallbackClient) {
|
|
811
|
+
return fallbackClient.migrate(stmts);
|
|
812
|
+
}
|
|
813
|
+
return adapter.batch(stmts, "deferred");
|
|
814
|
+
},
|
|
815
|
+
async transaction(mode) {
|
|
816
|
+
if (!fallbackClient) {
|
|
817
|
+
throw new Error("Interactive transactions are only supported on the SQLite fallback client.");
|
|
818
|
+
}
|
|
819
|
+
return fallbackClient.transaction(mode);
|
|
820
|
+
},
|
|
821
|
+
async executeMultiple(sql) {
|
|
822
|
+
if (fallbackClient && shouldBypassPostgres(sql)) {
|
|
823
|
+
return fallbackClient.executeMultiple(sql);
|
|
824
|
+
}
|
|
825
|
+
for (const statement of splitSqlStatements(sql)) {
|
|
826
|
+
await adapter.execute(statement);
|
|
827
|
+
}
|
|
828
|
+
},
|
|
829
|
+
async sync() {
|
|
830
|
+
if (fallbackClient) {
|
|
831
|
+
return fallbackClient.sync();
|
|
832
|
+
}
|
|
833
|
+
return { frame_no: 0, frames_synced: 0 };
|
|
834
|
+
},
|
|
835
|
+
close() {
|
|
836
|
+
closed = true;
|
|
837
|
+
prismaClientPromise = null;
|
|
838
|
+
compatibilityBootstrapPromise = null;
|
|
839
|
+
void prisma.$disconnect?.();
|
|
840
|
+
},
|
|
841
|
+
get closed() {
|
|
842
|
+
return closed;
|
|
843
|
+
},
|
|
844
|
+
get protocol() {
|
|
845
|
+
return "prisma-postgres";
|
|
846
|
+
}
|
|
847
|
+
};
|
|
848
|
+
return adapter;
|
|
849
|
+
}
|
|
850
|
+
var VIEW_MAPPINGS, UPSERT_KEYS, BOOLEAN_COLUMNS_BY_TABLE, BOOLEAN_COLUMN_NAMES, IMMEDIATE_FALLBACK_PATTERNS, prismaClientPromise, compatibilityBootstrapPromise;
|
|
851
|
+
var init_database_adapter = __esm({
|
|
852
|
+
"src/lib/database-adapter.ts"() {
|
|
853
|
+
"use strict";
|
|
854
|
+
VIEW_MAPPINGS = [
|
|
855
|
+
{ view: "memories", source: "memory.memory_records" },
|
|
856
|
+
{ view: "tasks", source: "memory.tasks" },
|
|
857
|
+
{ view: "behaviors", source: "memory.behaviors" },
|
|
858
|
+
{ view: "entities", source: "memory.entities" },
|
|
859
|
+
{ view: "relationships", source: "memory.relationships" },
|
|
860
|
+
{ view: "entity_memories", source: "memory.entity_memories" },
|
|
861
|
+
{ view: "entity_aliases", source: "memory.entity_aliases" },
|
|
862
|
+
{ view: "notifications", source: "memory.notifications" },
|
|
863
|
+
{ view: "messages", source: "memory.messages" },
|
|
864
|
+
{ view: "users", source: "wiki.users" },
|
|
865
|
+
{ view: "workspaces", source: "wiki.workspaces" },
|
|
866
|
+
{ view: "workspace_users", source: "wiki.workspace_users" },
|
|
867
|
+
{ view: "documents", source: "wiki.workspace_documents" },
|
|
868
|
+
{ view: "chats", source: "wiki.workspace_chats" }
|
|
869
|
+
];
|
|
870
|
+
UPSERT_KEYS = {
|
|
871
|
+
memories: ["id"],
|
|
872
|
+
tasks: ["id"],
|
|
873
|
+
behaviors: ["id"],
|
|
874
|
+
entities: ["id"],
|
|
875
|
+
relationships: ["id"],
|
|
876
|
+
entity_aliases: ["alias"],
|
|
877
|
+
notifications: ["id"],
|
|
878
|
+
messages: ["id"],
|
|
879
|
+
users: ["id"],
|
|
880
|
+
workspaces: ["id"],
|
|
881
|
+
workspace_users: ["id"],
|
|
882
|
+
documents: ["id"],
|
|
883
|
+
chats: ["id"]
|
|
884
|
+
};
|
|
885
|
+
BOOLEAN_COLUMNS_BY_TABLE = {
|
|
886
|
+
memories: /* @__PURE__ */ new Set(["has_error", "draft"]),
|
|
887
|
+
behaviors: /* @__PURE__ */ new Set(["active"]),
|
|
888
|
+
notifications: /* @__PURE__ */ new Set(["read"]),
|
|
889
|
+
users: /* @__PURE__ */ new Set(["has_personal_memory"])
|
|
890
|
+
};
|
|
891
|
+
BOOLEAN_COLUMN_NAMES = new Set(
|
|
892
|
+
Object.values(BOOLEAN_COLUMNS_BY_TABLE).flatMap((cols) => [...cols])
|
|
893
|
+
);
|
|
894
|
+
IMMEDIATE_FALLBACK_PATTERNS = [
|
|
895
|
+
/\bPRAGMA\b/i,
|
|
896
|
+
/\bsqlite_master\b/i,
|
|
897
|
+
/(?:^|[.\s])(?:memories|conversations|entities)_fts\b/i,
|
|
898
|
+
/\bMATCH\b/i,
|
|
899
|
+
/\bvector_distance_cos\s*\(/i,
|
|
900
|
+
/\bjson_extract\s*\(/i,
|
|
901
|
+
/\bjulianday\s*\(/i,
|
|
902
|
+
/\bstrftime\s*\(/i,
|
|
903
|
+
/\blast_insert_rowid\s*\(/i
|
|
904
|
+
];
|
|
905
|
+
prismaClientPromise = null;
|
|
906
|
+
compatibilityBootstrapPromise = null;
|
|
284
907
|
}
|
|
285
908
|
});
|
|
286
909
|
|
|
287
910
|
// src/lib/database.ts
|
|
288
911
|
import { createClient } from "@libsql/client";
|
|
289
912
|
async function initDatabase(config) {
|
|
913
|
+
if (_walCheckpointTimer) {
|
|
914
|
+
clearInterval(_walCheckpointTimer);
|
|
915
|
+
_walCheckpointTimer = null;
|
|
916
|
+
}
|
|
917
|
+
if (_daemonClient) {
|
|
918
|
+
_daemonClient.close();
|
|
919
|
+
_daemonClient = null;
|
|
920
|
+
}
|
|
921
|
+
if (_adapterClient && _adapterClient !== _resilientClient) {
|
|
922
|
+
_adapterClient.close();
|
|
923
|
+
}
|
|
924
|
+
_adapterClient = null;
|
|
290
925
|
if (_client) {
|
|
291
926
|
_client.close();
|
|
292
927
|
_client = null;
|
|
@@ -300,6 +935,7 @@ async function initDatabase(config) {
|
|
|
300
935
|
}
|
|
301
936
|
_client = createClient(opts);
|
|
302
937
|
_resilientClient = wrapWithRetry(_client);
|
|
938
|
+
_adapterClient = _resilientClient;
|
|
303
939
|
_client.execute("PRAGMA busy_timeout = 30000").catch(() => {
|
|
304
940
|
});
|
|
305
941
|
_client.execute("PRAGMA journal_mode = WAL").catch(() => {
|
|
@@ -310,11 +946,17 @@ async function initDatabase(config) {
|
|
|
310
946
|
});
|
|
311
947
|
}, 3e4);
|
|
312
948
|
_walCheckpointTimer.unref();
|
|
949
|
+
if (process.env.DATABASE_URL) {
|
|
950
|
+
_adapterClient = await createPrismaDbAdapter(_resilientClient);
|
|
951
|
+
}
|
|
313
952
|
}
|
|
314
953
|
function getClient() {
|
|
315
|
-
if (!
|
|
954
|
+
if (!_adapterClient) {
|
|
316
955
|
throw new Error("Database client not initialized. Call initDatabase() first.");
|
|
317
956
|
}
|
|
957
|
+
if (process.env.DATABASE_URL) {
|
|
958
|
+
return _adapterClient;
|
|
959
|
+
}
|
|
318
960
|
if (process.env.EXE_IS_DAEMON === "1") {
|
|
319
961
|
return _resilientClient;
|
|
320
962
|
}
|
|
@@ -607,6 +1249,7 @@ async function ensureSchema() {
|
|
|
607
1249
|
project TEXT NOT NULL,
|
|
608
1250
|
summary TEXT NOT NULL,
|
|
609
1251
|
task_file TEXT,
|
|
1252
|
+
session_scope TEXT,
|
|
610
1253
|
read INTEGER NOT NULL DEFAULT 0,
|
|
611
1254
|
created_at TEXT NOT NULL
|
|
612
1255
|
);
|
|
@@ -615,7 +1258,7 @@ async function ensureSchema() {
|
|
|
615
1258
|
ON notifications(read);
|
|
616
1259
|
|
|
617
1260
|
CREATE INDEX IF NOT EXISTS idx_notifications_agent
|
|
618
|
-
ON notifications(agent_id);
|
|
1261
|
+
ON notifications(agent_id, session_scope);
|
|
619
1262
|
|
|
620
1263
|
CREATE INDEX IF NOT EXISTS idx_notifications_task_file
|
|
621
1264
|
ON notifications(task_file);
|
|
@@ -653,6 +1296,7 @@ async function ensureSchema() {
|
|
|
653
1296
|
target_agent TEXT NOT NULL,
|
|
654
1297
|
target_project TEXT,
|
|
655
1298
|
target_device TEXT NOT NULL DEFAULT 'local',
|
|
1299
|
+
session_scope TEXT,
|
|
656
1300
|
content TEXT NOT NULL,
|
|
657
1301
|
priority TEXT DEFAULT 'normal',
|
|
658
1302
|
status TEXT DEFAULT 'pending',
|
|
@@ -666,10 +1310,31 @@ async function ensureSchema() {
|
|
|
666
1310
|
);
|
|
667
1311
|
|
|
668
1312
|
CREATE INDEX IF NOT EXISTS idx_messages_target
|
|
669
|
-
ON messages(target_agent, status);
|
|
1313
|
+
ON messages(target_agent, session_scope, status);
|
|
670
1314
|
|
|
671
1315
|
CREATE INDEX IF NOT EXISTS idx_messages_conversation_order
|
|
672
|
-
ON messages(target_agent, from_agent, server_seq);
|
|
1316
|
+
ON messages(target_agent, session_scope, from_agent, server_seq);
|
|
1317
|
+
`);
|
|
1318
|
+
try {
|
|
1319
|
+
await client.execute({
|
|
1320
|
+
sql: `ALTER TABLE notifications ADD COLUMN session_scope TEXT`,
|
|
1321
|
+
args: []
|
|
1322
|
+
});
|
|
1323
|
+
} catch {
|
|
1324
|
+
}
|
|
1325
|
+
try {
|
|
1326
|
+
await client.execute({
|
|
1327
|
+
sql: `ALTER TABLE messages ADD COLUMN session_scope TEXT`,
|
|
1328
|
+
args: []
|
|
1329
|
+
});
|
|
1330
|
+
} catch {
|
|
1331
|
+
}
|
|
1332
|
+
await client.executeMultiple(`
|
|
1333
|
+
CREATE INDEX IF NOT EXISTS idx_notifications_agent_scope_read
|
|
1334
|
+
ON notifications(agent_id, session_scope, read, created_at);
|
|
1335
|
+
|
|
1336
|
+
CREATE INDEX IF NOT EXISTS idx_messages_target_scope_status
|
|
1337
|
+
ON messages(target_agent, session_scope, status, created_at);
|
|
673
1338
|
`);
|
|
674
1339
|
try {
|
|
675
1340
|
await client.execute({
|
|
@@ -1253,17 +1918,26 @@ async function ensureSchema() {
|
|
|
1253
1918
|
} catch {
|
|
1254
1919
|
}
|
|
1255
1920
|
}
|
|
1921
|
+
try {
|
|
1922
|
+
await client.execute({
|
|
1923
|
+
sql: `UPDATE tasks SET status = 'closed' WHERE status = 'done' AND result IS NOT NULL`,
|
|
1924
|
+
args: []
|
|
1925
|
+
});
|
|
1926
|
+
} catch {
|
|
1927
|
+
}
|
|
1256
1928
|
}
|
|
1257
|
-
var _client, _resilientClient, _walCheckpointTimer, _daemonClient, initTurso;
|
|
1929
|
+
var _client, _resilientClient, _walCheckpointTimer, _daemonClient, _adapterClient, initTurso;
|
|
1258
1930
|
var init_database = __esm({
|
|
1259
1931
|
"src/lib/database.ts"() {
|
|
1260
1932
|
"use strict";
|
|
1261
1933
|
init_db_retry();
|
|
1262
1934
|
init_employees();
|
|
1935
|
+
init_database_adapter();
|
|
1263
1936
|
_client = null;
|
|
1264
1937
|
_resilientClient = null;
|
|
1265
1938
|
_walCheckpointTimer = null;
|
|
1266
1939
|
_daemonClient = null;
|
|
1940
|
+
_adapterClient = null;
|
|
1267
1941
|
initTurso = initDatabase;
|
|
1268
1942
|
}
|
|
1269
1943
|
});
|
|
@@ -1328,6 +2002,7 @@ var shard_manager_exports = {};
|
|
|
1328
2002
|
__export(shard_manager_exports, {
|
|
1329
2003
|
disposeShards: () => disposeShards,
|
|
1330
2004
|
ensureShardSchema: () => ensureShardSchema,
|
|
2005
|
+
getOpenShardCount: () => getOpenShardCount,
|
|
1331
2006
|
getReadyShardClient: () => getReadyShardClient,
|
|
1332
2007
|
getShardClient: () => getShardClient,
|
|
1333
2008
|
getShardsDir: () => getShardsDir,
|
|
@@ -1336,15 +2011,18 @@ __export(shard_manager_exports, {
|
|
|
1336
2011
|
listShards: () => listShards,
|
|
1337
2012
|
shardExists: () => shardExists
|
|
1338
2013
|
});
|
|
1339
|
-
import
|
|
1340
|
-
import { existsSync as
|
|
2014
|
+
import path5 from "path";
|
|
2015
|
+
import { existsSync as existsSync5, mkdirSync as mkdirSync2, readdirSync } from "fs";
|
|
1341
2016
|
import { createClient as createClient2 } from "@libsql/client";
|
|
1342
2017
|
function initShardManager(encryptionKey) {
|
|
1343
2018
|
_encryptionKey = encryptionKey;
|
|
1344
|
-
if (!
|
|
1345
|
-
|
|
2019
|
+
if (!existsSync5(SHARDS_DIR)) {
|
|
2020
|
+
mkdirSync2(SHARDS_DIR, { recursive: true });
|
|
1346
2021
|
}
|
|
1347
2022
|
_shardingEnabled = true;
|
|
2023
|
+
if (_evictionTimer) clearInterval(_evictionTimer);
|
|
2024
|
+
_evictionTimer = setInterval(evictIdleShards, EVICTION_INTERVAL_MS);
|
|
2025
|
+
_evictionTimer.unref();
|
|
1348
2026
|
}
|
|
1349
2027
|
function isShardingEnabled() {
|
|
1350
2028
|
return _shardingEnabled;
|
|
@@ -1361,21 +2039,28 @@ function getShardClient(projectName) {
|
|
|
1361
2039
|
throw new Error(`Invalid project name for shard: "${projectName}"`);
|
|
1362
2040
|
}
|
|
1363
2041
|
const cached = _shards.get(safeName);
|
|
1364
|
-
if (cached)
|
|
1365
|
-
|
|
2042
|
+
if (cached) {
|
|
2043
|
+
_shardLastAccess.set(safeName, Date.now());
|
|
2044
|
+
return cached;
|
|
2045
|
+
}
|
|
2046
|
+
while (_shards.size >= MAX_OPEN_SHARDS) {
|
|
2047
|
+
evictLRU();
|
|
2048
|
+
}
|
|
2049
|
+
const dbPath = path5.join(SHARDS_DIR, `${safeName}.db`);
|
|
1366
2050
|
const client = createClient2({
|
|
1367
2051
|
url: `file:${dbPath}`,
|
|
1368
2052
|
encryptionKey: _encryptionKey
|
|
1369
2053
|
});
|
|
1370
2054
|
_shards.set(safeName, client);
|
|
2055
|
+
_shardLastAccess.set(safeName, Date.now());
|
|
1371
2056
|
return client;
|
|
1372
2057
|
}
|
|
1373
2058
|
function shardExists(projectName) {
|
|
1374
2059
|
const safeName = projectName.replace(/[^a-zA-Z0-9_-]/g, "_");
|
|
1375
|
-
return
|
|
2060
|
+
return existsSync5(path5.join(SHARDS_DIR, `${safeName}.db`));
|
|
1376
2061
|
}
|
|
1377
2062
|
function listShards() {
|
|
1378
|
-
if (!
|
|
2063
|
+
if (!existsSync5(SHARDS_DIR)) return [];
|
|
1379
2064
|
return readdirSync(SHARDS_DIR).filter((f) => f.endsWith(".db")).map((f) => f.replace(".db", ""));
|
|
1380
2065
|
}
|
|
1381
2066
|
async function ensureShardSchema(client) {
|
|
@@ -1427,6 +2112,8 @@ async function ensureShardSchema(client) {
|
|
|
1427
2112
|
for (const col of [
|
|
1428
2113
|
"ALTER TABLE memories ADD COLUMN task_id TEXT",
|
|
1429
2114
|
"ALTER TABLE memories ADD COLUMN consolidated INTEGER NOT NULL DEFAULT 0",
|
|
2115
|
+
"ALTER TABLE memories ADD COLUMN author_device_id TEXT",
|
|
2116
|
+
"ALTER TABLE memories ADD COLUMN scope TEXT NOT NULL DEFAULT 'business'",
|
|
1430
2117
|
"ALTER TABLE memories ADD COLUMN importance INTEGER DEFAULT 5",
|
|
1431
2118
|
"ALTER TABLE memories ADD COLUMN status TEXT DEFAULT 'active'",
|
|
1432
2119
|
"ALTER TABLE memories ADD COLUMN wiki_synced INTEGER DEFAULT 0",
|
|
@@ -1449,7 +2136,23 @@ async function ensureShardSchema(client) {
|
|
|
1449
2136
|
// MS-11: draft staging, MS-6a: memory_type, MS-7: trajectory
|
|
1450
2137
|
"ALTER TABLE memories ADD COLUMN draft INTEGER DEFAULT 0",
|
|
1451
2138
|
"ALTER TABLE memories ADD COLUMN memory_type TEXT DEFAULT 'raw'",
|
|
1452
|
-
"ALTER TABLE memories ADD COLUMN trajectory TEXT"
|
|
2139
|
+
"ALTER TABLE memories ADD COLUMN trajectory TEXT",
|
|
2140
|
+
// Metadata enrichment columns (must match database.ts)
|
|
2141
|
+
"ALTER TABLE memories ADD COLUMN intent TEXT",
|
|
2142
|
+
"ALTER TABLE memories ADD COLUMN outcome TEXT",
|
|
2143
|
+
"ALTER TABLE memories ADD COLUMN domain TEXT",
|
|
2144
|
+
"ALTER TABLE memories ADD COLUMN referenced_entities TEXT",
|
|
2145
|
+
"ALTER TABLE memories ADD COLUMN retrieval_count INTEGER DEFAULT 0",
|
|
2146
|
+
"ALTER TABLE memories ADD COLUMN chain_position TEXT",
|
|
2147
|
+
"ALTER TABLE memories ADD COLUMN review_status TEXT",
|
|
2148
|
+
"ALTER TABLE memories ADD COLUMN context_window_pct INTEGER",
|
|
2149
|
+
"ALTER TABLE memories ADD COLUMN file_paths TEXT",
|
|
2150
|
+
"ALTER TABLE memories ADD COLUMN commit_hash TEXT",
|
|
2151
|
+
"ALTER TABLE memories ADD COLUMN duration_ms INTEGER",
|
|
2152
|
+
"ALTER TABLE memories ADD COLUMN token_cost REAL",
|
|
2153
|
+
"ALTER TABLE memories ADD COLUMN audience TEXT",
|
|
2154
|
+
"ALTER TABLE memories ADD COLUMN language_type TEXT",
|
|
2155
|
+
"ALTER TABLE memories ADD COLUMN parent_memory_id TEXT"
|
|
1453
2156
|
]) {
|
|
1454
2157
|
try {
|
|
1455
2158
|
await client.execute(col);
|
|
@@ -1548,21 +2251,69 @@ async function getReadyShardClient(projectName) {
|
|
|
1548
2251
|
await ensureShardSchema(client);
|
|
1549
2252
|
return client;
|
|
1550
2253
|
}
|
|
2254
|
+
function evictLRU() {
|
|
2255
|
+
let oldest = null;
|
|
2256
|
+
let oldestTime = Infinity;
|
|
2257
|
+
for (const [name, time] of _shardLastAccess) {
|
|
2258
|
+
if (time < oldestTime) {
|
|
2259
|
+
oldestTime = time;
|
|
2260
|
+
oldest = name;
|
|
2261
|
+
}
|
|
2262
|
+
}
|
|
2263
|
+
if (oldest) {
|
|
2264
|
+
const client = _shards.get(oldest);
|
|
2265
|
+
if (client) {
|
|
2266
|
+
client.close();
|
|
2267
|
+
}
|
|
2268
|
+
_shards.delete(oldest);
|
|
2269
|
+
_shardLastAccess.delete(oldest);
|
|
2270
|
+
}
|
|
2271
|
+
}
|
|
2272
|
+
function evictIdleShards() {
|
|
2273
|
+
const now = Date.now();
|
|
2274
|
+
const toEvict = [];
|
|
2275
|
+
for (const [name, lastAccess] of _shardLastAccess) {
|
|
2276
|
+
if (now - lastAccess > SHARD_IDLE_MS) {
|
|
2277
|
+
toEvict.push(name);
|
|
2278
|
+
}
|
|
2279
|
+
}
|
|
2280
|
+
for (const name of toEvict) {
|
|
2281
|
+
const client = _shards.get(name);
|
|
2282
|
+
if (client) {
|
|
2283
|
+
client.close();
|
|
2284
|
+
}
|
|
2285
|
+
_shards.delete(name);
|
|
2286
|
+
_shardLastAccess.delete(name);
|
|
2287
|
+
}
|
|
2288
|
+
}
|
|
2289
|
+
function getOpenShardCount() {
|
|
2290
|
+
return _shards.size;
|
|
2291
|
+
}
|
|
1551
2292
|
function disposeShards() {
|
|
2293
|
+
if (_evictionTimer) {
|
|
2294
|
+
clearInterval(_evictionTimer);
|
|
2295
|
+
_evictionTimer = null;
|
|
2296
|
+
}
|
|
1552
2297
|
for (const [, client] of _shards) {
|
|
1553
2298
|
client.close();
|
|
1554
2299
|
}
|
|
1555
2300
|
_shards.clear();
|
|
2301
|
+
_shardLastAccess.clear();
|
|
1556
2302
|
_shardingEnabled = false;
|
|
1557
2303
|
_encryptionKey = null;
|
|
1558
2304
|
}
|
|
1559
|
-
var SHARDS_DIR, _shards, _encryptionKey, _shardingEnabled;
|
|
2305
|
+
var SHARDS_DIR, SHARD_IDLE_MS, MAX_OPEN_SHARDS, EVICTION_INTERVAL_MS, _shards, _shardLastAccess, _evictionTimer, _encryptionKey, _shardingEnabled;
|
|
1560
2306
|
var init_shard_manager = __esm({
|
|
1561
2307
|
"src/lib/shard-manager.ts"() {
|
|
1562
2308
|
"use strict";
|
|
1563
2309
|
init_config();
|
|
1564
|
-
SHARDS_DIR =
|
|
2310
|
+
SHARDS_DIR = path5.join(EXE_AI_DIR, "shards");
|
|
2311
|
+
SHARD_IDLE_MS = 5 * 60 * 1e3;
|
|
2312
|
+
MAX_OPEN_SHARDS = 10;
|
|
2313
|
+
EVICTION_INTERVAL_MS = 60 * 1e3;
|
|
1565
2314
|
_shards = /* @__PURE__ */ new Map();
|
|
2315
|
+
_shardLastAccess = /* @__PURE__ */ new Map();
|
|
2316
|
+
_evictionTimer = null;
|
|
1566
2317
|
_encryptionKey = null;
|
|
1567
2318
|
_shardingEnabled = false;
|
|
1568
2319
|
}
|
|
@@ -1755,24 +2506,6 @@ ${p.content}`).join("\n\n");
|
|
|
1755
2506
|
}
|
|
1756
2507
|
});
|
|
1757
2508
|
|
|
1758
|
-
// src/lib/notifications.ts
|
|
1759
|
-
import crypto from "crypto";
|
|
1760
|
-
import path5 from "path";
|
|
1761
|
-
import os4 from "os";
|
|
1762
|
-
import {
|
|
1763
|
-
readFileSync as readFileSync3,
|
|
1764
|
-
readdirSync as readdirSync2,
|
|
1765
|
-
unlinkSync as unlinkSync2,
|
|
1766
|
-
existsSync as existsSync5,
|
|
1767
|
-
rmdirSync
|
|
1768
|
-
} from "fs";
|
|
1769
|
-
var init_notifications = __esm({
|
|
1770
|
-
"src/lib/notifications.ts"() {
|
|
1771
|
-
"use strict";
|
|
1772
|
-
init_database();
|
|
1773
|
-
}
|
|
1774
|
-
});
|
|
1775
|
-
|
|
1776
2509
|
// src/lib/session-registry.ts
|
|
1777
2510
|
import path6 from "path";
|
|
1778
2511
|
import os5 from "os";
|
|
@@ -1786,16 +2519,176 @@ var init_session_registry = __esm({
|
|
|
1786
2519
|
|
|
1787
2520
|
// src/lib/session-key.ts
|
|
1788
2521
|
import { execSync as execSync2 } from "child_process";
|
|
2522
|
+
function normalizeCommand(command) {
|
|
2523
|
+
const trimmed = command.trim().toLowerCase();
|
|
2524
|
+
const parts = trimmed.split(/[\\/]/);
|
|
2525
|
+
return parts[parts.length - 1] ?? trimmed;
|
|
2526
|
+
}
|
|
2527
|
+
function detectRuntimeFromCommand(command) {
|
|
2528
|
+
const normalized = normalizeCommand(command);
|
|
2529
|
+
for (const [runtime, commands] of Object.entries(RUNTIME_COMMANDS)) {
|
|
2530
|
+
if (commands.includes(normalized)) {
|
|
2531
|
+
return runtime;
|
|
2532
|
+
}
|
|
2533
|
+
}
|
|
2534
|
+
return null;
|
|
2535
|
+
}
|
|
2536
|
+
function resolveRuntimeProcess() {
|
|
2537
|
+
let pid = process.ppid;
|
|
2538
|
+
for (let i = 0; i < 10; i++) {
|
|
2539
|
+
try {
|
|
2540
|
+
const info = execSync2(`ps -p ${pid} -o ppid=,comm=`, {
|
|
2541
|
+
encoding: "utf8",
|
|
2542
|
+
timeout: 2e3
|
|
2543
|
+
}).trim();
|
|
2544
|
+
const match = info.match(/^\s*(\d+)\s+(.+)$/);
|
|
2545
|
+
if (!match) break;
|
|
2546
|
+
const [, ppid, cmd] = match;
|
|
2547
|
+
const runtime = detectRuntimeFromCommand(cmd ?? "");
|
|
2548
|
+
if (runtime) {
|
|
2549
|
+
return { pid: String(pid), runtime };
|
|
2550
|
+
}
|
|
2551
|
+
pid = parseInt(ppid, 10);
|
|
2552
|
+
if (pid <= 1) break;
|
|
2553
|
+
} catch {
|
|
2554
|
+
break;
|
|
2555
|
+
}
|
|
2556
|
+
}
|
|
2557
|
+
return null;
|
|
2558
|
+
}
|
|
2559
|
+
function getSessionKey() {
|
|
2560
|
+
if (_cached) return _cached;
|
|
2561
|
+
if (process.env.EXE_SESSION_KEY) {
|
|
2562
|
+
_cached = process.env.EXE_SESSION_KEY;
|
|
2563
|
+
return _cached;
|
|
2564
|
+
}
|
|
2565
|
+
const resolved = resolveRuntimeProcess();
|
|
2566
|
+
if (resolved) {
|
|
2567
|
+
_cachedRuntime = resolved.runtime;
|
|
2568
|
+
_cached = resolved.pid;
|
|
2569
|
+
return _cached;
|
|
2570
|
+
}
|
|
2571
|
+
_cached = process.env.CLAUDE_CODE_SSE_PORT ?? String(process.ppid);
|
|
2572
|
+
return _cached;
|
|
2573
|
+
}
|
|
2574
|
+
var _cached, _cachedRuntime, RUNTIME_COMMANDS;
|
|
1789
2575
|
var init_session_key = __esm({
|
|
1790
2576
|
"src/lib/session-key.ts"() {
|
|
1791
2577
|
"use strict";
|
|
2578
|
+
_cached = null;
|
|
2579
|
+
_cachedRuntime = null;
|
|
2580
|
+
RUNTIME_COMMANDS = {
|
|
2581
|
+
claude: ["claude", "claude.exe", "claude-native"],
|
|
2582
|
+
codex: ["codex"],
|
|
2583
|
+
opencode: ["opencode"]
|
|
2584
|
+
};
|
|
2585
|
+
}
|
|
2586
|
+
});
|
|
2587
|
+
|
|
2588
|
+
// src/lib/tmux-transport.ts
|
|
2589
|
+
var tmux_transport_exports = {};
|
|
2590
|
+
__export(tmux_transport_exports, {
|
|
2591
|
+
TmuxTransport: () => TmuxTransport
|
|
2592
|
+
});
|
|
2593
|
+
import { execFileSync } from "child_process";
|
|
2594
|
+
var QUIET, TmuxTransport;
|
|
2595
|
+
var init_tmux_transport = __esm({
|
|
2596
|
+
"src/lib/tmux-transport.ts"() {
|
|
2597
|
+
"use strict";
|
|
2598
|
+
QUIET = {
|
|
2599
|
+
encoding: "utf8",
|
|
2600
|
+
stdio: ["pipe", "pipe", "pipe"]
|
|
2601
|
+
};
|
|
2602
|
+
TmuxTransport = class {
|
|
2603
|
+
getMySession() {
|
|
2604
|
+
try {
|
|
2605
|
+
return execFileSync("tmux", ["display-message", "-p", "#{session_name}"], QUIET).trim() || null;
|
|
2606
|
+
} catch {
|
|
2607
|
+
return null;
|
|
2608
|
+
}
|
|
2609
|
+
}
|
|
2610
|
+
listSessions() {
|
|
2611
|
+
try {
|
|
2612
|
+
return execFileSync("tmux", ["list-sessions", "-F", "#{session_name}"], QUIET).trim().split("\n").filter(Boolean);
|
|
2613
|
+
} catch {
|
|
2614
|
+
return [];
|
|
2615
|
+
}
|
|
2616
|
+
}
|
|
2617
|
+
isAlive(target) {
|
|
2618
|
+
try {
|
|
2619
|
+
const sessions = this.listSessions();
|
|
2620
|
+
if (!sessions.includes(target)) return false;
|
|
2621
|
+
const paneStatus = execFileSync(
|
|
2622
|
+
"tmux",
|
|
2623
|
+
["list-panes", "-t", target, "-F", "#{pane_dead}"],
|
|
2624
|
+
QUIET
|
|
2625
|
+
).trim();
|
|
2626
|
+
return paneStatus !== "1";
|
|
2627
|
+
} catch {
|
|
2628
|
+
return false;
|
|
2629
|
+
}
|
|
2630
|
+
}
|
|
2631
|
+
sendKeys(target, keys) {
|
|
2632
|
+
execFileSync("tmux", ["send-keys", "-t", target, keys, "Enter"], QUIET);
|
|
2633
|
+
}
|
|
2634
|
+
capturePane(target, lines) {
|
|
2635
|
+
const args = ["capture-pane", "-t", target, "-p"];
|
|
2636
|
+
if (lines) args.push("-S", `-${lines}`);
|
|
2637
|
+
return execFileSync("tmux", args, { ...QUIET, timeout: 3e3 });
|
|
2638
|
+
}
|
|
2639
|
+
isPaneInCopyMode(target) {
|
|
2640
|
+
try {
|
|
2641
|
+
const result = execFileSync(
|
|
2642
|
+
"tmux",
|
|
2643
|
+
["display-message", "-p", "-t", target, "#{pane_in_mode}"],
|
|
2644
|
+
{ ...QUIET, timeout: 3e3 }
|
|
2645
|
+
).trim();
|
|
2646
|
+
return result === "1";
|
|
2647
|
+
} catch {
|
|
2648
|
+
return false;
|
|
2649
|
+
}
|
|
2650
|
+
}
|
|
2651
|
+
spawn(name, config) {
|
|
2652
|
+
try {
|
|
2653
|
+
const args = ["new-session", "-d", "-s", name];
|
|
2654
|
+
if (config.cwd) args.push("-c", config.cwd);
|
|
2655
|
+
args.push(config.command);
|
|
2656
|
+
execFileSync("tmux", args);
|
|
2657
|
+
return { sessionName: name };
|
|
2658
|
+
} catch (e) {
|
|
2659
|
+
return { sessionName: name, error: `spawn failed: ${e}` };
|
|
2660
|
+
}
|
|
2661
|
+
}
|
|
2662
|
+
kill(target) {
|
|
2663
|
+
try {
|
|
2664
|
+
execFileSync("tmux", ["kill-session", "-t", target], QUIET);
|
|
2665
|
+
} catch {
|
|
2666
|
+
}
|
|
2667
|
+
}
|
|
2668
|
+
pipeLog(target, logFile) {
|
|
2669
|
+
try {
|
|
2670
|
+
const safePath = logFile.replace(/'/g, "'\\''");
|
|
2671
|
+
execFileSync("tmux", ["pipe-pane", "-t", target, `cat >> '${safePath}'`], QUIET);
|
|
2672
|
+
} catch {
|
|
2673
|
+
}
|
|
2674
|
+
}
|
|
2675
|
+
};
|
|
1792
2676
|
}
|
|
1793
2677
|
});
|
|
1794
2678
|
|
|
1795
2679
|
// src/lib/transport.ts
|
|
2680
|
+
function getTransport() {
|
|
2681
|
+
if (!_transport) {
|
|
2682
|
+
const { TmuxTransport: TmuxTransport2 } = (init_tmux_transport(), __toCommonJS(tmux_transport_exports));
|
|
2683
|
+
_transport = new TmuxTransport2();
|
|
2684
|
+
}
|
|
2685
|
+
return _transport;
|
|
2686
|
+
}
|
|
2687
|
+
var _transport;
|
|
1796
2688
|
var init_transport = __esm({
|
|
1797
2689
|
"src/lib/transport.ts"() {
|
|
1798
2690
|
"use strict";
|
|
2691
|
+
_transport = null;
|
|
1799
2692
|
}
|
|
1800
2693
|
});
|
|
1801
2694
|
|
|
@@ -1855,7 +2748,7 @@ var init_runtime_table = __esm({
|
|
|
1855
2748
|
});
|
|
1856
2749
|
|
|
1857
2750
|
// src/lib/agent-config.ts
|
|
1858
|
-
import { readFileSync as
|
|
2751
|
+
import { readFileSync as readFileSync3, writeFileSync as writeFileSync2, existsSync as existsSync6 } from "fs";
|
|
1859
2752
|
import path7 from "path";
|
|
1860
2753
|
var AGENT_CONFIG_PATH, DEFAULT_MODELS;
|
|
1861
2754
|
var init_agent_config = __esm({
|
|
@@ -1863,6 +2756,7 @@ var init_agent_config = __esm({
|
|
|
1863
2756
|
"use strict";
|
|
1864
2757
|
init_config();
|
|
1865
2758
|
init_runtime_table();
|
|
2759
|
+
init_secure_files();
|
|
1866
2760
|
AGENT_CONFIG_PATH = path7.join(EXE_AI_DIR, "agent-config.json");
|
|
1867
2761
|
DEFAULT_MODELS = {
|
|
1868
2762
|
claude: "claude-opus-4",
|
|
@@ -1873,7 +2767,7 @@ var init_agent_config = __esm({
|
|
|
1873
2767
|
});
|
|
1874
2768
|
|
|
1875
2769
|
// src/lib/intercom-queue.ts
|
|
1876
|
-
import { readFileSync as
|
|
2770
|
+
import { readFileSync as readFileSync4, writeFileSync as writeFileSync3, renameSync as renameSync3, existsSync as existsSync7, mkdirSync as mkdirSync3 } from "fs";
|
|
1877
2771
|
import path8 from "path";
|
|
1878
2772
|
import os6 from "os";
|
|
1879
2773
|
var QUEUE_PATH, TTL_MS, INTERCOM_LOG;
|
|
@@ -1887,8 +2781,11 @@ var init_intercom_queue = __esm({
|
|
|
1887
2781
|
});
|
|
1888
2782
|
|
|
1889
2783
|
// src/lib/license.ts
|
|
1890
|
-
import { readFileSync as
|
|
2784
|
+
import { readFileSync as readFileSync5, writeFileSync as writeFileSync4, existsSync as existsSync8, mkdirSync as mkdirSync4 } from "fs";
|
|
1891
2785
|
import { randomUUID as randomUUID2 } from "crypto";
|
|
2786
|
+
import { createRequire as createRequire2 } from "module";
|
|
2787
|
+
import { pathToFileURL as pathToFileURL2 } from "url";
|
|
2788
|
+
import os7 from "os";
|
|
1892
2789
|
import path9 from "path";
|
|
1893
2790
|
import { jwtVerify, importSPKI } from "jose";
|
|
1894
2791
|
var LICENSE_PATH, CACHE_PATH, DEVICE_ID_PATH;
|
|
@@ -1903,7 +2800,7 @@ var init_license = __esm({
|
|
|
1903
2800
|
});
|
|
1904
2801
|
|
|
1905
2802
|
// src/lib/plan-limits.ts
|
|
1906
|
-
import { readFileSync as
|
|
2803
|
+
import { readFileSync as readFileSync6, existsSync as existsSync9 } from "fs";
|
|
1907
2804
|
import path10 from "path";
|
|
1908
2805
|
var CACHE_PATH2;
|
|
1909
2806
|
var init_plan_limits = __esm({
|
|
@@ -1918,15 +2815,49 @@ var init_plan_limits = __esm({
|
|
|
1918
2815
|
});
|
|
1919
2816
|
|
|
1920
2817
|
// src/lib/tmux-routing.ts
|
|
2818
|
+
import { readFileSync as readFileSync7, writeFileSync as writeFileSync5, mkdirSync as mkdirSync5, existsSync as existsSync10, appendFileSync, readdirSync as readdirSync2 } from "fs";
|
|
1921
2819
|
import path11 from "path";
|
|
1922
|
-
import
|
|
2820
|
+
import os8 from "os";
|
|
1923
2821
|
import { fileURLToPath as fileURLToPath2 } from "url";
|
|
2822
|
+
function getMySession() {
|
|
2823
|
+
return getTransport().getMySession();
|
|
2824
|
+
}
|
|
1924
2825
|
function extractRootExe(name) {
|
|
1925
2826
|
if (!name) return null;
|
|
1926
2827
|
if (!name.includes("-")) return name;
|
|
1927
2828
|
const parts = name.split("-").filter(Boolean);
|
|
1928
2829
|
return parts.length > 0 ? parts[parts.length - 1] : null;
|
|
1929
2830
|
}
|
|
2831
|
+
function getParentExe(sessionKey) {
|
|
2832
|
+
try {
|
|
2833
|
+
const data = JSON.parse(readFileSync7(path11.join(SESSION_CACHE, `parent-exe-${sessionKey}.json`), "utf8"));
|
|
2834
|
+
return data.parentExe || null;
|
|
2835
|
+
} catch {
|
|
2836
|
+
return null;
|
|
2837
|
+
}
|
|
2838
|
+
}
|
|
2839
|
+
function resolveExeSession() {
|
|
2840
|
+
const mySession = getMySession();
|
|
2841
|
+
if (!mySession) return null;
|
|
2842
|
+
const fromSessionName = extractRootExe(mySession);
|
|
2843
|
+
try {
|
|
2844
|
+
const key = getSessionKey();
|
|
2845
|
+
const parentExe = getParentExe(key);
|
|
2846
|
+
if (parentExe) {
|
|
2847
|
+
const fromCache = extractRootExe(parentExe) ?? parentExe;
|
|
2848
|
+
if (fromSessionName && fromCache !== fromSessionName) {
|
|
2849
|
+
process.stderr.write(
|
|
2850
|
+
`[tmux-routing] WARN: cache says "${fromCache}" but session name says "${fromSessionName}". Trusting session name.
|
|
2851
|
+
`
|
|
2852
|
+
);
|
|
2853
|
+
return fromSessionName;
|
|
2854
|
+
}
|
|
2855
|
+
return fromCache;
|
|
2856
|
+
}
|
|
2857
|
+
} catch {
|
|
2858
|
+
}
|
|
2859
|
+
return fromSessionName ?? mySession;
|
|
2860
|
+
}
|
|
1930
2861
|
function isExeSession(sessionName) {
|
|
1931
2862
|
const matchesBaseWithInstance = (baseName) => sessionName === baseName || sessionName.startsWith(baseName) && /^\d+$/.test(sessionName.slice(baseName.length));
|
|
1932
2863
|
const coordinatorName = getCoordinatorName();
|
|
@@ -1947,17 +2878,60 @@ var init_tmux_routing = __esm({
|
|
|
1947
2878
|
init_intercom_queue();
|
|
1948
2879
|
init_plan_limits();
|
|
1949
2880
|
init_employees();
|
|
1950
|
-
SPAWN_LOCK_DIR = path11.join(
|
|
1951
|
-
SESSION_CACHE = path11.join(
|
|
1952
|
-
INTERCOM_LOG2 = path11.join(
|
|
2881
|
+
SPAWN_LOCK_DIR = path11.join(os8.homedir(), ".exe-os", "spawn-locks");
|
|
2882
|
+
SESSION_CACHE = path11.join(os8.homedir(), ".exe-os", "session-cache");
|
|
2883
|
+
INTERCOM_LOG2 = path11.join(os8.homedir(), ".exe-os", "intercom.log");
|
|
1953
2884
|
DEBOUNCE_FILE = path11.join(SESSION_CACHE, "intercom-debounce.json");
|
|
1954
2885
|
DEBOUNCE_CLEANUP_AGE_MS = 5 * 60 * 1e3;
|
|
1955
2886
|
}
|
|
1956
2887
|
});
|
|
1957
2888
|
|
|
1958
|
-
// src/lib/
|
|
2889
|
+
// src/lib/task-scope.ts
|
|
2890
|
+
function getCurrentSessionScope() {
|
|
2891
|
+
try {
|
|
2892
|
+
return resolveExeSession();
|
|
2893
|
+
} catch {
|
|
2894
|
+
return null;
|
|
2895
|
+
}
|
|
2896
|
+
}
|
|
2897
|
+
function strictSessionScopeFilter(sessionScope, tableAlias) {
|
|
2898
|
+
const scope = sessionScope !== void 0 ? sessionScope : getCurrentSessionScope();
|
|
2899
|
+
if (!scope) return { sql: "", args: [] };
|
|
2900
|
+
const col = tableAlias ? `${tableAlias}.session_scope` : "session_scope";
|
|
2901
|
+
return {
|
|
2902
|
+
sql: ` AND ${col} = ?`,
|
|
2903
|
+
args: [scope]
|
|
2904
|
+
};
|
|
2905
|
+
}
|
|
2906
|
+
var init_task_scope = __esm({
|
|
2907
|
+
"src/lib/task-scope.ts"() {
|
|
2908
|
+
"use strict";
|
|
2909
|
+
init_tmux_routing();
|
|
2910
|
+
}
|
|
2911
|
+
});
|
|
2912
|
+
|
|
2913
|
+
// src/lib/notifications.ts
|
|
2914
|
+
import crypto from "crypto";
|
|
1959
2915
|
import path12 from "path";
|
|
1960
|
-
import
|
|
2916
|
+
import os9 from "os";
|
|
2917
|
+
import {
|
|
2918
|
+
readFileSync as readFileSync8,
|
|
2919
|
+
readdirSync as readdirSync3,
|
|
2920
|
+
unlinkSync as unlinkSync2,
|
|
2921
|
+
existsSync as existsSync11,
|
|
2922
|
+
rmdirSync
|
|
2923
|
+
} from "fs";
|
|
2924
|
+
var init_notifications = __esm({
|
|
2925
|
+
"src/lib/notifications.ts"() {
|
|
2926
|
+
"use strict";
|
|
2927
|
+
init_database();
|
|
2928
|
+
init_task_scope();
|
|
2929
|
+
}
|
|
2930
|
+
});
|
|
2931
|
+
|
|
2932
|
+
// src/lib/tasks-review.ts
|
|
2933
|
+
import path13 from "path";
|
|
2934
|
+
import { existsSync as existsSync12, readdirSync as readdirSync4, unlinkSync as unlinkSync3 } from "fs";
|
|
1961
2935
|
function formatAge(isoTimestamp) {
|
|
1962
2936
|
if (!isoTimestamp) return "";
|
|
1963
2937
|
const ms = Date.now() - new Date(isoTimestamp).getTime();
|
|
@@ -1975,21 +2949,14 @@ function isStale(isoTimestamp) {
|
|
|
1975
2949
|
}
|
|
1976
2950
|
async function listPendingReviews(limit, sessionScope) {
|
|
1977
2951
|
const client = getClient();
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
WHERE status = 'needs_review'
|
|
1982
|
-
AND session_scope = ?
|
|
1983
|
-
ORDER BY updated_at ASC LIMIT ?`,
|
|
1984
|
-
args: [sessionScope, limit]
|
|
1985
|
-
});
|
|
1986
|
-
return result2.rows;
|
|
1987
|
-
}
|
|
2952
|
+
const scope = strictSessionScopeFilter(
|
|
2953
|
+
sessionScope === void 0 ? getCurrentSessionScope() : sessionScope
|
|
2954
|
+
);
|
|
1988
2955
|
const result = await client.execute({
|
|
1989
2956
|
sql: `SELECT title, assigned_to, project_name, updated_at FROM tasks
|
|
1990
|
-
WHERE status = 'needs_review'
|
|
2957
|
+
WHERE status = 'needs_review'${scope.sql}
|
|
1991
2958
|
ORDER BY updated_at ASC LIMIT ?`,
|
|
1992
|
-
args: [limit]
|
|
2959
|
+
args: [...scope.args, limit]
|
|
1993
2960
|
});
|
|
1994
2961
|
return result.rows;
|
|
1995
2962
|
}
|
|
@@ -2001,7 +2968,7 @@ async function cleanupOrphanedReviews() {
|
|
|
2001
2968
|
WHERE status IN ('open', 'needs_review', 'in_progress')
|
|
2002
2969
|
AND assigned_by = 'system'
|
|
2003
2970
|
AND title LIKE 'Review:%'
|
|
2004
|
-
AND parent_task_id IN (SELECT id FROM tasks WHERE status IN ('done', 'cancelled'))`,
|
|
2971
|
+
AND parent_task_id IN (SELECT id FROM tasks WHERE status IN ('done', 'cancelled', 'closed'))`,
|
|
2005
2972
|
args: [now]
|
|
2006
2973
|
});
|
|
2007
2974
|
const r1b = await client.execute({
|
|
@@ -2038,6 +3005,7 @@ var init_tasks_review = __esm({
|
|
|
2038
3005
|
init_tmux_routing();
|
|
2039
3006
|
init_session_key();
|
|
2040
3007
|
init_state_bus();
|
|
3008
|
+
init_task_scope();
|
|
2041
3009
|
}
|
|
2042
3010
|
});
|
|
2043
3011
|
|
|
@@ -2047,16 +3015,16 @@ init_database();
|
|
|
2047
3015
|
|
|
2048
3016
|
// src/lib/keychain.ts
|
|
2049
3017
|
import { readFile as readFile3, writeFile as writeFile3, unlink, mkdir as mkdir3, chmod as chmod2 } from "fs/promises";
|
|
2050
|
-
import { existsSync as
|
|
2051
|
-
import
|
|
2052
|
-
import
|
|
3018
|
+
import { existsSync as existsSync4 } from "fs";
|
|
3019
|
+
import path4 from "path";
|
|
3020
|
+
import os4 from "os";
|
|
2053
3021
|
var SERVICE = "exe-mem";
|
|
2054
3022
|
var ACCOUNT = "master-key";
|
|
2055
3023
|
function getKeyDir() {
|
|
2056
|
-
return process.env.EXE_OS_DIR ?? process.env.EXE_MEM_DIR ??
|
|
3024
|
+
return process.env.EXE_OS_DIR ?? process.env.EXE_MEM_DIR ?? path4.join(os4.homedir(), ".exe-os");
|
|
2057
3025
|
}
|
|
2058
3026
|
function getKeyPath() {
|
|
2059
|
-
return
|
|
3027
|
+
return path4.join(getKeyDir(), "master.key");
|
|
2060
3028
|
}
|
|
2061
3029
|
async function tryKeytar() {
|
|
2062
3030
|
try {
|
|
@@ -2077,9 +3045,9 @@ async function getMasterKey() {
|
|
|
2077
3045
|
}
|
|
2078
3046
|
}
|
|
2079
3047
|
const keyPath = getKeyPath();
|
|
2080
|
-
if (!
|
|
3048
|
+
if (!existsSync4(keyPath)) {
|
|
2081
3049
|
process.stderr.write(
|
|
2082
|
-
`[keychain] Key not found at ${keyPath} (HOME=${
|
|
3050
|
+
`[keychain] Key not found at ${keyPath} (HOME=${os4.homedir()}, EXE_OS_DIR=${process.env.EXE_OS_DIR ?? "unset"})
|
|
2083
3051
|
`
|
|
2084
3052
|
);
|
|
2085
3053
|
return null;
|