@askexenow/exe-os 0.9.112 → 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 +54 -11
  3. package/dist/bin/agentic-reflection-backfill.js +29 -1
  4. package/dist/bin/agentic-semantic-label.js +29 -1
  5. package/dist/bin/backfill-conversations.js +53 -10
  6. package/dist/bin/backfill-responses.js +54 -11
  7. package/dist/bin/backfill-vectors.js +29 -1
  8. package/dist/bin/bulk-sync-postgres.js +55 -12
  9. package/dist/bin/cleanup-stale-review-tasks.js +75 -15
  10. package/dist/bin/cli.js +293 -76
  11. package/dist/bin/exe-agent-config.js +7 -1
  12. package/dist/bin/exe-agent.js +28 -2
  13. package/dist/bin/exe-assign.js +54 -11
  14. package/dist/bin/exe-boot.js +481 -147
  15. package/dist/bin/exe-call.js +45 -4
  16. package/dist/bin/exe-cloud.js +93 -15
  17. package/dist/bin/exe-dispatch.js +369 -24
  18. package/dist/bin/exe-doctor.js +53 -10
  19. package/dist/bin/exe-export-behaviors.js +54 -11
  20. package/dist/bin/exe-forget.js +54 -11
  21. package/dist/bin/exe-gateway.js +128 -23
  22. package/dist/bin/exe-heartbeat.js +75 -15
  23. package/dist/bin/exe-kill.js +54 -11
  24. package/dist/bin/exe-launch-agent.js +70 -12
  25. package/dist/bin/exe-new-employee.js +175 -7
  26. package/dist/bin/exe-pending-messages.js +75 -15
  27. package/dist/bin/exe-pending-notifications.js +75 -15
  28. package/dist/bin/exe-pending-reviews.js +75 -15
  29. package/dist/bin/exe-rename.js +54 -11
  30. package/dist/bin/exe-review.js +54 -11
  31. package/dist/bin/exe-search.js +54 -11
  32. package/dist/bin/exe-session-cleanup.js +491 -146
  33. package/dist/bin/exe-settings.js +10 -4
  34. package/dist/bin/exe-start-codex.js +524 -245
  35. package/dist/bin/exe-start-opencode.js +534 -165
  36. package/dist/bin/exe-status.js +75 -15
  37. package/dist/bin/exe-support.js +1 -1
  38. package/dist/bin/exe-team.js +54 -11
  39. package/dist/bin/git-sweep.js +369 -24
  40. package/dist/bin/graph-backfill.js +54 -11
  41. package/dist/bin/graph-export.js +54 -11
  42. package/dist/bin/install.js +62 -4
  43. package/dist/bin/intercom-check.js +491 -146
  44. package/dist/bin/pre-publish.js +13 -1
  45. package/dist/bin/scan-tasks.js +369 -24
  46. package/dist/bin/setup.js +91 -13
  47. package/dist/bin/shard-migrate.js +54 -11
  48. package/dist/bin/stack-update.js +1 -1
  49. package/dist/bin/update.js +3 -3
  50. package/dist/gateway/index.js +128 -23
  51. package/dist/hooks/bug-report-worker.js +128 -23
  52. package/dist/hooks/codex-stop-task-finalizer.js +512 -140
  53. package/dist/hooks/commit-complete.js +369 -24
  54. package/dist/hooks/error-recall.js +54 -11
  55. package/dist/hooks/ingest.js +4575 -252
  56. package/dist/hooks/instructions-loaded.js +54 -11
  57. package/dist/hooks/notification.js +54 -11
  58. package/dist/hooks/post-compact.js +75 -15
  59. package/dist/hooks/post-tool-combined.js +75 -15
  60. package/dist/hooks/pre-compact.js +449 -104
  61. package/dist/hooks/pre-tool-use.js +90 -15
  62. package/dist/hooks/prompt-submit.js +129 -24
  63. package/dist/hooks/session-end.js +451 -109
  64. package/dist/hooks/session-start.js +104 -16
  65. package/dist/hooks/stop.js +74 -14
  66. package/dist/hooks/subagent-stop.js +75 -15
  67. package/dist/hooks/summary-worker.js +73 -7
  68. package/dist/index.js +128 -23
  69. package/dist/lib/agent-config.js +16 -1
  70. package/dist/lib/cloud-sync.js +38 -1
  71. package/dist/lib/consolidation.js +16 -1
  72. package/dist/lib/database.js +16 -0
  73. package/dist/lib/db.js +16 -0
  74. package/dist/lib/device-registry.js +16 -0
  75. package/dist/lib/employee-templates.js +29 -3
  76. package/dist/lib/employees.js +16 -1
  77. package/dist/lib/exe-daemon.js +268 -42
  78. package/dist/lib/hybrid-search.js +54 -11
  79. package/dist/lib/license.js +3 -3
  80. package/dist/lib/messaging.js +21 -4
  81. package/dist/lib/schedules.js +29 -1
  82. package/dist/lib/skill-learning.js +458 -70
  83. package/dist/lib/status-brief.js +14 -1
  84. package/dist/lib/store.js +54 -11
  85. package/dist/lib/tasks.js +393 -91
  86. package/dist/lib/tmux-routing.js +316 -14
  87. package/dist/mcp/server.js +169 -30
  88. package/dist/mcp/tools/create-task.js +75 -13
  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 +390 -91
  93. package/dist/runtime/index.js +446 -101
  94. package/dist/tui/App.js +208 -54
  95. package/package.json +1 -1
