@askexenow/exe-os 0.9.85 → 0.9.87
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/agentic-ontology-backfill.js +50 -14
- package/dist/bin/agentic-reflection-backfill.js +50 -14
- package/dist/bin/agentic-semantic-label.js +50 -14
- package/dist/bin/backfill-conversations.js +50 -14
- package/dist/bin/backfill-responses.js +50 -14
- package/dist/bin/backfill-vectors.js +50 -14
- package/dist/bin/bulk-sync-postgres.js +50 -14
- package/dist/bin/cleanup-stale-review-tasks.js +53 -17
- package/dist/bin/cli.js +339 -81
- package/dist/bin/exe-agent.js +18 -0
- package/dist/bin/exe-assign.js +50 -14
- package/dist/bin/exe-boot.js +75 -39
- package/dist/bin/exe-call.js +18 -0
- package/dist/bin/exe-cloud.js +40 -4
- package/dist/bin/exe-dispatch.js +61 -25
- package/dist/bin/exe-doctor.js +40 -4
- package/dist/bin/exe-export-behaviors.js +50 -14
- package/dist/bin/exe-forget.js +50 -14
- package/dist/bin/exe-gateway.js +65 -29
- package/dist/bin/exe-heartbeat.js +55 -19
- package/dist/bin/exe-kill.js +54 -18
- package/dist/bin/exe-launch-agent.js +58 -22
- package/dist/bin/exe-new-employee.js +33 -2
- package/dist/bin/exe-pending-messages.js +53 -17
- package/dist/bin/exe-pending-notifications.js +53 -17
- package/dist/bin/exe-pending-reviews.js +55 -19
- package/dist/bin/exe-rename.js +52 -16
- package/dist/bin/exe-review.js +50 -14
- package/dist/bin/exe-search.js +58 -22
- package/dist/bin/exe-session-cleanup.js +85 -44
- package/dist/bin/exe-start-codex.js +57 -21
- package/dist/bin/exe-start-opencode.js +55 -19
- package/dist/bin/exe-status.js +62 -26
- package/dist/bin/exe-team.js +50 -14
- package/dist/bin/git-sweep.js +63 -27
- package/dist/bin/graph-backfill.js +50 -14
- package/dist/bin/graph-export.js +50 -14
- package/dist/bin/install.js +9 -0
- package/dist/bin/intercom-check.js +67 -31
- package/dist/bin/scan-tasks.js +63 -27
- package/dist/bin/setup.js +53 -13
- package/dist/bin/shard-migrate.js +50 -14
- package/dist/bin/stack-update.js +59 -2
- package/dist/bin/update.js +1 -1
- package/dist/gateway/index.js +65 -29
- package/dist/hooks/bug-report-worker.js +65 -29
- package/dist/hooks/codex-stop-task-finalizer.js +59 -23
- package/dist/hooks/commit-complete.js +64 -28
- package/dist/hooks/error-recall.js +62 -26
- package/dist/hooks/ingest-worker.js +4 -4
- package/dist/hooks/ingest.js +56 -20
- package/dist/hooks/instructions-loaded.js +50 -14
- package/dist/hooks/notification.js +50 -14
- package/dist/hooks/post-compact.js +50 -14
- package/dist/hooks/post-tool-combined.js +63 -27
- package/dist/hooks/pre-compact.js +61 -25
- package/dist/hooks/pre-tool-use.js +58 -22
- package/dist/hooks/prompt-submit.js +78 -42
- package/dist/hooks/session-end.js +66 -30
- package/dist/hooks/session-start.js +68 -32
- package/dist/hooks/stop.js +53 -17
- package/dist/hooks/subagent-stop.js +50 -14
- package/dist/hooks/summary-worker.js +55 -19
- package/dist/index.js +61 -25
- package/dist/lib/cloud-sync.js +32 -14
- package/dist/lib/database.js +22 -4
- package/dist/lib/db-daemon-client.js +16 -4
- package/dist/lib/db.js +22 -4
- package/dist/lib/device-registry.js +22 -4
- package/dist/lib/embedder.js +16 -4
- package/dist/lib/employee-templates.js +18 -0
- package/dist/lib/exe-daemon-client.js +16 -4
- package/dist/lib/exe-daemon.js +874 -232
- package/dist/lib/hybrid-search.js +58 -22
- package/dist/lib/identity-templates.js +6 -2
- package/dist/lib/schedules.js +53 -17
- package/dist/lib/skill-learning.js +16 -4
- package/dist/lib/store.js +50 -14
- package/dist/lib/tasks.js +16 -4
- package/dist/lib/tmux-routing.js +18 -6
- package/dist/mcp/server.js +809 -200
- package/dist/mcp/tools/create-task.js +24 -8
- package/dist/mcp/tools/update-task.js +18 -6
- package/dist/runtime/index.js +61 -25
- package/dist/tui/App.js +91 -55
- package/package.json +1 -1
|
@@ -3876,7 +3876,7 @@ var init_daemon_auth = __esm({
|
|
|
3876
3876
|
// src/lib/exe-daemon-client.ts
|
|
3877
3877
|
import net from "net";
|
|
3878
3878
|
import os11 from "os";
|
|
3879
|
-
import { spawn } from "child_process";
|
|
3879
|
+
import { spawn, execSync as execSync7 } from "child_process";
|
|
3880
3880
|
import { randomUUID as randomUUID2 } from "crypto";
|
|
3881
3881
|
import { existsSync as existsSync15, unlinkSync as unlinkSync5, readFileSync as readFileSync12, openSync, closeSync, statSync } from "fs";
|
|
3882
3882
|
import path17 from "path";
|
|
@@ -3906,6 +3906,14 @@ function handleData(chunk) {
|
|
|
3906
3906
|
}
|
|
3907
3907
|
}
|
|
3908
3908
|
}
|
|
3909
|
+
function isZombie(pid) {
|
|
3910
|
+
try {
|
|
3911
|
+
const state = execSync7(`ps -p ${pid} -o state=`, { encoding: "utf8", timeout: 2e3 }).trim();
|
|
3912
|
+
return state.startsWith("Z");
|
|
3913
|
+
} catch {
|
|
3914
|
+
return false;
|
|
3915
|
+
}
|
|
3916
|
+
}
|
|
3909
3917
|
function cleanupStaleFiles() {
|
|
3910
3918
|
if (existsSync15(PID_PATH)) {
|
|
3911
3919
|
try {
|
|
@@ -3913,7 +3921,11 @@ function cleanupStaleFiles() {
|
|
|
3913
3921
|
if (pid > 0) {
|
|
3914
3922
|
try {
|
|
3915
3923
|
process.kill(pid, 0);
|
|
3916
|
-
|
|
3924
|
+
if (!isZombie(pid)) {
|
|
3925
|
+
return;
|
|
3926
|
+
}
|
|
3927
|
+
process.stderr.write(`[exed-client] PID ${pid} is a zombie \u2014 cleaning up stale files
|
|
3928
|
+
`);
|
|
3917
3929
|
} catch {
|
|
3918
3930
|
}
|
|
3919
3931
|
}
|
|
@@ -3941,8 +3953,8 @@ function findPackageRoot() {
|
|
|
3941
3953
|
function getAvailableMemoryGB() {
|
|
3942
3954
|
if (process.platform === "darwin") {
|
|
3943
3955
|
try {
|
|
3944
|
-
const { execSync:
|
|
3945
|
-
const vmstat =
|
|
3956
|
+
const { execSync: execSync9 } = __require("child_process");
|
|
3957
|
+
const vmstat = execSync9("vm_stat", { encoding: "utf8" });
|
|
3946
3958
|
const pageSize = 16384;
|
|
3947
3959
|
const pageSizeMatch = vmstat.match(/page size of (\d+) bytes/);
|
|
3948
3960
|
const actualPageSize = pageSizeMatch ? parseInt(pageSizeMatch[1], 10) : pageSize;
|
|
@@ -5131,12 +5143,14 @@ On EVERY new conversation, before doing anything else:
|
|
|
5131
5143
|
1. **Memory scan**: Run recall_my_memory with broad queries \u2014 "project", "client", "pipeline", "campaign", "deal", "decision", "blocker". Summarize what you find.
|
|
5132
5144
|
2. **Task scan**: Run list_tasks to see what's open, in progress, blocked, or needs review across all employees.
|
|
5133
5145
|
3. **Team check**: Run ask_team_memory for recent activity from CTO/CMO/engineers.
|
|
5134
|
-
4. **
|
|
5146
|
+
4. **Bug fix check** (one-time, never repeat): Call list_my_bug_reports to see if AskExe has fixed any previously filed bugs. If any have status "fixed" with a fixed_version, tell the founder: "\u{1F527} N bug fix(es) available \u2014 run \`exe-os update\` to get version X.Y.Z." Skip silently if none or if the call fails.
|
|
5147
|
+
5. **Present the brief**: Give the founder a concise status report:
|
|
5135
5148
|
- What's active and progressing
|
|
5136
5149
|
- What's blocked and needs attention
|
|
5137
5150
|
- What decisions are pending
|
|
5151
|
+
- Available bug fixes (from step 4, if any)
|
|
5138
5152
|
- What you recommend doing next
|
|
5139
|
-
|
|
5153
|
+
6. Then ask: "What's the priority?"
|
|
5140
5154
|
|
|
5141
5155
|
If this is your FIRST ever conversation (few or no prior memories):
|
|
5142
5156
|
- Search more broadly: "product", "SEO", "meeting", "strategy", "revenue"
|
|
@@ -5156,6 +5170,8 @@ Never say "I have no memories" without first searching broadly. Your memory may
|
|
|
5156
5170
|
- **get_identity** \u2014 read any agent's identity for coordination
|
|
5157
5171
|
- **set_agent_config** \u2014 view or change which tool (Claude Code, Codex, OpenCode) and model each agent uses. Call with no args to show all agents' current settings. Call with agent_id + runtime + model to change.
|
|
5158
5172
|
- **send_message** \u2014 direct intercom to employees
|
|
5173
|
+
- **create_bug_report** \u2014 file a bug when you encounter an Exe OS platform issue
|
|
5174
|
+
- **list_my_bug_reports** \u2014 check status of filed bugs (boot check: surface available fixes to founder)
|
|
5159
5175
|
${PLAN_MODE_COMPAT}
|
|
5160
5176
|
## Completion Workflow
|
|
5161
5177
|
|
|
@@ -5579,7 +5595,7 @@ import { z } from "zod";
|
|
|
5579
5595
|
init_config();
|
|
5580
5596
|
init_session_key();
|
|
5581
5597
|
import { readFileSync as readFileSync13, writeFileSync as writeFileSync9, mkdirSync as mkdirSync8, unlinkSync as unlinkSync7, readdirSync as readdirSync4 } from "fs";
|
|
5582
|
-
import { execSync as
|
|
5598
|
+
import { execSync as execSync8 } from "child_process";
|
|
5583
5599
|
import path19 from "path";
|
|
5584
5600
|
|
|
5585
5601
|
// src/mcp/agent-context.ts
|
|
@@ -5669,7 +5685,7 @@ function getActiveAgent() {
|
|
|
5669
5685
|
} catch {
|
|
5670
5686
|
}
|
|
5671
5687
|
try {
|
|
5672
|
-
const sessionName =
|
|
5688
|
+
const sessionName = execSync8(
|
|
5673
5689
|
"tmux display-message -p '#{session_name}' 2>/dev/null",
|
|
5674
5690
|
{ encoding: "utf8", timeout: 2e3 }
|
|
5675
5691
|
).trim();
|
|
@@ -3639,7 +3639,7 @@ var init_daemon_auth = __esm({
|
|
|
3639
3639
|
// src/lib/exe-daemon-client.ts
|
|
3640
3640
|
import net from "net";
|
|
3641
3641
|
import os11 from "os";
|
|
3642
|
-
import { spawn } from "child_process";
|
|
3642
|
+
import { spawn, execSync as execSync7 } from "child_process";
|
|
3643
3643
|
import { randomUUID as randomUUID2 } from "crypto";
|
|
3644
3644
|
import { existsSync as existsSync15, unlinkSync as unlinkSync5, readFileSync as readFileSync12, openSync, closeSync, statSync } from "fs";
|
|
3645
3645
|
import path17 from "path";
|
|
@@ -3669,6 +3669,14 @@ function handleData(chunk) {
|
|
|
3669
3669
|
}
|
|
3670
3670
|
}
|
|
3671
3671
|
}
|
|
3672
|
+
function isZombie(pid) {
|
|
3673
|
+
try {
|
|
3674
|
+
const state = execSync7(`ps -p ${pid} -o state=`, { encoding: "utf8", timeout: 2e3 }).trim();
|
|
3675
|
+
return state.startsWith("Z");
|
|
3676
|
+
} catch {
|
|
3677
|
+
return false;
|
|
3678
|
+
}
|
|
3679
|
+
}
|
|
3672
3680
|
function cleanupStaleFiles() {
|
|
3673
3681
|
if (existsSync15(PID_PATH)) {
|
|
3674
3682
|
try {
|
|
@@ -3676,7 +3684,11 @@ function cleanupStaleFiles() {
|
|
|
3676
3684
|
if (pid > 0) {
|
|
3677
3685
|
try {
|
|
3678
3686
|
process.kill(pid, 0);
|
|
3679
|
-
|
|
3687
|
+
if (!isZombie(pid)) {
|
|
3688
|
+
return;
|
|
3689
|
+
}
|
|
3690
|
+
process.stderr.write(`[exed-client] PID ${pid} is a zombie \u2014 cleaning up stale files
|
|
3691
|
+
`);
|
|
3680
3692
|
} catch {
|
|
3681
3693
|
}
|
|
3682
3694
|
}
|
|
@@ -3704,8 +3716,8 @@ function findPackageRoot() {
|
|
|
3704
3716
|
function getAvailableMemoryGB() {
|
|
3705
3717
|
if (process.platform === "darwin") {
|
|
3706
3718
|
try {
|
|
3707
|
-
const { execSync:
|
|
3708
|
-
const vmstat =
|
|
3719
|
+
const { execSync: execSync9 } = __require("child_process");
|
|
3720
|
+
const vmstat = execSync9("vm_stat", { encoding: "utf8" });
|
|
3709
3721
|
const pageSize = 16384;
|
|
3710
3722
|
const pageSizeMatch = vmstat.match(/page size of (\d+) bytes/);
|
|
3711
3723
|
const actualPageSize = pageSizeMatch ? parseInt(pageSizeMatch[1], 10) : pageSize;
|
|
@@ -4677,7 +4689,7 @@ __export(active_agent_exports, {
|
|
|
4677
4689
|
writeActiveAgent: () => writeActiveAgent
|
|
4678
4690
|
});
|
|
4679
4691
|
import { readFileSync as readFileSync13, writeFileSync as writeFileSync9, mkdirSync as mkdirSync8, unlinkSync as unlinkSync7, readdirSync as readdirSync4 } from "fs";
|
|
4680
|
-
import { execSync as
|
|
4692
|
+
import { execSync as execSync8 } from "child_process";
|
|
4681
4693
|
import path19 from "path";
|
|
4682
4694
|
function isNameWithOptionalInstance(candidate, baseName) {
|
|
4683
4695
|
if (candidate === baseName) return true;
|
|
@@ -4771,7 +4783,7 @@ function getActiveAgent() {
|
|
|
4771
4783
|
} catch {
|
|
4772
4784
|
}
|
|
4773
4785
|
try {
|
|
4774
|
-
const sessionName =
|
|
4786
|
+
const sessionName = execSync8(
|
|
4775
4787
|
"tmux display-message -p '#{session_name}' 2>/dev/null",
|
|
4776
4788
|
{ encoding: "utf8", timeout: 2e3 }
|
|
4777
4789
|
).trim();
|
package/dist/runtime/index.js
CHANGED
|
@@ -1616,7 +1616,7 @@ var init_daemon_auth = __esm({
|
|
|
1616
1616
|
// src/lib/exe-daemon-client.ts
|
|
1617
1617
|
import net from "net";
|
|
1618
1618
|
import os7 from "os";
|
|
1619
|
-
import { spawn } from "child_process";
|
|
1619
|
+
import { spawn, execSync as execSync5 } from "child_process";
|
|
1620
1620
|
import { randomUUID as randomUUID2 } from "crypto";
|
|
1621
1621
|
import { existsSync as existsSync8, unlinkSync as unlinkSync2, readFileSync as readFileSync7, openSync, closeSync, statSync } from "fs";
|
|
1622
1622
|
import path9 from "path";
|
|
@@ -1646,6 +1646,14 @@ function handleData(chunk) {
|
|
|
1646
1646
|
}
|
|
1647
1647
|
}
|
|
1648
1648
|
}
|
|
1649
|
+
function isZombie(pid) {
|
|
1650
|
+
try {
|
|
1651
|
+
const state = execSync5(`ps -p ${pid} -o state=`, { encoding: "utf8", timeout: 2e3 }).trim();
|
|
1652
|
+
return state.startsWith("Z");
|
|
1653
|
+
} catch {
|
|
1654
|
+
return false;
|
|
1655
|
+
}
|
|
1656
|
+
}
|
|
1649
1657
|
function cleanupStaleFiles() {
|
|
1650
1658
|
if (existsSync8(PID_PATH)) {
|
|
1651
1659
|
try {
|
|
@@ -1653,7 +1661,11 @@ function cleanupStaleFiles() {
|
|
|
1653
1661
|
if (pid > 0) {
|
|
1654
1662
|
try {
|
|
1655
1663
|
process.kill(pid, 0);
|
|
1656
|
-
|
|
1664
|
+
if (!isZombie(pid)) {
|
|
1665
|
+
return;
|
|
1666
|
+
}
|
|
1667
|
+
process.stderr.write(`[exed-client] PID ${pid} is a zombie \u2014 cleaning up stale files
|
|
1668
|
+
`);
|
|
1657
1669
|
} catch {
|
|
1658
1670
|
}
|
|
1659
1671
|
}
|
|
@@ -1681,8 +1693,8 @@ function findPackageRoot() {
|
|
|
1681
1693
|
function getAvailableMemoryGB() {
|
|
1682
1694
|
if (process.platform === "darwin") {
|
|
1683
1695
|
try {
|
|
1684
|
-
const { execSync:
|
|
1685
|
-
const vmstat =
|
|
1696
|
+
const { execSync: execSync10 } = __require("child_process");
|
|
1697
|
+
const vmstat = execSync10("vm_stat", { encoding: "utf8" });
|
|
1686
1698
|
const pageSize = 16384;
|
|
1687
1699
|
const pageSizeMatch = vmstat.match(/page size of (\d+) bytes/);
|
|
1688
1700
|
const actualPageSize = pageSizeMatch ? parseInt(pageSizeMatch[1], 10) : pageSize;
|
|
@@ -3617,6 +3629,12 @@ async function disposeDatabase() {
|
|
|
3617
3629
|
clearInterval(_walCheckpointTimer);
|
|
3618
3630
|
_walCheckpointTimer = null;
|
|
3619
3631
|
}
|
|
3632
|
+
if (_client) {
|
|
3633
|
+
try {
|
|
3634
|
+
await _client.execute("PRAGMA wal_checkpoint(PASSIVE)");
|
|
3635
|
+
} catch {
|
|
3636
|
+
}
|
|
3637
|
+
}
|
|
3620
3638
|
if (_daemonClient) {
|
|
3621
3639
|
_daemonClient.close();
|
|
3622
3640
|
_daemonClient = null;
|
|
@@ -4004,7 +4022,7 @@ var init_state_bus = __esm({
|
|
|
4004
4022
|
});
|
|
4005
4023
|
|
|
4006
4024
|
// src/lib/project-name.ts
|
|
4007
|
-
import { execSync as
|
|
4025
|
+
import { execSync as execSync6 } from "child_process";
|
|
4008
4026
|
import path14 from "path";
|
|
4009
4027
|
function getProjectName(cwd) {
|
|
4010
4028
|
const dir = cwd ?? process.cwd();
|
|
@@ -4012,7 +4030,7 @@ function getProjectName(cwd) {
|
|
|
4012
4030
|
try {
|
|
4013
4031
|
let repoRoot;
|
|
4014
4032
|
try {
|
|
4015
|
-
const gitCommonDir =
|
|
4033
|
+
const gitCommonDir = execSync6("git rev-parse --path-format=absolute --git-common-dir", {
|
|
4016
4034
|
cwd: dir,
|
|
4017
4035
|
encoding: "utf8",
|
|
4018
4036
|
timeout: 2e3,
|
|
@@ -4020,7 +4038,7 @@ function getProjectName(cwd) {
|
|
|
4020
4038
|
}).trim();
|
|
4021
4039
|
repoRoot = path14.dirname(gitCommonDir);
|
|
4022
4040
|
} catch {
|
|
4023
|
-
repoRoot =
|
|
4041
|
+
repoRoot = execSync6("git rev-parse --show-toplevel", {
|
|
4024
4042
|
cwd: dir,
|
|
4025
4043
|
encoding: "utf8",
|
|
4026
4044
|
timeout: 2e3,
|
|
@@ -4111,7 +4129,7 @@ var init_session_scope = __esm({
|
|
|
4111
4129
|
import crypto4 from "crypto";
|
|
4112
4130
|
import path15 from "path";
|
|
4113
4131
|
import os11 from "os";
|
|
4114
|
-
import { execSync as
|
|
4132
|
+
import { execSync as execSync7 } from "child_process";
|
|
4115
4133
|
import { mkdir as mkdir3, writeFile as writeFile3, appendFile } from "fs/promises";
|
|
4116
4134
|
import { existsSync as existsSync13, readFileSync as readFileSync11 } from "fs";
|
|
4117
4135
|
async function writeCheckpoint(input) {
|
|
@@ -4456,14 +4474,14 @@ function isTmuxSessionAlive(identifier) {
|
|
|
4456
4474
|
if (!identifier || identifier === "unknown") return true;
|
|
4457
4475
|
try {
|
|
4458
4476
|
if (identifier.startsWith("%")) {
|
|
4459
|
-
const output =
|
|
4477
|
+
const output = execSync7("tmux list-panes -a -F '#{pane_id}'", {
|
|
4460
4478
|
timeout: 2e3,
|
|
4461
4479
|
encoding: "utf8",
|
|
4462
4480
|
stdio: ["pipe", "pipe", "pipe"]
|
|
4463
4481
|
});
|
|
4464
4482
|
return output.split("\n").some((l) => l.trim() === identifier);
|
|
4465
4483
|
} else {
|
|
4466
|
-
|
|
4484
|
+
execSync7(`tmux has-session -t ${JSON.stringify(identifier)}`, {
|
|
4467
4485
|
timeout: 2e3,
|
|
4468
4486
|
stdio: ["pipe", "pipe", "pipe"]
|
|
4469
4487
|
});
|
|
@@ -4472,7 +4490,7 @@ function isTmuxSessionAlive(identifier) {
|
|
|
4472
4490
|
} catch {
|
|
4473
4491
|
if (identifier.startsWith("%")) return true;
|
|
4474
4492
|
try {
|
|
4475
|
-
|
|
4493
|
+
execSync7("tmux list-sessions", {
|
|
4476
4494
|
timeout: 2e3,
|
|
4477
4495
|
stdio: ["pipe", "pipe", "pipe"]
|
|
4478
4496
|
});
|
|
@@ -4487,12 +4505,12 @@ function checkStaleCompletion(taskContext, taskCreatedAt) {
|
|
|
4487
4505
|
if (!DELEGATION_KEYWORDS.test(taskContext)) return null;
|
|
4488
4506
|
try {
|
|
4489
4507
|
const since = new Date(taskCreatedAt).toISOString();
|
|
4490
|
-
const branch =
|
|
4508
|
+
const branch = execSync7(
|
|
4491
4509
|
"git rev-parse --abbrev-ref HEAD 2>/dev/null",
|
|
4492
4510
|
{ encoding: "utf8", timeout: 3e3 }
|
|
4493
4511
|
).trim();
|
|
4494
4512
|
const branchArg = branch && branch !== "HEAD" ? branch : "";
|
|
4495
|
-
const commitCount =
|
|
4513
|
+
const commitCount = execSync7(
|
|
4496
4514
|
`git log --oneline --since="${since}" ${branchArg} 2>/dev/null | wc -l`,
|
|
4497
4515
|
{ encoding: "utf8", timeout: 5e3 }
|
|
4498
4516
|
).trim();
|
|
@@ -6162,7 +6180,7 @@ __export(tmux_routing_exports, {
|
|
|
6162
6180
|
spawnEmployee: () => spawnEmployee,
|
|
6163
6181
|
verifyPaneAtCapacity: () => verifyPaneAtCapacity
|
|
6164
6182
|
});
|
|
6165
|
-
import { execFileSync as execFileSync2, execSync as
|
|
6183
|
+
import { execFileSync as execFileSync2, execSync as execSync8 } from "child_process";
|
|
6166
6184
|
import { readFileSync as readFileSync12, writeFileSync as writeFileSync8, mkdirSync as mkdirSync7, existsSync as existsSync15, appendFileSync, readdirSync as readdirSync3 } from "fs";
|
|
6167
6185
|
import path19 from "path";
|
|
6168
6186
|
import os12 from "os";
|
|
@@ -6883,7 +6901,7 @@ function spawnEmployee(employeeName, exeSession, projectDir, opts) {
|
|
|
6883
6901
|
let booted = false;
|
|
6884
6902
|
for (let i = 0; i < 30; i++) {
|
|
6885
6903
|
try {
|
|
6886
|
-
|
|
6904
|
+
execSync8("sleep 0.5");
|
|
6887
6905
|
} catch {
|
|
6888
6906
|
}
|
|
6889
6907
|
try {
|
|
@@ -6962,7 +6980,7 @@ var init_tmux_routing = __esm({
|
|
|
6962
6980
|
// src/lib/keychain.ts
|
|
6963
6981
|
import { readFile as readFile4, writeFile as writeFile5, unlink, mkdir as mkdir4, chmod as chmod2 } from "fs/promises";
|
|
6964
6982
|
import { existsSync as existsSync16, statSync as statSync2 } from "fs";
|
|
6965
|
-
import { execSync as
|
|
6983
|
+
import { execSync as execSync9 } from "child_process";
|
|
6966
6984
|
import path20 from "path";
|
|
6967
6985
|
import os13 from "os";
|
|
6968
6986
|
function getKeyDir() {
|
|
@@ -6979,13 +6997,13 @@ function linuxSecretAvailable() {
|
|
|
6979
6997
|
if (process.platform !== "linux") return false;
|
|
6980
6998
|
if (linuxSecretAvailability !== null) return linuxSecretAvailability;
|
|
6981
6999
|
try {
|
|
6982
|
-
|
|
7000
|
+
execSync9("command -v secret-tool >/dev/null 2>&1", { timeout: 1e3 });
|
|
6983
7001
|
} catch {
|
|
6984
7002
|
linuxSecretAvailability = false;
|
|
6985
7003
|
return false;
|
|
6986
7004
|
}
|
|
6987
7005
|
try {
|
|
6988
|
-
|
|
7006
|
+
execSync9("secret-tool search --all exe-os probe >/dev/null 2>&1", { timeout: 1e3 });
|
|
6989
7007
|
linuxSecretAvailability = true;
|
|
6990
7008
|
} catch {
|
|
6991
7009
|
linuxSecretAvailability = false;
|
|
@@ -7009,7 +7027,7 @@ function macKeychainGet(service = SERVICE) {
|
|
|
7009
7027
|
if (!nativeKeychainAllowed()) return null;
|
|
7010
7028
|
if (process.platform !== "darwin") return null;
|
|
7011
7029
|
try {
|
|
7012
|
-
return
|
|
7030
|
+
return execSync9(
|
|
7013
7031
|
`security find-generic-password -s "${service}" -a "${ACCOUNT}" -w 2>/dev/null`,
|
|
7014
7032
|
{ encoding: "utf-8", timeout: 5e3 }
|
|
7015
7033
|
).trim();
|
|
@@ -7022,13 +7040,13 @@ function macKeychainSet(value, service = SERVICE) {
|
|
|
7022
7040
|
if (process.platform !== "darwin") return false;
|
|
7023
7041
|
try {
|
|
7024
7042
|
try {
|
|
7025
|
-
|
|
7043
|
+
execSync9(
|
|
7026
7044
|
`security delete-generic-password -s "${service}" -a "${ACCOUNT}" 2>/dev/null`,
|
|
7027
7045
|
{ timeout: 5e3 }
|
|
7028
7046
|
);
|
|
7029
7047
|
} catch {
|
|
7030
7048
|
}
|
|
7031
|
-
|
|
7049
|
+
execSync9(
|
|
7032
7050
|
`security add-generic-password -s "${service}" -a "${ACCOUNT}" -w "${value}"`,
|
|
7033
7051
|
{ timeout: 5e3 }
|
|
7034
7052
|
);
|
|
@@ -7041,7 +7059,7 @@ function macKeychainDelete(service = SERVICE) {
|
|
|
7041
7059
|
if (!nativeKeychainAllowed()) return false;
|
|
7042
7060
|
if (process.platform !== "darwin") return false;
|
|
7043
7061
|
try {
|
|
7044
|
-
|
|
7062
|
+
execSync9(
|
|
7045
7063
|
`security delete-generic-password -s "${service}" -a "${ACCOUNT}" 2>/dev/null`,
|
|
7046
7064
|
{ timeout: 5e3 }
|
|
7047
7065
|
);
|
|
@@ -7053,7 +7071,7 @@ function macKeychainDelete(service = SERVICE) {
|
|
|
7053
7071
|
function linuxSecretGet(service = SERVICE) {
|
|
7054
7072
|
if (!linuxSecretAvailable()) return null;
|
|
7055
7073
|
try {
|
|
7056
|
-
return
|
|
7074
|
+
return execSync9(
|
|
7057
7075
|
`secret-tool lookup service "${service}" account "${ACCOUNT}" 2>/dev/null`,
|
|
7058
7076
|
{ encoding: "utf-8", timeout: 5e3 }
|
|
7059
7077
|
).trim();
|
|
@@ -7064,7 +7082,7 @@ function linuxSecretGet(service = SERVICE) {
|
|
|
7064
7082
|
function linuxSecretSet(value, service = SERVICE) {
|
|
7065
7083
|
if (!linuxSecretAvailable()) return false;
|
|
7066
7084
|
try {
|
|
7067
|
-
|
|
7085
|
+
execSync9(
|
|
7068
7086
|
`echo -n "${value}" | secret-tool store --label="exe-os master key" service "${service}" account "${ACCOUNT}" 2>/dev/null`,
|
|
7069
7087
|
{ timeout: 5e3 }
|
|
7070
7088
|
);
|
|
@@ -7077,7 +7095,7 @@ function linuxSecretDelete(service = SERVICE) {
|
|
|
7077
7095
|
if (!nativeKeychainAllowed()) return false;
|
|
7078
7096
|
if (process.platform !== "linux") return false;
|
|
7079
7097
|
try {
|
|
7080
|
-
|
|
7098
|
+
execSync9(
|
|
7081
7099
|
`secret-tool clear service "${service}" account "${ACCOUNT}" 2>/dev/null`,
|
|
7082
7100
|
{ timeout: 5e3 }
|
|
7083
7101
|
);
|
|
@@ -7959,6 +7977,24 @@ var init_platform_procedures = __esm({
|
|
|
7959
7977
|
priority: "p0",
|
|
7960
7978
|
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. If upstream delivery fails, call support_test (MCP) and include its result in the local report so AskExe can distinguish customer setup, license provisioning, and server intake issues; only ask the founder to run `exe-os support test` if MCP is disconnected/unavailable. 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."
|
|
7961
7979
|
},
|
|
7980
|
+
{
|
|
7981
|
+
title: "Bug report status check \u2014 surface available fixes on boot",
|
|
7982
|
+
domain: "support",
|
|
7983
|
+
priority: "p1",
|
|
7984
|
+
content: "Once per session (COO boot only, never repeat), call list_my_bug_reports to check if any previously filed bug reports have been fixed by AskExe. If any report has status 'fixed' with a fixed_version, surface it to the founder immediately: '\u{1F527} N bug fix(es) available \u2014 run exe-os update to get version X.Y.Z'. This is a one-time check at boot, not a recurring poll. If no reports exist or none are fixed, skip silently. If the MCP tool is unavailable or the network call fails, skip silently \u2014 this is informational, not blocking."
|
|
7985
|
+
},
|
|
7986
|
+
{
|
|
7987
|
+
title: "Feature request triage \u2014 upstream feature vs local customization",
|
|
7988
|
+
domain: "support",
|
|
7989
|
+
priority: "p0",
|
|
7990
|
+
content: "When an agent or founder identifies a desired capability that exe-os does not yet provide, the COO (or equivalent coordinator) must decide: is this a local customization (identity, behavior, procedure, config, branding, workflow preference that can be configured in customer-owned layers) or an upstream feature request (a platform capability that requires changes to exe-os code, shipped via npm update)? Local customizations: implement immediately using store_behavior, update_identity, company_procedure, or config changes. Upstream features: use create_feature_request to submit to AskExe. Include use case, business impact, and current workaround. Do NOT ask the founder for permission to file a feature request \u2014 file it proactively when the need is clear."
|
|
7991
|
+
},
|
|
7992
|
+
{
|
|
7993
|
+
title: "Feature request status check \u2014 surface shipped features on boot",
|
|
7994
|
+
domain: "support",
|
|
7995
|
+
priority: "p1",
|
|
7996
|
+
content: "Once per session (COO boot only, never repeat), call list_my_feature_requests to check if any previously filed feature requests have been shipped by AskExe. If any request has status 'shipped' with a shipped_version, surface it to the founder immediately: '\u{1F680} N feature(s) shipped \u2014 run exe-os update to get version X.Y.Z'. This is a one-time check at boot, not a recurring poll. If no requests exist or none are shipped, skip silently. If the MCP tool is unavailable or the network call fails, skip silently \u2014 this is informational, not blocking."
|
|
7997
|
+
},
|
|
7962
7998
|
// --- Operations ---
|
|
7963
7999
|
{
|
|
7964
8000
|
title: "Managers must supervise deployed workers",
|