@askexenow/exe-os 0.8.65 → 0.8.68
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/cleanup-stale-review-tasks.js +8 -7
- package/dist/bin/cli.js +204 -120
- package/dist/bin/exe-assign.js +11 -10
- package/dist/bin/exe-boot.js +83 -78
- package/dist/bin/exe-call.js +33 -1
- package/dist/bin/exe-cloud.js +3 -2
- package/dist/bin/exe-dispatch.js +31 -30
- package/dist/bin/exe-gateway.js +33 -32
- package/dist/bin/exe-heartbeat.js +21 -20
- package/dist/bin/exe-launch-agent.js +48 -16
- package/dist/bin/exe-link.js +16 -11
- package/dist/bin/exe-new-employee.js +20 -19
- package/dist/bin/exe-pending-messages.js +7 -6
- package/dist/bin/exe-pending-reviews.js +16 -15
- package/dist/bin/exe-rename.js +12 -11
- package/dist/bin/exe-review.js +4 -3
- package/dist/bin/exe-session-cleanup.js +20 -19
- package/dist/bin/exe-settings.js +3 -2
- package/dist/bin/exe-status.js +16 -15
- package/dist/bin/exe-team.js +4 -3
- package/dist/bin/git-sweep.js +31 -30
- package/dist/bin/install.js +284 -113
- package/dist/bin/scan-tasks.js +33 -32
- package/dist/bin/setup.js +114 -30
- package/dist/gateway/index.js +32 -31
- package/dist/hooks/bug-report-worker.js +58 -26
- package/dist/hooks/commit-complete.js +31 -30
- package/dist/hooks/ingest-worker.js +58 -57
- package/dist/hooks/post-compact.js +10 -9
- package/dist/hooks/pre-compact.js +31 -30
- package/dist/hooks/pre-tool-use.js +46 -14
- package/dist/hooks/prompt-ingest-worker.js +15 -14
- package/dist/hooks/prompt-submit.js +15 -14
- package/dist/hooks/response-ingest-worker.js +8 -7
- package/dist/hooks/session-end.js +14 -13
- package/dist/hooks/session-start.js +10 -9
- package/dist/hooks/stop.js +10 -9
- package/dist/hooks/subagent-stop.js +10 -9
- package/dist/hooks/summary-worker.js +41 -36
- package/dist/index.js +43 -42
- package/dist/lib/cloud-sync.js +16 -11
- package/dist/lib/employees.js +33 -1
- package/dist/lib/exe-daemon.js +56 -55
- package/dist/lib/messaging.js +9 -8
- package/dist/lib/tasks.js +27 -26
- package/dist/lib/tmux-routing.js +29 -28
- package/dist/mcp/server.js +94 -62
- package/dist/mcp/tools/create-task.js +60 -28
- package/dist/mcp/tools/list-tasks.js +10 -9
- package/dist/mcp/tools/send-message.js +11 -10
- package/dist/mcp/tools/update-task.js +21 -20
- package/dist/runtime/index.js +31 -30
- package/dist/tui/App.js +67 -35
- package/package.json +1 -1
|
@@ -1791,9 +1791,10 @@ var init_intercom_queue = __esm({
|
|
|
1791
1791
|
|
|
1792
1792
|
// src/lib/employees.ts
|
|
1793
1793
|
import { readFile as readFile3, writeFile as writeFile3, mkdir as mkdir3 } from "fs/promises";
|
|
1794
|
-
import { existsSync as existsSync5, symlinkSync, readlinkSync, readFileSync as readFileSync3 } from "fs";
|
|
1794
|
+
import { existsSync as existsSync5, symlinkSync, readlinkSync, readFileSync as readFileSync3, renameSync as renameSync3, unlinkSync, writeFileSync as writeFileSync2 } from "fs";
|
|
1795
1795
|
import { execSync as execSync3 } from "child_process";
|
|
1796
1796
|
import path6 from "path";
|
|
1797
|
+
import os5 from "os";
|
|
1797
1798
|
var EMPLOYEES_PATH;
|
|
1798
1799
|
var init_employees = __esm({
|
|
1799
1800
|
"src/lib/employees.ts"() {
|
|
@@ -1804,7 +1805,7 @@ var init_employees = __esm({
|
|
|
1804
1805
|
});
|
|
1805
1806
|
|
|
1806
1807
|
// src/lib/license.ts
|
|
1807
|
-
import { readFileSync as readFileSync4, writeFileSync as
|
|
1808
|
+
import { readFileSync as readFileSync4, writeFileSync as writeFileSync3, existsSync as existsSync6, mkdirSync as mkdirSync3 } from "fs";
|
|
1808
1809
|
import { randomUUID as randomUUID2 } from "crypto";
|
|
1809
1810
|
import path7 from "path";
|
|
1810
1811
|
import { jwtVerify, importSPKI } from "jose";
|
|
@@ -1835,9 +1836,9 @@ var init_plan_limits = __esm({
|
|
|
1835
1836
|
});
|
|
1836
1837
|
|
|
1837
1838
|
// src/lib/tmux-routing.ts
|
|
1838
|
-
import { readFileSync as readFileSync6, writeFileSync as
|
|
1839
|
+
import { readFileSync as readFileSync6, writeFileSync as writeFileSync4, mkdirSync as mkdirSync4, existsSync as existsSync8, appendFileSync } from "fs";
|
|
1839
1840
|
import path9 from "path";
|
|
1840
|
-
import
|
|
1841
|
+
import os6 from "os";
|
|
1841
1842
|
import { fileURLToPath } from "url";
|
|
1842
1843
|
function getMySession() {
|
|
1843
1844
|
return getTransport().getMySession();
|
|
@@ -1879,9 +1880,9 @@ var init_tmux_routing = __esm({
|
|
|
1879
1880
|
init_provider_table();
|
|
1880
1881
|
init_intercom_queue();
|
|
1881
1882
|
init_plan_limits();
|
|
1882
|
-
SPAWN_LOCK_DIR = path9.join(
|
|
1883
|
-
SESSION_CACHE = path9.join(
|
|
1884
|
-
INTERCOM_LOG2 = path9.join(
|
|
1883
|
+
SPAWN_LOCK_DIR = path9.join(os6.homedir(), ".exe-os", "spawn-locks");
|
|
1884
|
+
SESSION_CACHE = path9.join(os6.homedir(), ".exe-os", "session-cache");
|
|
1885
|
+
INTERCOM_LOG2 = path9.join(os6.homedir(), ".exe-os", "intercom.log");
|
|
1885
1886
|
DEBOUNCE_FILE = path9.join(SESSION_CACHE, "intercom-debounce.json");
|
|
1886
1887
|
DEBOUNCE_CLEANUP_AGE_MS = 5 * 60 * 1e3;
|
|
1887
1888
|
}
|