@@ -201,7 +201,20 @@ function buildActionRequired(data) {
201
201
  const blockedTasks = data.globalTasks.filter((t) => t.status === "blocked");
202
202
  if (blockedTasks.length > 0) {
203
203
  hasIssues = true;
204
- lines.push(` \u{1F534} ${blockedTasks.length} blocked task${blockedTasks.length === 1 ? "" : "s"} \u2014 needs your decision`);
204
+ const ESCALATION_MS = 48 * 60 * 60 * 1e3;
205
+ const stale = blockedTasks.filter((t) => {
206
+ if (!t.updatedAt) return false;
207
+ return Date.now() - new Date(t.updatedAt).getTime() > ESCALATION_MS;
208
+ });
209
+ if (stale.length > 0) {
210
+ lines.push(` \u{1F534} ESCALATION: ${stale.length} task${stale.length === 1 ? "" : "s"} blocked >48h:`);
211
+ for (const t of stale) {
212
+ const ageH = Math.round((Date.now() - new Date(t.updatedAt).getTime()) / 36e5);
213
+ lines.push(` - "${t.title}" (${t.assignedTo}) \u2014 blocked ${ageH}h`);
214
+ }
215
+ } else {
216
+ lines.push(` \u{1F534} ${blockedTasks.length} blocked task${blockedTasks.length === 1 ? "" : "s"} \u2014 needs your decision`);
217
+ }
205
218
  }
206
219
  if (data.flaggedIssues.length > 0) {
207
220
  hasIssues = true;
package/dist/lib/store.js CHANGED
@@ -3033,6 +3033,22 @@ async function ensureSchema() {
3033
3033
  } catch (e) {
3034
3034
  logCatchDebug("migration", e);
3035
3035
  }
3036
+ try {
3037
+ await client.execute({
3038
+ sql: `ALTER TABLE memories ADD COLUMN visibility TEXT DEFAULT 'private'`,
3039
+ args: []
3040
+ });
3041
+ } catch (e) {
3042
+ logCatchDebug("migration", e);
3043
+ }
3044
+ try {
3045
+ await client.execute({
3046
+ sql: `ALTER TABLE memories ADD COLUMN strength REAL DEFAULT 1.0`,
3047
+ args: []
3048
+ });
3049
+ } catch (e) {
3050
+ logCatchDebug("migration", e);
3051
+ }
3036
3052
  }
3037
3053
  async function disposeDatabase() {
3038
3054
  if (_walCheckpointTimer) {
@@ -3599,11 +3615,17 @@ var init_platform_procedures = __esm({
3599
3615
  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."
3600
3616
  },
3601
3617
  {
3602
- title: "Customer orchestration maturity \u2014 recommend, never trap",
3618
+ title: "Orchestration phase guidance \u2014 recommend, never trap",
3603
3619
  domain: "workflow",
3604
3620
  priority: "p1",
3605
3621
  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."
3606
3622
  },
3623
+ {
3624
+ title: "Routing slot vs display title \u2014 internal 'coo' is plumbing, not your name",
3625
+ domain: "identity",
3626
+ priority: "p0",
3627
+ 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."
3628
+ },
3607
3629
  {
3608
3630
  title: "Single dispatch path \u2014 create_task only",
3609
3631
  domain: "workflow",
@@ -3637,6 +3659,12 @@ var init_platform_procedures = __esm({
3637
3659
  priority: "p0",
3638
3660
  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."
3639
3661
  },
3662
+ {
3663
+ title: "Destructive operations \u2014 mandatory reviewer gate",
3664
+ domain: "security",
3665
+ priority: "p0",
3666
+ 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."
3667
+ },
3640
3668
  {
3641
3669
  title: "Customer patch triage \u2014 upstream bug vs customization",
3642
3670
  domain: "support",
@@ -3922,10 +3950,24 @@ function stableId(memoryId, type, content) {
3922
3950
  return createHash2("sha256").update(`${memoryId}:${type}:${content}`).digest("hex").slice(0, 32);
3923
3951
  }
3924
3952
  function cleanText(text) {
3925
- return text.replace(/```[\s\S]*?```/g, " ").replace(/<[^>]+>/g, " ").replace(/\s+/g, " ").trim();
3926
- }
3927
- function splitSentences(text) {
3928
- return cleanText(text).split(/(?<=[.!?])\s+|\n+/).map((s) => s.trim()).filter((s) => s.length >= 24 && s.length <= MAX_SENTENCE_CHARS);
3953
+ let cleaned = text.replace(
3954
+ /```(\w*)\n(.*?)(?:\n[\s\S]*?)```/g,
3955
+ (_m, lang, firstLine) => `[code${lang ? `:${lang}` : ""}] ${firstLine.trim()}`
3956
+ );
3957
+ cleaned = cleaned.replace(/<[^>]+>/g, " ").replace(/\s+/g, " ").trim();
3958
+ return cleaned;
3959
+ }
3960
+ function splitSegments(text) {
3961
+ const cleaned = cleanText(text);
3962
+ 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);
3963
+ if (segments.length === 0 && cleaned.length >= MIN_SEGMENT_CHARS) {
3964
+ const lines = cleaned.split(/\n+/).map((l) => l.trim()).filter((l) => l.length >= MIN_SEGMENT_CHARS && l.length <= MAX_SEGMENT_CHARS);
3965
+ if (lines.length > 0) return lines;
3966
+ if (cleaned.length >= MIN_SEGMENT_CHARS) {
3967
+ return [cleaned.slice(0, MAX_SEGMENT_CHARS)];
3968
+ }
3969
+ }
3970
+ return segments;
3929
3971
  }
3930
3972
  function inferCardType(sentence, toolName) {
3931
3973
  const lower = sentence.toLowerCase();
@@ -3957,12 +3999,12 @@ function predicateFor(type) {
3957
3999
  }
3958
4000
  }
3959
4001
  function extractMemoryCards(row) {
3960
- const sentences = splitSentences(row.raw_text);
4002
+ const segments = splitSegments(row.raw_text);
3961
4003
  const cards = [];
3962
- for (const sentence of sentences) {
4004
+ for (const sentence of segments) {
3963
4005
  const type = inferCardType(sentence, row.tool_name);
3964
4006
  const subject = extractSubject(sentence, row.agent_id);
3965
- const content = sentence.length > MAX_SENTENCE_CHARS ? `${sentence.slice(0, MAX_SENTENCE_CHARS - 1)}\u2026` : sentence;
4007
+ const content = sentence.length > MAX_SEGMENT_CHARS ? `${sentence.slice(0, MAX_SEGMENT_CHARS - 1)}\u2026` : sentence;
3966
4008
  cards.push({
3967
4009
  id: stableId(row.id, type, content),
3968
4010
  memory_id: row.id,
@@ -4058,13 +4100,14 @@ Source memory: ${String(row.source_ref ?? row.memory_id)}`,
4058
4100
  last_accessed: String(row.timestamp)
4059
4101
  }));
4060
4102
  }
4061
- var MAX_CARDS_PER_MEMORY, MAX_SENTENCE_CHARS;
4103
+ var MAX_CARDS_PER_MEMORY, MAX_SEGMENT_CHARS, MIN_SEGMENT_CHARS;
4062
4104
  var init_memory_cards = __esm({
4063
4105
  "src/lib/memory-cards.ts"() {
4064
4106
  "use strict";
4065
4107
  init_database();
4066
- MAX_CARDS_PER_MEMORY = 6;
4067
- MAX_SENTENCE_CHARS = 360;
4108
+ MAX_CARDS_PER_MEMORY = 8;
4109
+ MAX_SEGMENT_CHARS = 500;
4110
+ MIN_SEGMENT_CHARS = 20;
4068
4111
  }
4069
4112
  });
4070
4113