@askexenow/exe-os 0.9.111 → 0.9.113

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 (95) hide show
  1. package/README.md +9 -7
  2. package/dist/bin/agentic-ontology-backfill.js +62 -12
  3. package/dist/bin/agentic-reflection-backfill.js +37 -2
  4. package/dist/bin/agentic-semantic-label.js +37 -2
  5. package/dist/bin/backfill-conversations.js +61 -11
  6. package/dist/bin/backfill-responses.js +62 -12
  7. package/dist/bin/backfill-vectors.js +37 -2
  8. package/dist/bin/bulk-sync-postgres.js +63 -13
  9. package/dist/bin/cleanup-stale-review-tasks.js +83 -16
  10. package/dist/bin/cli.js +312 -80
  11. package/dist/bin/exe-agent-config.js +7 -1
  12. package/dist/bin/exe-agent.js +29 -3
  13. package/dist/bin/exe-assign.js +62 -12
  14. package/dist/bin/exe-boot.js +500 -151
  15. package/dist/bin/exe-call.js +46 -5
  16. package/dist/bin/exe-cloud.js +101 -16
  17. package/dist/bin/exe-dispatch.js +827 -27
  18. package/dist/bin/exe-doctor.js +61 -11
  19. package/dist/bin/exe-export-behaviors.js +67 -14
  20. package/dist/bin/exe-forget.js +62 -12
  21. package/dist/bin/exe-gateway.js +147 -27
  22. package/dist/bin/exe-heartbeat.js +83 -16
  23. package/dist/bin/exe-kill.js +62 -12
  24. package/dist/bin/exe-launch-agent.js +83 -15
  25. package/dist/bin/exe-new-employee.js +176 -8
  26. package/dist/bin/exe-pending-messages.js +83 -16
  27. package/dist/bin/exe-pending-notifications.js +83 -16
  28. package/dist/bin/exe-pending-reviews.js +83 -16
  29. package/dist/bin/exe-rename.js +62 -12
  30. package/dist/bin/exe-review.js +62 -12
  31. package/dist/bin/exe-search.js +62 -12
  32. package/dist/bin/exe-session-cleanup.js +949 -149
  33. package/dist/bin/exe-settings.js +10 -4
  34. package/dist/bin/exe-start-codex.js +537 -248
  35. package/dist/bin/exe-start-opencode.js +547 -168
  36. package/dist/bin/exe-status.js +83 -16
  37. package/dist/bin/exe-support.js +1 -1
  38. package/dist/bin/exe-team.js +62 -12
  39. package/dist/bin/git-sweep.js +827 -27
  40. package/dist/bin/graph-backfill.js +62 -12
  41. package/dist/bin/graph-export.js +62 -12
  42. package/dist/bin/install.js +62 -4
  43. package/dist/bin/intercom-check.js +949 -149
  44. package/dist/bin/pre-publish.js +14 -2
  45. package/dist/bin/scan-tasks.js +827 -27
  46. package/dist/bin/setup.js +99 -14
  47. package/dist/bin/shard-migrate.js +62 -12
  48. package/dist/bin/stack-update.js +1 -1
  49. package/dist/bin/update.js +3 -3
  50. package/dist/gateway/index.js +586 -26
  51. package/dist/hooks/bug-report-worker.js +586 -26
  52. package/dist/hooks/codex-stop-task-finalizer.js +977 -143
  53. package/dist/hooks/commit-complete.js +827 -27
  54. package/dist/hooks/error-recall.js +62 -12
  55. package/dist/hooks/ingest.js +4579 -249
  56. package/dist/hooks/instructions-loaded.js +62 -12
  57. package/dist/hooks/notification.js +62 -12
  58. package/dist/hooks/post-compact.js +83 -16
  59. package/dist/hooks/post-tool-combined.js +83 -16
  60. package/dist/hooks/pre-compact.js +907 -107
  61. package/dist/hooks/pre-tool-use.js +98 -16
  62. package/dist/hooks/prompt-submit.js +596 -30
  63. package/dist/hooks/session-end.js +909 -112
  64. package/dist/hooks/session-start.js +112 -17
  65. package/dist/hooks/stop.js +82 -15
  66. package/dist/hooks/subagent-stop.js +83 -16
  67. package/dist/hooks/summary-worker.js +81 -8
  68. package/dist/index.js +595 -29
  69. package/dist/lib/agent-config.js +16 -1
  70. package/dist/lib/cloud-sync.js +45 -1
  71. package/dist/lib/consolidation.js +16 -1
  72. package/dist/lib/database.js +23 -0
  73. package/dist/lib/db.js +23 -0
  74. package/dist/lib/device-registry.js +23 -0
  75. package/dist/lib/employee-templates.js +30 -4
  76. package/dist/lib/employees.js +16 -1
  77. package/dist/lib/exe-daemon.js +482 -52
  78. package/dist/lib/hybrid-search.js +62 -12
  79. package/dist/lib/license.js +3 -3
  80. package/dist/lib/messaging.js +21 -4
  81. package/dist/lib/schedules.js +37 -2
  82. package/dist/lib/skill-learning.js +910 -41
  83. package/dist/lib/status-brief.js +14 -1
  84. package/dist/lib/store.js +62 -12
  85. package/dist/lib/tasks.js +843 -93
  86. package/dist/lib/tmux-routing.js +766 -16
  87. package/dist/mcp/server.js +238 -41
  88. package/dist/mcp/tools/create-task.js +525 -15
  89. package/dist/mcp/tools/deactivate-behavior.js +33 -24
  90. package/dist/mcp/tools/list-tasks.js +21 -4
  91. package/dist/mcp/tools/send-message.js +21 -4
  92. package/dist/mcp/tools/update-task.js +840 -93
  93. package/dist/runtime/index.js +913 -107
  94. package/dist/tui/App.js +227 -58
  95. package/package.json +1 -1
