@askexenow/exe-os 0.9.72 → 0.9.74

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 (109) hide show
  1. package/dist/bin/age-ontology-load.js +3 -0
  2. package/dist/bin/agentic-ontology-backfill.js +4 -1
  3. package/dist/bin/agentic-reflection-backfill.js +4 -1
  4. package/dist/bin/agentic-semantic-label.js +4 -1
  5. package/dist/bin/backfill-conversations.js +4 -1
  6. package/dist/bin/backfill-responses.js +4 -1
  7. package/dist/bin/backfill-vectors.js +4 -1
  8. package/dist/bin/bulk-sync-postgres.js +4 -1
  9. package/dist/bin/cc-doctor.js +3 -0
  10. package/dist/bin/cleanup-stale-review-tasks.js +4 -1
  11. package/dist/bin/cli.js +79 -51
  12. package/dist/bin/exe-agent-config.js +3 -0
  13. package/dist/bin/exe-agent.js +4 -1
  14. package/dist/bin/exe-assign.js +4 -1
  15. package/dist/bin/exe-boot.js +4 -1
  16. package/dist/bin/exe-call.js +4 -1
  17. package/dist/bin/exe-cloud.js +4 -1
  18. package/dist/bin/exe-dispatch.js +4 -1
  19. package/dist/bin/exe-doctor.js +4 -1
  20. package/dist/bin/exe-export-behaviors.js +4 -1
  21. package/dist/bin/exe-forget.js +4 -1
  22. package/dist/bin/exe-gateway.js +4 -1
  23. package/dist/bin/exe-healthcheck.js +3 -0
  24. package/dist/bin/exe-heartbeat.js +4 -1
  25. package/dist/bin/exe-kill.js +4 -1
  26. package/dist/bin/exe-launch-agent.js +4 -1
  27. package/dist/bin/exe-new-employee.js +40 -12
  28. package/dist/bin/exe-pending-messages.js +4 -1
  29. package/dist/bin/exe-pending-notifications.js +4 -1
  30. package/dist/bin/exe-pending-reviews.js +4 -1
  31. package/dist/bin/exe-rename.js +4 -1
  32. package/dist/bin/exe-review.js +4 -1
  33. package/dist/bin/exe-search.js +4 -1
  34. package/dist/bin/exe-session-cleanup.js +4 -1
  35. package/dist/bin/exe-settings.js +3 -0
  36. package/dist/bin/exe-start-codex.js +4 -1
  37. package/dist/bin/exe-start-opencode.js +4 -1
  38. package/dist/bin/exe-status.js +4 -1
  39. package/dist/bin/exe-team.js +4 -1
  40. package/dist/bin/git-sweep.js +4 -1
  41. package/dist/bin/graph-backfill.js +4 -1
  42. package/dist/bin/graph-export.js +4 -1
  43. package/dist/bin/install.js +39 -11
  44. package/dist/bin/intercom-check.js +4 -1
  45. package/dist/bin/postgres-agentic-reflection-backfill.js +3 -0
  46. package/dist/bin/postgres-agentic-semantic-backfill.js +3 -0
  47. package/dist/bin/scan-tasks.js +4 -1
  48. package/dist/bin/setup.js +39 -11
  49. package/dist/bin/shard-migrate.js +4 -1
  50. package/dist/bin/update.js +3 -0
  51. package/dist/gateway/index.js +4 -1
  52. package/dist/hooks/bug-report-worker.js +4 -1
  53. package/dist/hooks/codex-stop-task-finalizer.js +4 -1
  54. package/dist/hooks/commit-complete.js +4 -1
  55. package/dist/hooks/error-recall.js +4 -1
  56. package/dist/hooks/exe-heartbeat-hook.js +3 -0
  57. package/dist/hooks/ingest-worker.js +3 -0
  58. package/dist/hooks/ingest.js +4 -1
  59. package/dist/hooks/instructions-loaded.js +4 -1
  60. package/dist/hooks/notification.js +4 -1
  61. package/dist/hooks/post-compact.js +4 -1
  62. package/dist/hooks/post-tool-combined.js +4 -1
  63. package/dist/hooks/pre-compact.js +4 -1
  64. package/dist/hooks/pre-tool-use.js +4 -1
  65. package/dist/hooks/prompt-submit.js +4 -1
  66. package/dist/hooks/session-end.js +4 -1
  67. package/dist/hooks/session-start.js +4 -1
  68. package/dist/hooks/stop.js +4 -1
  69. package/dist/hooks/subagent-stop.js +4 -1
  70. package/dist/hooks/summary-worker.js +4 -1
  71. package/dist/index.js +4 -1
  72. package/dist/lib/agent-config.js +3 -0
  73. package/dist/lib/cloud-sync.js +3 -0
  74. package/dist/lib/config.js +3 -0
  75. package/dist/lib/consolidation.js +3 -0
  76. package/dist/lib/database.js +3 -0
  77. package/dist/lib/db-daemon-client.js +3 -0
  78. package/dist/lib/db.js +3 -0
  79. package/dist/lib/device-registry.js +3 -0
  80. package/dist/lib/embedder.js +3 -0
  81. package/dist/lib/employee-templates.js +4 -1
  82. package/dist/lib/employees.js +3 -0
  83. package/dist/lib/exe-daemon-client.js +3 -0
  84. package/dist/lib/exe-daemon.js +4 -1
  85. package/dist/lib/hybrid-search.js +4 -1
  86. package/dist/lib/identity.js +3 -0
  87. package/dist/lib/license.js +3 -0
  88. package/dist/lib/messaging.js +3 -0
  89. package/dist/lib/reminders.js +3 -0
  90. package/dist/lib/schedules.js +4 -1
  91. package/dist/lib/session-wrappers.js +31 -6
  92. package/dist/lib/skill-learning.js +3 -0
  93. package/dist/lib/store.js +4 -1
  94. package/dist/lib/task-router.js +3 -0
  95. package/dist/lib/tasks.js +3 -0
  96. package/dist/lib/tmux-routing.js +3 -0
  97. package/dist/lib/token-spend.js +3 -0
  98. package/dist/mcp/server.js +4 -1
  99. package/dist/mcp/tools/complete-reminder.js +3 -0
  100. package/dist/mcp/tools/create-reminder.js +3 -0
  101. package/dist/mcp/tools/create-task.js +3 -0
  102. package/dist/mcp/tools/deactivate-behavior.js +3 -0
  103. package/dist/mcp/tools/list-reminders.js +3 -0
  104. package/dist/mcp/tools/list-tasks.js +3 -0
  105. package/dist/mcp/tools/send-message.js +3 -0
  106. package/dist/mcp/tools/update-task.js +3 -0
  107. package/dist/runtime/index.js +4 -1
  108. package/dist/tui/App.js +4 -1
  109. package/package.json +1 -1
