@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.
Files changed (62) hide show
  1. package/dist/bin/backfill-conversations.js +2 -3
  2. package/dist/bin/backfill-responses.js +3 -4
  3. package/dist/bin/backfill-vectors.js +0 -1
  4. package/dist/bin/cleanup-stale-review-tasks.js +0 -1
  5. package/dist/bin/cli.js +1654 -397
  6. package/dist/bin/exe-assign.js +0 -1
  7. package/dist/bin/exe-boot.js +61 -84
  8. package/dist/bin/exe-cloud.js +28 -60
  9. package/dist/bin/exe-dispatch.js +0 -1
  10. package/dist/bin/exe-doctor.js +0 -1
  11. package/dist/bin/exe-export-behaviors.js +1 -2
  12. package/dist/bin/exe-forget.js +0 -1
  13. package/dist/bin/exe-gateway.js +16 -17
  14. package/dist/bin/exe-heartbeat.js +1 -2
  15. package/dist/bin/exe-kill.js +2 -3
  16. package/dist/bin/exe-launch-agent.js +1 -2
  17. package/dist/bin/exe-link.js +49 -78
  18. package/dist/bin/exe-pending-messages.js +1 -2
  19. package/dist/bin/exe-pending-notifications.js +0 -1
  20. package/dist/bin/exe-pending-reviews.js +1 -2
  21. package/dist/bin/exe-review.js +0 -1
  22. package/dist/bin/exe-search.js +2 -3
  23. package/dist/bin/exe-session-cleanup.js +4 -5
  24. package/dist/bin/exe-status.js +0 -1
  25. package/dist/bin/exe-team.js +0 -1
  26. package/dist/bin/git-sweep.js +0 -1
  27. package/dist/bin/graph-backfill.js +5 -6
  28. package/dist/bin/graph-export.js +0 -1
  29. package/dist/bin/scan-tasks.js +0 -1
  30. package/dist/bin/setup.js +1460 -115
  31. package/dist/bin/shard-migrate.js +0 -1
  32. package/dist/bin/wiki-sync.js +0 -1
  33. package/dist/gateway/index.js +16 -17
  34. package/dist/hooks/bug-report-worker.js +11 -12
  35. package/dist/hooks/commit-complete.js +0 -1
  36. package/dist/hooks/error-recall.js +2 -3
  37. package/dist/hooks/ingest-worker.js +14 -15
  38. package/dist/hooks/instructions-loaded.js +0 -1
  39. package/dist/hooks/notification.js +0 -1
  40. package/dist/hooks/post-compact.js +0 -1
  41. package/dist/hooks/pre-compact.js +2 -3
  42. package/dist/hooks/pre-tool-use.js +0 -1
  43. package/dist/hooks/prompt-ingest-worker.js +2 -3
  44. package/dist/hooks/prompt-submit.js +6 -7
  45. package/dist/hooks/response-ingest-worker.js +2 -3
  46. package/dist/hooks/session-end.js +3 -4
  47. package/dist/hooks/session-start.js +2 -3
  48. package/dist/hooks/stop.js +2 -3
  49. package/dist/hooks/subagent-stop.js +0 -1
  50. package/dist/hooks/summary-worker.js +51 -74
  51. package/dist/index.js +7 -8
  52. package/dist/lib/cloud-sync.js +21 -12
  53. package/dist/lib/consolidation.js +0 -1
  54. package/dist/lib/exe-daemon.js +33 -65
  55. package/dist/lib/hybrid-search.js +2 -3
  56. package/dist/lib/keychain.js +19 -58
  57. package/dist/lib/schedules.js +2 -3
  58. package/dist/lib/store.js +0 -1
  59. package/dist/mcp/server.js +29 -30
  60. package/dist/runtime/index.js +2 -3
  61. package/dist/tui/App.js +24 -56
  62. 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 crypto2 from "crypto";
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: crypto2.randomUUID(),
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 crypto2 from "crypto";
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 crypto2.createHash("sha256").update(text).digest("hex");
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: crypto2.randomUUID(),
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() {