@@ -2028,6 +2028,13 @@ async function ensureSchema() {
2028
2028
  } catch (e) {
2029
2029
  logCatchDebug("migration", e);
2030
2030
  }
2031
+ for (const col of ["created_by_agent TEXT", "created_by_device TEXT", "source_session_id TEXT"]) {
2032
+ try {
2033
+ await client.execute({ sql: `ALTER TABLE behaviors ADD COLUMN ${col}`, args: [] });
2034
+ } catch (e) {
2035
+ logCatchDebug("migration", e);
2036
+ }
2037
+ }
2031
2038
  try {
2032
2039
  await client.execute({
2033
2040
  sql: `ALTER TABLE tasks ADD COLUMN blocked_by TEXT`,
@@ -3244,6 +3251,22 @@ async function ensureSchema() {
3244
3251
  } catch (e) {
3245
3252
  logCatchDebug("migration", e);
3246
3253
  }
3254
+ try {
3255
+ await client.execute({
3256
+ sql: `ALTER TABLE memories ADD COLUMN visibility TEXT DEFAULT 'private'`,
3257
+ args: []
3258
+ });
3259
+ } catch (e) {
3260
+ logCatchDebug("migration", e);
3261
+ }
3262
+ try {
3263
+ await client.execute({
3264
+ sql: `ALTER TABLE memories ADD COLUMN strength REAL DEFAULT 1.0`,
3265
+ args: []
3266
+ });
3267
+ } catch (e) {
3268
+ logCatchDebug("migration", e);
3269
+ }
3247
3270
  }
3248
3271
  async function disposeDatabase() {
3249
3272
  if (_walCheckpointTimer) {
@@ -4367,11 +4390,17 @@ var init_platform_procedures = __esm({
4367
4390
  content: "Founder -> coordinator (the executive agent, internally routed as 'COO') -> CTO/CMO. CTO -> engineers. CMO -> content production. Never skip levels: the coordinator does not bypass managers for specialist work. Specialists report to their manager. If you need cross-team info, use ask_team_memory \u2014 don't read other agents' task folders. Each level owns dispatch downward and review upward."
4368
4391
  },
4369
4392
  {
4370
- title: "Customer orchestration maturity \u2014 recommend, never trap",
4393
+ title: "Orchestration phase guidance \u2014 recommend, never trap",
4371
4394
  domain: "workflow",
4372
4395
  priority: "p1",
4373
4396
  content: "New customers start best in Phase 1: founder \u2194 coordinator/Chief of Staff, building company context. Suggest Phase 2 executives when domain work repeats; suggest Phase 3 parallel execution only when review/permission gates are ready. This is guidance, not a blocker: users may jump phases anytime. Never overwrite their phase, role titles, identities, or custom org design."
4374
4397
  },
4398
+ {
4399
+ title: "Routing slot vs display title \u2014 internal 'coo' is plumbing, not your name",
4400
+ domain: "identity",
4401
+ priority: "p0",
4402
+ content: "These procedures reference 'COO' as a shorthand for the coordinator role. This is an INTERNAL routing slot used by exe-os code (chain-of-command checks, dispatch logic, session detection). It is NOT your display title. Your actual title comes from your identity file's `title:` field \u2014 that is what you use externally: introductions, sign-offs, team comms, and any user-facing text. If your identity says `title: AI Chief of Staff`, you are the AI Chief of Staff. The routing slot stays `role: coo` for code compatibility \u2014 never rename it, but also never introduce yourself as 'COO' unless your identity file explicitly says so. The founder chose your title; respect it."
4403
+ },
4375
4404
  {
4376
4405
  title: "Single dispatch path \u2014 create_task only",
4377
4406
  domain: "workflow",
@@ -4405,6 +4434,12 @@ var init_platform_procedures = __esm({
4405
4434
  priority: "p0",
4406
4435
  content: "NEVER: (1) Access the database directly \u2014 it's SQLCipher encrypted, always fails. Use MCP tools only. (2) Manually spawn tmux sessions \u2014 create_task handles it. (3) Run git checkout main \u2014 agents work in worktrees. (4) Modify another agent's in-progress task. (5) Push to remote \u2014 the COO reviews and pushes. (6) Skip update_task(done) \u2014 it's the ONLY way your work gets reviewed. (7) Run git init."
4407
4436
  },
4437
+ {
4438
+ title: "Destructive operations \u2014 mandatory reviewer gate",
4439
+ domain: "security",
4440
+ priority: "p0",
4441
+ content: "Before ANY destructive operation (delete, remove, overwrite, drop, reset, force-push, truncate), you MUST: (1) Have your full task spec accessible \u2014 if you cannot read it, STOP and report to your reviewer. Never improvise destructive actions. (2) Confirm with your reviewer (assigned_by or COO) before executing. (3) If the task spec explicitly authorizes the operation, proceed \u2014 but log it. Violation = immediate task failure. This applies to ALL agents regardless of role."
4442
+ },
4408
4443
  {
4409
4444
  title: "Customer patch triage \u2014 upstream bug vs customization",
4410
4445
  domain: "support",
@@ -4556,7 +4591,7 @@ var init_platform_procedures = __esm({
4556
4591
  title: "MCP tool dispatch \u2014 all tools use action parameter",
4557
4592
  domain: "tool-use",
4558
4593
  priority: "p0",
4559
- content: 'exe-os MCP tools come in two surfaces depending on EXE_MCP_TOOL_SURFACE config. Consolidated (19 tools): action-based dispatch \u2014 memory(action="recall"), task(action="create"), etc. Legacy (108 tools): one tool per operation \u2014 recall_my_memory, create_task, etc. Both surfaces have identical functionality. Use whichever tool names are available in your session. If you see domain tools (memory, task, config, etc.), use the action parameter. If you see specific tools (recall_my_memory, create_task, etc.), call them directly.'
4594
+ content: 'exe-os MCP tools use consolidated action-based dispatch by default (19 tools). Call domain tools with an action parameter: memory(action="recall"), task(action="create"), config(action="list_employees"), etc. Legacy mode (108 separate tools like recall_my_memory, create_task) is still available via EXE_MCP_TOOL_SURFACE=legacy but will be removed in a future version. If you see specific tool names, call them directly \u2014 both surfaces are identical. Consolidated is the default and recommended surface.'
4560
4595
  },
4561
4596
  {
4562
4597
  title: "MCP tools \u2014 memory, decision, and search",
@@ -4690,10 +4725,24 @@ function stableId(memoryId, type, content) {
4690
4725
  return createHash3("sha256").update(`${memoryId}:${type}:${content}`).digest("hex").slice(0, 32);
4691
4726
  }
4692
4727
  function cleanText(text) {
4693
- return text.replace(/```[\s\S]*?```/g, " ").replace(/<[^>]+>/g, " ").replace(/\s+/g, " ").trim();
4694
- }
4695
- function splitSentences(text) {
4696
- return cleanText(text).split(/(?<=[.!?])\s+|\n+/).map((s) => s.trim()).filter((s) => s.length >= 24 && s.length <= MAX_SENTENCE_CHARS);
4728
+ let cleaned = text.replace(
4729
+ /```(\w*)\n(.*?)(?:\n[\s\S]*?)```/g,
4730
+ (_m, lang, firstLine) => `[code${lang ? `:${lang}` : ""}] ${firstLine.trim()}`
4731
+ );
4732
+ cleaned = cleaned.replace(/<[^>]+>/g, " ").replace(/\s+/g, " ").trim();
4733
+ return cleaned;
4734
+ }
4735
+ function splitSegments(text) {
4736
+ const cleaned = cleanText(text);
4737
+ const segments = cleaned.split(/(?<=[.!?:;])\s+|\n{2,}|(?<=\))\s+(?=[A-Z])|\s*[|│]\s*/).map((s) => s.trim()).filter((s) => s.length >= MIN_SEGMENT_CHARS && s.length <= MAX_SEGMENT_CHARS);
4738
+ if (segments.length === 0 && cleaned.length >= MIN_SEGMENT_CHARS) {
4739
+ const lines = cleaned.split(/\n+/).map((l) => l.trim()).filter((l) => l.length >= MIN_SEGMENT_CHARS && l.length <= MAX_SEGMENT_CHARS);
4740
+ if (lines.length > 0) return lines;
4741
+ if (cleaned.length >= MIN_SEGMENT_CHARS) {
4742
+ return [cleaned.slice(0, MAX_SEGMENT_CHARS)];
4743
+ }
4744
+ }
4745
+ return segments;
4697
4746
  }
4698
4747
  function inferCardType(sentence, toolName) {
4699
4748
  const lower = sentence.toLowerCase();
@@ -4725,12 +4774,12 @@ function predicateFor(type) {
4725
4774
  }
4726
4775
  }
4727
4776
  function extractMemoryCards(row) {
4728
- const sentences = splitSentences(row.raw_text);
4777
+ const segments = splitSegments(row.raw_text);
4729
4778
  const cards = [];
4730
- for (const sentence of sentences) {
4779
+ for (const sentence of segments) {
4731
4780
  const type = inferCardType(sentence, row.tool_name);
4732
4781
  const subject = extractSubject(sentence, row.agent_id);
4733
- const content = sentence.length > MAX_SENTENCE_CHARS ? `${sentence.slice(0, MAX_SENTENCE_CHARS - 1)}\u2026` : sentence;
4782
+ const content = sentence.length > MAX_SEGMENT_CHARS ? `${sentence.slice(0, MAX_SEGMENT_CHARS - 1)}\u2026` : sentence;
4734
4783
  cards.push({
4735
4784
  id: stableId(row.id, type, content),
4736
4785
  memory_id: row.id,
@@ -4826,13 +4875,14 @@ Source memory: ${String(row.source_ref ?? row.memory_id)}`,
4826
4875
  last_accessed: String(row.timestamp)
4827
4876
  }));
4828
4877
  }
4829
- var MAX_CARDS_PER_MEMORY, MAX_SENTENCE_CHARS;
4878
+ var MAX_CARDS_PER_MEMORY, MAX_SEGMENT_CHARS, MIN_SEGMENT_CHARS;
4830
4879
  var init_memory_cards = __esm({
4831
4880
  "src/lib/memory-cards.ts"() {
4832
4881
  "use strict";
4833
4882
  init_database();
4834
- MAX_CARDS_PER_MEMORY = 6;
4835
- MAX_SENTENCE_CHARS = 360;
4883
+ MAX_CARDS_PER_MEMORY = 8;
4884
+ MAX_SEGMENT_CHARS = 500;
4885
+ MIN_SEGMENT_CHARS = 20;
4836
4886
  }
4837
4887
  });
4838
4888
 
@@ -2028,6 +2028,13 @@ async function ensureSchema() {
2028
2028
  } catch (e) {
2029
2029
  logCatchDebug("migration", e);
2030
2030
  }
2031
+ for (const col of ["created_by_agent TEXT", "created_by_device TEXT", "source_session_id TEXT"]) {
2032
+ try {
2033
+ await client.execute({ sql: `ALTER TABLE behaviors ADD COLUMN ${col}`, args: [] });
2034
+ } catch (e) {
2035
+ logCatchDebug("migration", e);
2036
+ }
2037
+ }
2031
2038
  try {
2032
2039
  await client.execute({
2033
2040
  sql: `ALTER TABLE tasks ADD COLUMN blocked_by TEXT`,
@@ -3244,6 +3251,22 @@ async function ensureSchema() {
3244
3251
  } catch (e) {
3245
3252
  logCatchDebug("migration", e);
3246
3253
  }
3254
+ try {
3255
+ await client.execute({
3256
+ sql: `ALTER TABLE memories ADD COLUMN visibility TEXT DEFAULT 'private'`,
3257
+ args: []
3258
+ });
3259
+ } catch (e) {
3260
+ logCatchDebug("migration", e);
3261
+ }
3262
+ try {
3263
+ await client.execute({
3264
+ sql: `ALTER TABLE memories ADD COLUMN strength REAL DEFAULT 1.0`,
3265
+ args: []
3266
+ });
3267
+ } catch (e) {
3268
+ logCatchDebug("migration", e);
3269
+ }
3247
3270
  }
3248
3271
  async function disposeDatabase() {
3249
3272
  if (_walCheckpointTimer) {
@@ -4367,11 +4390,17 @@ var init_platform_procedures = __esm({
4367
4390
  content: "Founder -> coordinator (the executive agent, internally routed as 'COO') -> CTO/CMO. CTO -> engineers. CMO -> content production. Never skip levels: the coordinator does not bypass managers for specialist work. Specialists report to their manager. If you need cross-team info, use ask_team_memory \u2014 don't read other agents' task folders. Each level owns dispatch downward and review upward."
4368
4391
  },
4369
4392
  {
4370
- title: "Customer orchestration maturity \u2014 recommend, never trap",
4393
+ title: "Orchestration phase guidance \u2014 recommend, never trap",
4371
4394
  domain: "workflow",
4372
4395
  priority: "p1",
4373
4396
  content: "New customers start best in Phase 1: founder \u2194 coordinator/Chief of Staff, building company context. Suggest Phase 2 executives when domain work repeats; suggest Phase 3 parallel execution only when review/permission gates are ready. This is guidance, not a blocker: users may jump phases anytime. Never overwrite their phase, role titles, identities, or custom org design."
4374
4397
  },
4398
+ {
4399
+ title: "Routing slot vs display title \u2014 internal 'coo' is plumbing, not your name",
4400
+ domain: "identity",
4401
+ priority: "p0",
4402
+ content: "These procedures reference 'COO' as a shorthand for the coordinator role. This is an INTERNAL routing slot used by exe-os code (chain-of-command checks, dispatch logic, session detection). It is NOT your display title. Your actual title comes from your identity file's `title:` field \u2014 that is what you use externally: introductions, sign-offs, team comms, and any user-facing text. If your identity says `title: AI Chief of Staff`, you are the AI Chief of Staff. The routing slot stays `role: coo` for code compatibility \u2014 never rename it, but also never introduce yourself as 'COO' unless your identity file explicitly says so. The founder chose your title; respect it."
4403
+ },
4375
4404
  {
4376
4405
  title: "Single dispatch path \u2014 create_task only",
4377
4406
  domain: "workflow",
@@ -4405,6 +4434,12 @@ var init_platform_procedures = __esm({
4405
4434
  priority: "p0",
4406
4435
  content: "NEVER: (1) Access the database directly \u2014 it's SQLCipher encrypted, always fails. Use MCP tools only. (2) Manually spawn tmux sessions \u2014 create_task handles it. (3) Run git checkout main \u2014 agents work in worktrees. (4) Modify another agent's in-progress task. (5) Push to remote \u2014 the COO reviews and pushes. (6) Skip update_task(done) \u2014 it's the ONLY way your work gets reviewed. (7) Run git init."
4407
4436
  },
4437
+ {
4438
+ title: "Destructive operations \u2014 mandatory reviewer gate",
4439
+ domain: "security",
4440
+ priority: "p0",
4441
+ content: "Before ANY destructive operation (delete, remove, overwrite, drop, reset, force-push, truncate), you MUST: (1) Have your full task spec accessible \u2014 if you cannot read it, STOP and report to your reviewer. Never improvise destructive actions. (2) Confirm with your reviewer (assigned_by or COO) before executing. (3) If the task spec explicitly authorizes the operation, proceed \u2014 but log it. Violation = immediate task failure. This applies to ALL agents regardless of role."
4442
+ },
4408
4443
  {
4409
4444
  title: "Customer patch triage \u2014 upstream bug vs customization",
4410
4445
  domain: "support",
@@ -4556,7 +4591,7 @@ var init_platform_procedures = __esm({
4556
4591
  title: "MCP tool dispatch \u2014 all tools use action parameter",
4557
4592
  domain: "tool-use",
4558
4593
  priority: "p0",
4559
- content: 'exe-os MCP tools come in two surfaces depending on EXE_MCP_TOOL_SURFACE config. Consolidated (19 tools): action-based dispatch \u2014 memory(action="recall"), task(action="create"), etc. Legacy (108 tools): one tool per operation \u2014 recall_my_memory, create_task, etc. Both surfaces have identical functionality. Use whichever tool names are available in your session. If you see domain tools (memory, task, config, etc.), use the action parameter. If you see specific tools (recall_my_memory, create_task, etc.), call them directly.'
4594
+ content: 'exe-os MCP tools use consolidated action-based dispatch by default (19 tools). Call domain tools with an action parameter: memory(action="recall"), task(action="create"), config(action="list_employees"), etc. Legacy mode (108 separate tools like recall_my_memory, create_task) is still available via EXE_MCP_TOOL_SURFACE=legacy but will be removed in a future version. If you see specific tool names, call them directly \u2014 both surfaces are identical. Consolidated is the default and recommended surface.'
4560
4595
  },
4561
4596
  {
4562
4597
  title: "MCP tools \u2014 memory, decision, and search",
@@ -4690,10 +4725,24 @@ function stableId(memoryId, type, content) {
4690
4725
  return createHash2("sha256").update(`${memoryId}:${type}:${content}`).digest("hex").slice(0, 32);
4691
4726
  }
4692
4727
  function cleanText(text) {
4693
- return text.replace(/```[\s\S]*?```/g, " ").replace(/<[^>]+>/g, " ").replace(/\s+/g, " ").trim();
4694
- }
4695
- function splitSentences(text) {
4696
- return cleanText(text).split(/(?<=[.!?])\s+|\n+/).map((s) => s.trim()).filter((s) => s.length >= 24 && s.length <= MAX_SENTENCE_CHARS);
4728
+ let cleaned = text.replace(
4729
+ /```(\w*)\n(.*?)(?:\n[\s\S]*?)```/g,
4730
+ (_m, lang, firstLine) => `[code${lang ? `:${lang}` : ""}] ${firstLine.trim()}`
4731
+ );
4732
+ cleaned = cleaned.replace(/<[^>]+>/g, " ").replace(/\s+/g, " ").trim();
4733
+ return cleaned;
4734
+ }
4735
+ function splitSegments(text) {
4736
+ const cleaned = cleanText(text);
4737
+ const segments = cleaned.split(/(?<=[.!?:;])\s+|\n{2,}|(?<=\))\s+(?=[A-Z])|\s*[|│]\s*/).map((s) => s.trim()).filter((s) => s.length >= MIN_SEGMENT_CHARS && s.length <= MAX_SEGMENT_CHARS);
4738
+ if (segments.length === 0 && cleaned.length >= MIN_SEGMENT_CHARS) {
4739
+ const lines = cleaned.split(/\n+/).map((l) => l.trim()).filter((l) => l.length >= MIN_SEGMENT_CHARS && l.length <= MAX_SEGMENT_CHARS);
4740
+ if (lines.length > 0) return lines;
4741
+ if (cleaned.length >= MIN_SEGMENT_CHARS) {
4742
+ return [cleaned.slice(0, MAX_SEGMENT_CHARS)];
4743
+ }
4744
+ }
4745
+ return segments;
4697
4746
  }
4698
4747
  function inferCardType(sentence, toolName) {
4699
4748
  const lower = sentence.toLowerCase();
@@ -4725,12 +4774,12 @@ function predicateFor(type) {
4725
4774
  }
4726
4775
  }
4727
4776
  function extractMemoryCards(row) {
4728
- const sentences = splitSentences(row.raw_text);
4777
+ const segments = splitSegments(row.raw_text);
4729
4778
  const cards = [];
4730
- for (const sentence of sentences) {
4779
+ for (const sentence of segments) {
4731
4780
  const type = inferCardType(sentence, row.tool_name);
4732
4781
  const subject = extractSubject(sentence, row.agent_id);
4733
- const content = sentence.length > MAX_SENTENCE_CHARS ? `${sentence.slice(0, MAX_SENTENCE_CHARS - 1)}\u2026` : sentence;
4782
+ const content = sentence.length > MAX_SEGMENT_CHARS ? `${sentence.slice(0, MAX_SEGMENT_CHARS - 1)}\u2026` : sentence;
4734
4783
  cards.push({
4735
4784
  id: stableId(row.id, type, content),
4736
4785
  memory_id: row.id,
@@ -4826,13 +4875,14 @@ Source memory: ${String(row.source_ref ?? row.memory_id)}`,
4826
4875
  last_accessed: String(row.timestamp)
4827
4876
  }));
4828
4877
  }
4829
- var MAX_CARDS_PER_MEMORY, MAX_SENTENCE_CHARS;
4878
+ var MAX_CARDS_PER_MEMORY, MAX_SEGMENT_CHARS, MIN_SEGMENT_CHARS;
4830
4879
  var init_memory_cards = __esm({
4831
4880
  "src/lib/memory-cards.ts"() {
4832
4881
  "use strict";
4833
4882
  init_database();
4834
- MAX_CARDS_PER_MEMORY = 6;
4835
- MAX_SENTENCE_CHARS = 360;
4883
+ MAX_CARDS_PER_MEMORY = 8;
4884
+ MAX_SEGMENT_CHARS = 500;
4885
+ MIN_SEGMENT_CHARS = 20;
4836
4886
  }
4837
4887
  });
4838
4888
 
@@ -2323,6 +2323,13 @@ async function ensureSchema() {
2323
2323
  } catch (e) {
2324
2324
  logCatchDebug("migration", e);
2325
2325
  }
2326
+ for (const col of ["created_by_agent TEXT", "created_by_device TEXT", "source_session_id TEXT"]) {
2327
+ try {
2328
+ await client.execute({ sql: `ALTER TABLE behaviors ADD COLUMN ${col}`, args: [] });
2329
+ } catch (e) {
2330
+ logCatchDebug("migration", e);
2331
+ }
2332
+ }
2326
2333
  try {
2327
2334
  await client.execute({
2328
2335
  sql: `ALTER TABLE tasks ADD COLUMN blocked_by TEXT`,
@@ -3539,6 +3546,22 @@ async function ensureSchema() {
3539
3546
  } catch (e) {
3540
3547
  logCatchDebug("migration", e);
3541
3548
  }
3549
+ try {
3550
+ await client.execute({
3551
+ sql: `ALTER TABLE memories ADD COLUMN visibility TEXT DEFAULT 'private'`,
3552
+ args: []
3553
+ });
3554
+ } catch (e) {
3555
+ logCatchDebug("migration", e);
3556
+ }
3557
+ try {
3558
+ await client.execute({
3559
+ sql: `ALTER TABLE memories ADD COLUMN strength REAL DEFAULT 1.0`,
3560
+ args: []
3561
+ });
3562
+ } catch (e) {
3563
+ logCatchDebug("migration", e);
3564
+ }
3542
3565
  }
3543
3566
  async function disposeDatabase() {
3544
3567
  if (_walCheckpointTimer) {
@@ -3605,7 +3628,7 @@ var init_license = __esm({
3605
3628
  LICENSE_PATH = path10.join(EXE_AI_DIR, "license.key");
3606
3629
  CACHE_PATH = path10.join(EXE_AI_DIR, "license-cache.json");
3607
3630
  DEVICE_ID_PATH = path10.join(EXE_AI_DIR, "device-id");
3608
- API_BASE = process.env.EXE_CLOUD_ENDPOINT ?? "https://askexe.com/cloud";
3631
+ API_BASE = process.env.EXE_CLOUD_ENDPOINT ?? "https://cloud.askexe.com";
3609
3632
  }
3610
3633
  });
3611
3634
 
@@ -3658,6 +3681,18 @@ function extractRootExe(name) {
3658
3681
  const parts = name.split("-").filter(Boolean);
3659
3682
  return parts.length > 0 ? parts[parts.length - 1] : null;
3660
3683
  }
3684
+ function registerParentExe(sessionKey, parentExe, dispatchedBy) {
3685
+ if (!existsSync12(SESSION_CACHE)) {
3686
+ mkdirSync7(SESSION_CACHE, { recursive: true });
3687
+ }
3688
+ const rootExe = extractRootExe(parentExe) ?? parentExe;
3689
+ const filePath = path13.join(SESSION_CACHE, `parent-exe-${sessionKey}.json`);
3690
+ writeFileSync7(filePath, JSON.stringify({
3691
+ parentExe: rootExe,
3692
+ dispatchedBy: dispatchedBy || rootExe,
3693
+ registeredAt: (/* @__PURE__ */ new Date()).toISOString()
3694
+ }));
3695
+ }
3661
3696
  function getParentExe(sessionKey) {
3662
3697
  try {
3663
3698
  const data = JSON.parse(readFileSync10(path13.join(SESSION_CACHE, `parent-exe-${sessionKey}.json`), "utf8"));
@@ -3667,11 +3702,12 @@ function getParentExe(sessionKey) {
3667
3702
  }
3668
3703
  }
3669
3704
  function resolveExeSession() {
3705
+ if (process.env.EXE_SESSION_NAME) {
3706
+ const fromEnv = extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
3707
+ if (fromEnv) return fromEnv;
3708
+ }
3670
3709
  const mySession = getMySession();
3671
3710
  if (!mySession) {
3672
- if (process.env.EXE_SESSION_NAME) {
3673
- return extractRootExe(process.env.EXE_SESSION_NAME) ?? process.env.EXE_SESSION_NAME;
3674
- }
3675
3711
  return null;
3676
3712
  }
3677
3713
  const fromSessionName = extractRootExe(mySession);
@@ -3686,6 +3722,10 @@ function resolveExeSession() {
3686
3722
  `[tmux-routing] WARN: cache says "${fromCache}" but session name says "${fromSessionName}". Trusting session name.
3687
3723
  `
3688
3724
  );
3725
+ try {
3726
+ registerParentExe(key, fromSessionName);
3727
+ } catch {
3728
+ }
3689
3729
  candidate = fromSessionName;
3690
3730
  } else {
3691
3731
  candidate = fromCache;
@@ -4989,11 +5029,17 @@ var init_platform_procedures = __esm({
4989
5029
  content: "Founder -> coordinator (the executive agent, internally routed as 'COO') -> CTO/CMO. CTO -> engineers. CMO -> content production. Never skip levels: the coordinator does not bypass managers for specialist work. Specialists report to their manager. If you need cross-team info, use ask_team_memory \u2014 don't read other agents' task folders. Each level owns dispatch downward and review upward."
4990
5030
  },
4991
5031
  {
4992
- title: "Customer orchestration maturity \u2014 recommend, never trap",
5032
+ title: "Orchestration phase guidance \u2014 recommend, never trap",
4993
5033
  domain: "workflow",
4994
5034
  priority: "p1",
4995
5035
  content: "New customers start best in Phase 1: founder \u2194 coordinator/Chief of Staff, building company context. Suggest Phase 2 executives when domain work repeats; suggest Phase 3 parallel execution only when review/permission gates are ready. This is guidance, not a blocker: users may jump phases anytime. Never overwrite their phase, role titles, identities, or custom org design."
4996
5036
  },
5037
+ {
5038
+ title: "Routing slot vs display title \u2014 internal 'coo' is plumbing, not your name",
5039
+ domain: "identity",
5040
+ priority: "p0",
5041
+ content: "These procedures reference 'COO' as a shorthand for the coordinator role. This is an INTERNAL routing slot used by exe-os code (chain-of-command checks, dispatch logic, session detection). It is NOT your display title. Your actual title comes from your identity file's `title:` field \u2014 that is what you use externally: introductions, sign-offs, team comms, and any user-facing text. If your identity says `title: AI Chief of Staff`, you are the AI Chief of Staff. The routing slot stays `role: coo` for code compatibility \u2014 never rename it, but also never introduce yourself as 'COO' unless your identity file explicitly says so. The founder chose your title; respect it."
5042
+ },
4997
5043
  {
4998
5044
  title: "Single dispatch path \u2014 create_task only",
4999
5045
  domain: "workflow",
@@ -5027,6 +5073,12 @@ var init_platform_procedures = __esm({
5027
5073
  priority: "p0",
5028
5074
  content: "NEVER: (1) Access the database directly \u2014 it's SQLCipher encrypted, always fails. Use MCP tools only. (2) Manually spawn tmux sessions \u2014 create_task handles it. (3) Run git checkout main \u2014 agents work in worktrees. (4) Modify another agent's in-progress task. (5) Push to remote \u2014 the COO reviews and pushes. (6) Skip update_task(done) \u2014 it's the ONLY way your work gets reviewed. (7) Run git init."
5029
5075
  },
5076
+ {
5077
+ title: "Destructive operations \u2014 mandatory reviewer gate",
5078
+ domain: "security",
5079
+ priority: "p0",
5080
+ content: "Before ANY destructive operation (delete, remove, overwrite, drop, reset, force-push, truncate), you MUST: (1) Have your full task spec accessible \u2014 if you cannot read it, STOP and report to your reviewer. Never improvise destructive actions. (2) Confirm with your reviewer (assigned_by or COO) before executing. (3) If the task spec explicitly authorizes the operation, proceed \u2014 but log it. Violation = immediate task failure. This applies to ALL agents regardless of role."
5081
+ },
5030
5082
  {
5031
5083
  title: "Customer patch triage \u2014 upstream bug vs customization",
5032
5084
  domain: "support",
@@ -5178,7 +5230,7 @@ var init_platform_procedures = __esm({
5178
5230
  title: "MCP tool dispatch \u2014 all tools use action parameter",
5179
5231
  domain: "tool-use",
5180
5232
  priority: "p0",
5181
- content: 'exe-os MCP tools come in two surfaces depending on EXE_MCP_TOOL_SURFACE config. Consolidated (19 tools): action-based dispatch \u2014 memory(action="recall"), task(action="create"), etc. Legacy (108 tools): one tool per operation \u2014 recall_my_memory, create_task, etc. Both surfaces have identical functionality. Use whichever tool names are available in your session. If you see domain tools (memory, task, config, etc.), use the action parameter. If you see specific tools (recall_my_memory, create_task, etc.), call them directly.'
5233
+ content: 'exe-os MCP tools use consolidated action-based dispatch by default (19 tools). Call domain tools with an action parameter: memory(action="recall"), task(action="create"), config(action="list_employees"), etc. Legacy mode (108 separate tools like recall_my_memory, create_task) is still available via EXE_MCP_TOOL_SURFACE=legacy but will be removed in a future version. If you see specific tool names, call them directly \u2014 both surfaces are identical. Consolidated is the default and recommended surface.'
5182
5234
  },
5183
5235
  {
5184
5236
  title: "MCP tools \u2014 memory, decision, and search",
@@ -5312,10 +5364,24 @@ function stableId(memoryId, type, content) {
5312
5364
  return createHash3("sha256").update(`${memoryId}:${type}:${content}`).digest("hex").slice(0, 32);
5313
5365
  }
5314
5366
  function cleanText(text) {
5315
- return text.replace(/```[\s\S]*?```/g, " ").replace(/<[^>]+>/g, " ").replace(/\s+/g, " ").trim();
5316
- }
5317
- function splitSentences(text) {
5318
- return cleanText(text).split(/(?<=[.!?])\s+|\n+/).map((s) => s.trim()).filter((s) => s.length >= 24 && s.length <= MAX_SENTENCE_CHARS);
5367
+ let cleaned = text.replace(
5368
+ /```(\w*)\n(.*?)(?:\n[\s\S]*?)```/g,
5369
+ (_m, lang, firstLine) => `[code${lang ? `:${lang}` : ""}] ${firstLine.trim()}`
5370
+ );
5371
+ cleaned = cleaned.replace(/<[^>]+>/g, " ").replace(/\s+/g, " ").trim();
5372
+ return cleaned;
5373
+ }
5374
+ function splitSegments(text) {
5375
+ const cleaned = cleanText(text);
5376
+ const segments = cleaned.split(/(?<=[.!?:;])\s+|\n{2,}|(?<=\))\s+(?=[A-Z])|\s*[|│]\s*/).map((s) => s.trim()).filter((s) => s.length >= MIN_SEGMENT_CHARS && s.length <= MAX_SEGMENT_CHARS);
5377
+ if (segments.length === 0 && cleaned.length >= MIN_SEGMENT_CHARS) {
5378
+ const lines = cleaned.split(/\n+/).map((l) => l.trim()).filter((l) => l.length >= MIN_SEGMENT_CHARS && l.length <= MAX_SEGMENT_CHARS);
5379
+ if (lines.length > 0) return lines;
5380
+ if (cleaned.length >= MIN_SEGMENT_CHARS) {
5381
+ return [cleaned.slice(0, MAX_SEGMENT_CHARS)];
5382
+ }
5383
+ }
5384
+ return segments;
5319
5385
  }
5320
5386
  function inferCardType(sentence, toolName) {
5321
5387
  const lower = sentence.toLowerCase();
@@ -5347,12 +5413,12 @@ function predicateFor(type) {
5347
5413
  }
5348
5414
  }
5349
5415
  function extractMemoryCards(row) {
5350
- const sentences = splitSentences(row.raw_text);
5416
+ const segments = splitSegments(row.raw_text);
5351
5417
  const cards = [];
5352
- for (const sentence of sentences) {
5418
+ for (const sentence of segments) {
5353
5419
  const type = inferCardType(sentence, row.tool_name);
5354
5420
  const subject = extractSubject(sentence, row.agent_id);
5355
- const content = sentence.length > MAX_SENTENCE_CHARS ? `${sentence.slice(0, MAX_SENTENCE_CHARS - 1)}\u2026` : sentence;
5421
+ const content = sentence.length > MAX_SEGMENT_CHARS ? `${sentence.slice(0, MAX_SEGMENT_CHARS - 1)}\u2026` : sentence;
5356
5422
  cards.push({
5357
5423
  id: stableId(row.id, type, content),
5358
5424
  memory_id: row.id,
@@ -5448,13 +5514,14 @@ Source memory: ${String(row.source_ref ?? row.memory_id)}`,
5448
5514
  last_accessed: String(row.timestamp)
5449
5515
  }));
5450
5516
  }
5451
- var MAX_CARDS_PER_MEMORY, MAX_SENTENCE_CHARS;
5517
+ var MAX_CARDS_PER_MEMORY, MAX_SEGMENT_CHARS, MIN_SEGMENT_CHARS;
5452
5518
  var init_memory_cards = __esm({
5453
5519
  "src/lib/memory-cards.ts"() {
5454
5520
  "use strict";
5455
5521
  init_database();
5456
- MAX_CARDS_PER_MEMORY = 6;
5457
- MAX_SENTENCE_CHARS = 360;
5522
+ MAX_CARDS_PER_MEMORY = 8;
5523
+ MAX_SEGMENT_CHARS = 500;
5524
+ MIN_SEGMENT_CHARS = 20;
5458
5525
  }
5459
5526
  });
5460
5527