@@ -234,6 +234,9 @@ var init_config = __esm({
234
234
  autoInstall: false,
235
235
  checkIntervalMs: 24 * 60 * 60 * 1e3
236
236
  },
237
+ support: {
238
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
239
+ },
237
240
  orchestration: {
238
241
  phase: "phase_1_coo",
239
242
  phaseSetBy: "default"
@@ -3509,7 +3512,7 @@ var init_platform_procedures = __esm({
3509
3512
  title: "Customer patch triage \u2014 upstream bug vs customization",
3510
3513
  domain: "support",
3511
3514
  priority: "p0",
3512
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
3515
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
3513
3516
  },
3514
3517
  // --- Operations ---
3515
3518
  {
@@ -310,6 +310,9 @@ var init_config = __esm({
310
310
  autoInstall: false,
311
311
  checkIntervalMs: 24 * 60 * 60 * 1e3
312
312
  },
313
+ support: {
314
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
315
+ },
313
316
  orchestration: {
314
317
  phase: "phase_1_coo",
315
318
  phaseSetBy: "default"
@@ -3246,7 +3249,7 @@ var init_platform_procedures = __esm({
3246
3249
  title: "Customer patch triage \u2014 upstream bug vs customization",
3247
3250
  domain: "support",
3248
3251
  priority: "p0",
3249
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
3252
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
3250
3253
  },
3251
3254
  // --- Operations ---
3252
3255
  {
@@ -122,6 +122,9 @@ var init_config = __esm({
122
122
  autoInstall: false,
123
123
  checkIntervalMs: 24 * 60 * 60 * 1e3
124
124
  },
125
+ support: {
126
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
127
+ },
125
128
  orchestration: {
126
129
  phase: "phase_1_coo",
127
130
  phaseSetBy: "default"
@@ -310,7 +313,7 @@ var init_platform_procedures = __esm({
310
313
  title: "Customer patch triage \u2014 upstream bug vs customization",
311
314
  domain: "support",
312
315
  priority: "p0",
313
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
316
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
314
317
  },
315
318
  // --- Operations ---
316
319
  {
@@ -718,6 +718,9 @@ var init_config = __esm({
718
718
  autoInstall: false,
719
719
  checkIntervalMs: 24 * 60 * 60 * 1e3
720
720
  },
721
+ support: {
722
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
723
+ },
721
724
  orchestration: {
722
725
  phase: "phase_1_coo",
723
726
  phaseSetBy: "default"
@@ -6514,7 +6517,7 @@ var init_platform_procedures = __esm({
6514
6517
  title: "Customer patch triage \u2014 upstream bug vs customization",
6515
6518
  domain: "support",
6516
6519
  priority: "p0",
6517
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
6520
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
6518
6521
  },
6519
6522
  // --- Operations ---
6520
6523
  {
@@ -602,6 +602,9 @@ var init_config = __esm({
602
602
  autoInstall: false,
603
603
  checkIntervalMs: 24 * 60 * 60 * 1e3
604
604
  },
605
+ support: {
606
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
607
+ },
605
608
  orchestration: {
606
609
  phase: "phase_1_coo",
607
610
  phaseSetBy: "default"
@@ -7897,7 +7900,7 @@ var init_platform_procedures = __esm({
7897
7900
  title: "Customer patch triage \u2014 upstream bug vs customization",
7898
7901
  domain: "support",
7899
7902
  priority: "p0",
7900
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
7903
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
7901
7904
  },
7902
7905
  // --- Operations ---
7903
7906
  {
@@ -234,6 +234,9 @@ var init_config = __esm({
234
234
  autoInstall: false,
235
235
  checkIntervalMs: 24 * 60 * 60 * 1e3
236
236
  },
237
+ support: {
238
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
239
+ },
237
240
  orchestration: {
238
241
  phase: "phase_1_coo",
239
242
  phaseSetBy: "default"
@@ -4451,7 +4454,7 @@ var init_platform_procedures = __esm({
4451
4454
  title: "Customer patch triage \u2014 upstream bug vs customization",
4452
4455
  domain: "support",
4453
4456
  priority: "p0",
4454
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4457
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4455
4458
  },
4456
4459
  // --- Operations ---
4457
4460
  {
@@ -374,6 +374,9 @@ var init_config = __esm({
374
374
  autoInstall: false,
375
375
  checkIntervalMs: 24 * 60 * 60 * 1e3
376
376
  },
377
+ support: {
378
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
379
+ },
377
380
  orchestration: {
378
381
  phase: "phase_1_coo",
379
382
  phaseSetBy: "default"
@@ -4207,7 +4210,7 @@ var init_platform_procedures = __esm({
4207
4210
  title: "Customer patch triage \u2014 upstream bug vs customization",
4208
4211
  domain: "support",
4209
4212
  priority: "p0",
4210
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4213
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4211
4214
  },
4212
4215
  // --- Operations ---
4213
4216
  {
@@ -289,6 +289,9 @@ var init_config = __esm({
289
289
  autoInstall: false,
290
290
  checkIntervalMs: 24 * 60 * 60 * 1e3
291
291
  },
292
+ support: {
293
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
294
+ },
292
295
  orchestration: {
293
296
  phase: "phase_1_coo",
294
297
  phaseSetBy: "default"
@@ -4131,7 +4134,7 @@ var init_platform_procedures = __esm({
4131
4134
  title: "Customer patch triage \u2014 upstream bug vs customization",
4132
4135
  domain: "support",
4133
4136
  priority: "p0",
4134
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4137
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4135
4138
  },
4136
4139
  // --- Operations ---
4137
4140
  {
@@ -676,6 +676,9 @@ var init_config = __esm({
676
676
  autoInstall: false,
677
677
  checkIntervalMs: 24 * 60 * 60 * 1e3
678
678
  },
679
+ support: {
680
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
681
+ },
679
682
  orchestration: {
680
683
  phase: "phase_1_coo",
681
684
  phaseSetBy: "default"
@@ -4800,7 +4803,7 @@ var init_platform_procedures = __esm({
4800
4803
  title: "Customer patch triage \u2014 upstream bug vs customization",
4801
4804
  domain: "support",
4802
4805
  priority: "p0",
4803
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4806
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4804
4807
  },
4805
4808
  // --- Operations ---
4806
4809
  {
@@ -110,6 +110,9 @@ var DEFAULT_CONFIG = {
110
110
  autoInstall: false,
111
111
  checkIntervalMs: 24 * 60 * 60 * 1e3
112
112
  },
113
+ support: {
114
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
115
+ },
113
116
  orchestration: {
114
117
  phase: "phase_1_coo",
115
118
  phaseSetBy: "default"
@@ -328,6 +328,9 @@ var init_config = __esm({
328
328
  autoInstall: false,
329
329
  checkIntervalMs: 24 * 60 * 60 * 1e3
330
330
  },
331
+ support: {
332
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
333
+ },
331
334
  orchestration: {
332
335
  phase: "phase_1_coo",
333
336
  phaseSetBy: "default"
@@ -4170,7 +4173,7 @@ var init_platform_procedures = __esm({
4170
4173
  title: "Customer patch triage \u2014 upstream bug vs customization",
4171
4174
  domain: "support",
4172
4175
  priority: "p0",
4173
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4176
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4174
4177
  },
4175
4178
  // --- Operations ---
4176
4179
  {
@@ -298,6 +298,9 @@ var init_config = __esm({
298
298
  autoInstall: false,
299
299
  checkIntervalMs: 24 * 60 * 60 * 1e3
300
300
  },
301
+ support: {
302
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
303
+ },
301
304
  orchestration: {
302
305
  phase: "phase_1_coo",
303
306
  phaseSetBy: "default"
@@ -4131,7 +4134,7 @@ var init_platform_procedures = __esm({
4131
4134
  title: "Customer patch triage \u2014 upstream bug vs customization",
4132
4135
  domain: "support",
4133
4136
  priority: "p0",
4134
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4137
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4135
4138
  },
4136
4139
  // --- Operations ---
4137
4140
  {
@@ -374,6 +374,9 @@ var init_config = __esm({
374
374
  autoInstall: false,
375
375
  checkIntervalMs: 24 * 60 * 60 * 1e3
376
376
  },
377
+ support: {
378
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
379
+ },
377
380
  orchestration: {
378
381
  phase: "phase_1_coo",
379
382
  phaseSetBy: "default"
@@ -4229,7 +4232,7 @@ var init_platform_procedures = __esm({
4229
4232
  title: "Customer patch triage \u2014 upstream bug vs customization",
4230
4233
  domain: "support",
4231
4234
  priority: "p0",
4232
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4235
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4233
4236
  },
4234
4237
  // --- Operations ---
4235
4238
  {
@@ -128,6 +128,9 @@ var init_config = __esm({
128
128
  autoInstall: false,
129
129
  checkIntervalMs: 24 * 60 * 60 * 1e3
130
130
  },
131
+ support: {
132
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
133
+ },
131
134
  orchestration: {
132
135
  phase: "phase_1_coo",
133
136
  phaseSetBy: "default"
@@ -255,7 +258,7 @@ var init_agent_config = __esm({
255
258
  // src/lib/employees.ts
256
259
  import { readFile as readFile2, writeFile as writeFile2, mkdir as mkdir2 } from "fs/promises";
257
260
  import { existsSync as existsSync5, symlinkSync, readlinkSync, readFileSync as readFileSync4, renameSync as renameSync2, unlinkSync as unlinkSync2, writeFileSync as writeFileSync3 } from "fs";
258
- import { execSync } from "child_process";
261
+ import { execSync as execSync2 } from "child_process";
259
262
  import path4 from "path";
260
263
  import os2 from "os";
261
264
  function normalizeRole(role) {
@@ -361,7 +364,7 @@ async function hireEmployee(employee) {
361
364
  }
362
365
  function findExeBin() {
363
366
  try {
364
- return execSync(process.platform === "win32" ? "where exe-os" : "which exe-os", { encoding: "utf8" }).trim();
367
+ return execSync2(process.platform === "win32" ? "where exe-os" : "which exe-os", { encoding: "utf8" }).trim();
365
368
  } catch {
366
369
  return null;
367
370
  }
@@ -1483,7 +1486,7 @@ import { existsSync as existsSync12, readFileSync as readFileSync10, writeFileSy
1483
1486
  import { createHash as createHash2 } from "crypto";
1484
1487
  import path12 from "path";
1485
1488
  import os8 from "os";
1486
- import { execSync as execSync2 } from "child_process";
1489
+ import { execSync as execSync3 } from "child_process";
1487
1490
  import { fileURLToPath as fileURLToPath2 } from "url";
1488
1491
  function resolvePackageRoot() {
1489
1492
  const thisFile = fileURLToPath2(import.meta.url);
@@ -2294,7 +2297,7 @@ ${sourceLine}
2294
2297
  `);
2295
2298
  }
2296
2299
  try {
2297
- execSync2(`tmux source-file ${exeTmuxConf} 2>/dev/null`);
2300
+ execSync3(`tmux source-file ${exeTmuxConf} 2>/dev/null`);
2298
2301
  } catch {
2299
2302
  }
2300
2303
  process.stderr.write("exe-os: tmux config installed\n");
@@ -2305,7 +2308,7 @@ function setupGhostty(home) {
2305
2308
  const macConfig = path12.join(homeDir, "Library", "Application Support", "com.mitchellh.ghostty");
2306
2309
  const ghosttyInstalled = existsSync12(xdgConfig) || existsSync12(macConfig) || (() => {
2307
2310
  try {
2308
- execSync2("which ghostty 2>/dev/null");
2311
+ execSync3("which ghostty 2>/dev/null");
2309
2312
  return true;
2310
2313
  } catch {
2311
2314
  return false;
@@ -2412,6 +2415,7 @@ import {
2412
2415
  readdirSync,
2413
2416
  unlinkSync
2414
2417
  } from "fs";
2418
+ import { execSync } from "child_process";
2415
2419
  import path from "path";
2416
2420
  import { homedir } from "os";
2417
2421
  var MAX_N = 9;
@@ -2419,6 +2423,7 @@ function generateSessionWrappers(packageRoot, homeDir) {
2419
2423
  const home = homeDir ?? homedir();
2420
2424
  const binDir = path.join(home, ".exe-os", "bin");
2421
2425
  const rosterPath = path.join(home, ".exe-os", "exe-employees.json");
2426
+ const shouldMirrorToGlobalBin = homeDir === void 0;
2422
2427
  mkdirSync(binDir, { recursive: true });
2423
2428
  const exeStartDst = path.join(binDir, "exe-start");
2424
2429
  const candidates = [
@@ -2459,15 +2464,18 @@ function generateSessionWrappers(packageRoot, homeDir) {
2459
2464
  const wrapperContent = `#!/bin/bash
2460
2465
  exec "${exeStartDst}" "$0" "$@"
2461
2466
  `;
2467
+ const globalBinDir = shouldMirrorToGlobalBin ? resolveGlobalBinDir() : null;
2462
2468
  for (const emp of employees) {
2463
2469
  for (let n = 1; n <= MAX_N; n++) {
2464
- const wrapperPath = path.join(binDir, `${emp.name}${n}`);
2465
- writeFileSync(wrapperPath, wrapperContent);
2466
- chmodSync(wrapperPath, 493);
2470
+ writeWrapper(path.join(binDir, `${emp.name}${n}`), wrapperContent);
2471
+ if (globalBinDir) {
2472
+ writeWrapper(path.join(globalBinDir, `${emp.name}${n}`), wrapperContent);
2473
+ }
2467
2474
  created++;
2468
- const codexPath = path.join(binDir, `${emp.name}${n}-codex`);
2469
- writeFileSync(codexPath, wrapperContent);
2470
- chmodSync(codexPath, 493);
2475
+ writeWrapper(path.join(binDir, `${emp.name}${n}-codex`), wrapperContent);
2476
+ if (globalBinDir) {
2477
+ writeWrapper(path.join(globalBinDir, `${emp.name}${n}-codex`), wrapperContent);
2478
+ }
2471
2479
  created++;
2472
2480
  }
2473
2481
  }
@@ -2496,6 +2504,26 @@ exec node "${codexLauncher}" --agent ${emp.name} "$@"
2496
2504
  const pathConfigured = ensurePath(home, binDir);
2497
2505
  return { created, pathConfigured };
2498
2506
  }
2507
+ function writeWrapper(wrapperPath, content) {
2508
+ try {
2509
+ writeFileSync(wrapperPath, content);
2510
+ chmodSync(wrapperPath, 493);
2511
+ } catch {
2512
+ }
2513
+ }
2514
+ function resolveGlobalBinDir() {
2515
+ try {
2516
+ const exeOsPath = execSync("command -v exe-os", { encoding: "utf8", timeout: 3e3 }).trim().split("\n")[0];
2517
+ if (exeOsPath) return path.dirname(exeOsPath);
2518
+ } catch {
2519
+ }
2520
+ try {
2521
+ const prefix = execSync("npm prefix -g", { encoding: "utf8", timeout: 3e3 }).trim();
2522
+ if (prefix) return path.join(prefix, "bin");
2523
+ } catch {
2524
+ }
2525
+ return null;
2526
+ }
2499
2527
  function ensurePath(home, binDir) {
2500
2528
  if (process.env.PATH?.split(":").includes(binDir)) {
2501
2529
  return false;
@@ -2617,7 +2645,7 @@ var PLATFORM_PROCEDURES = [
2617
2645
  title: "Customer patch triage \u2014 upstream bug vs customization",
2618
2646
  domain: "support",
2619
2647
  priority: "p0",
2620
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
2648
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
2621
2649
  },
2622
2650
  // --- Operations ---
2623
2651
  {
@@ -299,6 +299,9 @@ var init_config = __esm({
299
299
  autoInstall: false,
300
300
  checkIntervalMs: 24 * 60 * 60 * 1e3
301
301
  },
302
+ support: {
303
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
304
+ },
302
305
  orchestration: {
303
306
  phase: "phase_1_coo",
304
307
  phaseSetBy: "default"
@@ -4568,7 +4571,7 @@ var init_platform_procedures = __esm({
4568
4571
  title: "Customer patch triage \u2014 upstream bug vs customization",
4569
4572
  domain: "support",
4570
4573
  priority: "p0",
4571
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4574
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4572
4575
  },
4573
4576
  // --- Operations ---
4574
4577
  {
@@ -300,6 +300,9 @@ var init_config = __esm({
300
300
  autoInstall: false,
301
301
  checkIntervalMs: 24 * 60 * 60 * 1e3
302
302
  },
303
+ support: {
304
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
305
+ },
303
306
  orchestration: {
304
307
  phase: "phase_1_coo",
305
308
  phaseSetBy: "default"
@@ -4634,7 +4637,7 @@ var init_platform_procedures = __esm({
4634
4637
  title: "Customer patch triage \u2014 upstream bug vs customization",
4635
4638
  domain: "support",
4636
4639
  priority: "p0",
4637
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4640
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4638
4641
  },
4639
4642
  // --- Operations ---
4640
4643
  {
@@ -300,6 +300,9 @@ var init_config = __esm({
300
300
  autoInstall: false,
301
301
  checkIntervalMs: 24 * 60 * 60 * 1e3
302
302
  },
303
+ support: {
304
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
305
+ },
303
306
  orchestration: {
304
307
  phase: "phase_1_coo",
305
308
  phaseSetBy: "default"
@@ -4673,7 +4676,7 @@ var init_platform_procedures = __esm({
4673
4676
  title: "Customer patch triage \u2014 upstream bug vs customization",
4674
4677
  domain: "support",
4675
4678
  priority: "p0",
4676
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4679
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4677
4680
  },
4678
4681
  // --- Operations ---
4679
4682
  {
@@ -234,6 +234,9 @@ var init_config = __esm({
234
234
  autoInstall: false,
235
235
  checkIntervalMs: 24 * 60 * 60 * 1e3
236
236
  },
237
+ support: {
238
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
239
+ },
237
240
  orchestration: {
238
241
  phase: "phase_1_coo",
239
242
  phaseSetBy: "default"
@@ -3014,7 +3017,7 @@ var init_platform_procedures = __esm({
3014
3017
  title: "Customer patch triage \u2014 upstream bug vs customization",
3015
3018
  domain: "support",
3016
3019
  priority: "p0",
3017
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
3020
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
3018
3021
  },
3019
3022
  // --- Operations ---
3020
3023
  {
@@ -234,6 +234,9 @@ var init_config = __esm({
234
234
  autoInstall: false,
235
235
  checkIntervalMs: 24 * 60 * 60 * 1e3
236
236
  },
237
+ support: {
238
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
239
+ },
237
240
  orchestration: {
238
241
  phase: "phase_1_coo",
239
242
  phaseSetBy: "default"
@@ -4145,7 +4148,7 @@ var init_platform_procedures = __esm({
4145
4148
  title: "Customer patch triage \u2014 upstream bug vs customization",
4146
4149
  domain: "support",
4147
4150
  priority: "p0",
4148
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4151
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4149
4152
  },
4150
4153
  // --- Operations ---
4151
4154
  {
@@ -363,6 +363,9 @@ var init_config = __esm({
363
363
  autoInstall: false,
364
364
  checkIntervalMs: 24 * 60 * 60 * 1e3
365
365
  },
366
+ support: {
367
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
368
+ },
366
369
  orchestration: {
367
370
  phase: "phase_1_coo",
368
371
  phaseSetBy: "default"
@@ -4130,7 +4133,7 @@ var init_platform_procedures = __esm({
4130
4133
  title: "Customer patch triage \u2014 upstream bug vs customization",
4131
4134
  domain: "support",
4132
4135
  priority: "p0",
4133
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4136
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4134
4137
  },
4135
4138
  // --- Operations ---
4136
4139
  {
@@ -374,6 +374,9 @@ var init_config = __esm({
374
374
  autoInstall: false,
375
375
  checkIntervalMs: 24 * 60 * 60 * 1e3
376
376
  },
377
+ support: {
378
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
379
+ },
377
380
  orchestration: {
378
381
  phase: "phase_1_coo",
379
382
  phaseSetBy: "default"
@@ -4174,7 +4177,7 @@ var init_platform_procedures = __esm({
4174
4177
  title: "Customer patch triage \u2014 upstream bug vs customization",
4175
4178
  domain: "support",
4176
4179
  priority: "p0",
4177
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4180
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
4178
4181
  },
4179
4182
  // --- Operations ---
4180
4183
  {
@@ -229,6 +229,9 @@ var init_config = __esm({
229
229
  autoInstall: false,
230
230
  checkIntervalMs: 24 * 60 * 60 * 1e3
231
231
  },
232
+ support: {
233
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
234
+ },
232
235
  orchestration: {
233
236
  phase: "phase_1_coo",
234
237
  phaseSetBy: "default"
@@ -374,6 +374,9 @@ var init_config = __esm({
374
374
  autoInstall: false,
375
375
  checkIntervalMs: 24 * 60 * 60 * 1e3
376
376
  },
377
+ support: {
378
+ bugReportEndpoint: "https://askexe.com/v1/support/bug-reports"
379
+ },
377
380
  orchestration: {
378
381
  phase: "phase_1_coo",
379
382
  phaseSetBy: "default"
@@ -3446,7 +3449,7 @@ var init_platform_procedures = __esm({
3446
3449
  title: "Customer patch triage \u2014 upstream bug vs customization",
3447
3450
  domain: "support",
3448
3451
  priority: "p0",
3449
- content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
3452
+ content: "When an agent encounters a suspected Exe OS bug, update breakage, MCP/tool failure, installer issue, memory/orchestration defect, or customer-local patch need, it MUST use create_bug_report. Do this before or alongside any local workaround so the report reaches AskExe support directly via the customer's license. Do NOT ask the founder for permission to file a required bug report. If create_bug_report is deferred/lazy-loaded, load it and call it. If it is unavailable in the live MCP surface, report 'create_bug_report unavailable in this session' and save a local report in exe/output \u2014 never claim the tool does not exist unless the live MCP surface was checked. Classify first: upstream_bug = reproducible exe-os/platform defect; customer_customization = identity, behavior, procedure, config, branding, workflow preference that belongs in customer-owned layers; emergency_hotfix = temporary local patch. For upstream bugs/emergency hotfixes include version, repro steps, expected/actual, files changed, workaround, and local diff summary. Avoid permanent platform-code patches unless founder approves; if a hotfix is unavoidable, document it in the bug report and re-check after npm update."
3450
3453
  },
3451
3454
  // --- Operations ---
3452
3455
  {