@askexenow/exe-os 0.8.61 → 0.8.63
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 +2 -3
- package/dist/bin/backfill-responses.js +3 -4
- package/dist/bin/backfill-vectors.js +0 -1
- package/dist/bin/cleanup-stale-review-tasks.js +0 -1
- package/dist/bin/cli.js +1654 -397
- package/dist/bin/exe-assign.js +0 -1
- package/dist/bin/exe-boot.js +61 -84
- package/dist/bin/exe-cloud.js +28 -60
- package/dist/bin/exe-dispatch.js +0 -1
- package/dist/bin/exe-doctor.js +0 -1
- package/dist/bin/exe-export-behaviors.js +1 -2
- package/dist/bin/exe-forget.js +0 -1
- package/dist/bin/exe-gateway.js +16 -17
- package/dist/bin/exe-heartbeat.js +1 -2
- package/dist/bin/exe-kill.js +2 -3
- package/dist/bin/exe-launch-agent.js +1 -2
- package/dist/bin/exe-link.js +49 -78
- package/dist/bin/exe-pending-messages.js +1 -2
- package/dist/bin/exe-pending-notifications.js +0 -1
- package/dist/bin/exe-pending-reviews.js +1 -2
- package/dist/bin/exe-review.js +0 -1
- package/dist/bin/exe-search.js +2 -3
- package/dist/bin/exe-session-cleanup.js +4 -5
- package/dist/bin/exe-status.js +0 -1
- package/dist/bin/exe-team.js +0 -1
- package/dist/bin/git-sweep.js +0 -1
- package/dist/bin/graph-backfill.js +5 -6
- package/dist/bin/graph-export.js +0 -1
- package/dist/bin/scan-tasks.js +0 -1
- package/dist/bin/setup.js +1460 -115
- package/dist/bin/shard-migrate.js +0 -1
- package/dist/bin/wiki-sync.js +0 -1
- package/dist/gateway/index.js +16 -17
- package/dist/hooks/bug-report-worker.js +11 -12
- package/dist/hooks/commit-complete.js +0 -1
- package/dist/hooks/error-recall.js +2 -3
- package/dist/hooks/ingest-worker.js +14 -15
- package/dist/hooks/instructions-loaded.js +0 -1
- package/dist/hooks/notification.js +0 -1
- package/dist/hooks/post-compact.js +0 -1
- package/dist/hooks/pre-compact.js +2 -3
- package/dist/hooks/pre-tool-use.js +0 -1
- package/dist/hooks/prompt-ingest-worker.js +2 -3
- package/dist/hooks/prompt-submit.js +6 -7
- package/dist/hooks/response-ingest-worker.js +2 -3
- package/dist/hooks/session-end.js +3 -4
- package/dist/hooks/session-start.js +2 -3
- package/dist/hooks/stop.js +2 -3
- package/dist/hooks/subagent-stop.js +0 -1
- package/dist/hooks/summary-worker.js +51 -74
- package/dist/index.js +7 -8
- package/dist/lib/cloud-sync.js +21 -12
- package/dist/lib/consolidation.js +0 -1
- package/dist/lib/exe-daemon.js +33 -65
- package/dist/lib/hybrid-search.js +2 -3
- package/dist/lib/keychain.js +19 -58
- package/dist/lib/schedules.js +2 -3
- package/dist/lib/store.js +0 -1
- package/dist/mcp/server.js +29 -30
- package/dist/runtime/index.js +2 -3
- package/dist/tui/App.js +24 -56
- package/package.json +1 -1
|
@@ -1528,7 +1528,7 @@ ${p.content}`).join("\n\n");
|
|
|
1528
1528
|
});
|
|
1529
1529
|
|
|
1530
1530
|
// src/bin/backfill-conversations.ts
|
|
1531
|
-
import
|
|
1531
|
+
import crypto from "crypto";
|
|
1532
1532
|
import { createReadStream } from "fs";
|
|
1533
1533
|
import { readdir, stat } from "fs/promises";
|
|
1534
1534
|
import path5 from "path";
|
|
@@ -1547,7 +1547,6 @@ import { readFile, writeFile, unlink, mkdir, chmod } from "fs/promises";
|
|
|
1547
1547
|
import { existsSync } from "fs";
|
|
1548
1548
|
import path from "path";
|
|
1549
1549
|
import os from "os";
|
|
1550
|
-
import crypto from "crypto";
|
|
1551
1550
|
var SERVICE = "exe-mem";
|
|
1552
1551
|
var ACCOUNT = "master-key";
|
|
1553
1552
|
function getKeyDir() {
|
|
@@ -2557,7 +2556,7 @@ async function backfillConversations(options) {
|
|
|
2557
2556
|
}
|
|
2558
2557
|
}
|
|
2559
2558
|
await writeMemory({
|
|
2560
|
-
id:
|
|
2559
|
+
id: crypto.randomUUID(),
|
|
2561
2560
|
agent_id: conv.agentId,
|
|
2562
2561
|
agent_role: conv.agentId === "exe" ? "COO" : "specialist",
|
|
2563
2562
|
session_id: conv.sessionId,
|
|
@@ -1528,7 +1528,7 @@ ${p.content}`).join("\n\n");
|
|
|
1528
1528
|
});
|
|
1529
1529
|
|
|
1530
1530
|
// src/bin/backfill-responses.ts
|
|
1531
|
-
import
|
|
1531
|
+
import crypto from "crypto";
|
|
1532
1532
|
import { createReadStream } from "fs";
|
|
1533
1533
|
import { readdir, stat } from "fs/promises";
|
|
1534
1534
|
import path5 from "path";
|
|
@@ -1546,7 +1546,6 @@ import { readFile, writeFile, unlink, mkdir, chmod } from "fs/promises";
|
|
|
1546
1546
|
import { existsSync } from "fs";
|
|
1547
1547
|
import path from "path";
|
|
1548
1548
|
import os from "os";
|
|
1549
|
-
import crypto from "crypto";
|
|
1550
1549
|
var SERVICE = "exe-mem";
|
|
1551
1550
|
var ACCOUNT = "master-key";
|
|
1552
1551
|
function getKeyDir() {
|
|
@@ -2311,7 +2310,7 @@ function extractText(content) {
|
|
|
2311
2310
|
return texts.join("\n");
|
|
2312
2311
|
}
|
|
2313
2312
|
function hashText(text) {
|
|
2314
|
-
return
|
|
2313
|
+
return crypto.createHash("sha256").update(text).digest("hex");
|
|
2315
2314
|
}
|
|
2316
2315
|
async function loadExistingHashes() {
|
|
2317
2316
|
const client = getClient();
|
|
@@ -2377,7 +2376,7 @@ async function processFile(filePath, seenHashes, daemonConnected, stats) {
|
|
|
2377
2376
|
}
|
|
2378
2377
|
}
|
|
2379
2378
|
await writeMemory({
|
|
2380
|
-
id:
|
|
2379
|
+
id: crypto.randomUUID(),
|
|
2381
2380
|
agent_id: agentId,
|
|
2382
2381
|
agent_role: agentId === "exe" ? "COO" : "specialist",
|
|
2383
2382
|
session_id: entry.sessionId ?? "backfill",
|
|
@@ -1541,7 +1541,6 @@ import { readFile, writeFile, unlink, mkdir, chmod } from "fs/promises";
|
|
|
1541
1541
|
import { existsSync } from "fs";
|
|
1542
1542
|
import path from "path";
|
|
1543
1543
|
import os from "os";
|
|
1544
|
-
import crypto from "crypto";
|
|
1545
1544
|
var SERVICE = "exe-mem";
|
|
1546
1545
|
var ACCOUNT = "master-key";
|
|
1547
1546
|
function getKeyDir() {
|
|
@@ -1919,7 +1919,6 @@ import { readFile, writeFile, unlink, mkdir, chmod } from "fs/promises";
|
|
|
1919
1919
|
import { existsSync } from "fs";
|
|
1920
1920
|
import path from "path";
|
|
1921
1921
|
import os from "os";
|
|
1922
|
-
import crypto from "crypto";
|
|
1923
1922
|
var SERVICE = "exe-mem";
|
|
1924
1923
|
var ACCOUNT = "master-key";
|
|
1925
1924
|
function getKeyDir() {
|