@askexenow/exe-os 0.8.40 → 0.8.42
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/backfill-conversations.js +805 -642
- package/dist/bin/backfill-responses.js +804 -641
- package/dist/bin/backfill-vectors.js +791 -634
- package/dist/bin/cleanup-stale-review-tasks.js +788 -631
- package/dist/bin/cli.js +1376 -659
- package/dist/bin/exe-agent.js +20 -1
- package/dist/bin/exe-assign.js +1503 -1343
- package/dist/bin/exe-boot.js +2549 -1784
- package/dist/bin/exe-call.js +39 -1
- package/dist/bin/exe-cloud.js +12 -2
- package/dist/bin/exe-dispatch.js +39 -2
- package/dist/bin/exe-doctor.js +791 -634
- package/dist/bin/exe-export-behaviors.js +792 -637
- package/dist/bin/exe-forget.js +145 -0
- package/dist/bin/exe-gateway.js +2501 -1846
- package/dist/bin/exe-heartbeat.js +147 -1
- package/dist/bin/exe-kill.js +795 -640
- package/dist/bin/exe-launch-agent.js +2168 -2008
- package/dist/bin/exe-link.js +44 -12
- package/dist/bin/exe-new-employee.js +6 -2
- package/dist/bin/exe-pending-messages.js +146 -1
- package/dist/bin/exe-pending-notifications.js +788 -631
- package/dist/bin/exe-pending-reviews.js +176 -1
- package/dist/bin/exe-rename.js +23 -0
- package/dist/bin/exe-review.js +490 -327
- package/dist/bin/exe-search.js +157 -4
- package/dist/bin/exe-session-cleanup.js +2487 -403
- package/dist/bin/exe-settings.js +2 -1
- package/dist/bin/exe-status.js +474 -317
- package/dist/bin/exe-team.js +474 -317
- package/dist/bin/git-sweep.js +2691 -151
- package/dist/bin/graph-backfill.js +794 -637
- package/dist/bin/graph-export.js +798 -641
- package/dist/bin/scan-tasks.js +2951 -44
- package/dist/bin/setup.js +50 -26
- package/dist/bin/shard-migrate.js +792 -637
- package/dist/bin/wiki-sync.js +794 -637
- package/dist/gateway/index.js +2542 -1887
- package/dist/hooks/bug-report-worker.js +2118 -576
- package/dist/hooks/commit-complete.js +2690 -150
- package/dist/hooks/error-recall.js +157 -4
- package/dist/hooks/ingest-worker.js +1455 -803
- package/dist/hooks/instructions-loaded.js +151 -0
- package/dist/hooks/notification.js +153 -2
- package/dist/hooks/post-compact.js +164 -0
- package/dist/hooks/pre-compact.js +3073 -101
- package/dist/hooks/pre-tool-use.js +151 -0
- package/dist/hooks/prompt-ingest-worker.js +1670 -1509
- package/dist/hooks/prompt-submit.js +2650 -1074
- package/dist/hooks/response-ingest-worker.js +154 -6
- package/dist/hooks/session-end.js +153 -2
- package/dist/hooks/session-start.js +157 -4
- package/dist/hooks/stop.js +151 -0
- package/dist/hooks/subagent-stop.js +155 -2
- package/dist/hooks/summary-worker.js +190 -21
- package/dist/index.js +326 -102
- package/dist/lib/cloud-sync.js +31 -10
- package/dist/lib/config.js +2 -0
- package/dist/lib/consolidation.js +69 -2
- package/dist/lib/database.js +19 -0
- package/dist/lib/device-registry.js +19 -0
- package/dist/lib/embedder.js +3 -1
- package/dist/lib/employee-templates.js +20 -1
- package/dist/lib/exe-daemon.js +285 -18
- package/dist/lib/hybrid-search.js +157 -4
- package/dist/lib/messaging.js +39 -2
- package/dist/lib/schedules.js +792 -637
- package/dist/lib/store.js +796 -636
- package/dist/lib/tasks.js +1485 -918
- package/dist/lib/tmux-routing.js +194 -10
- package/dist/mcp/server.js +1643 -924
- package/dist/mcp/tools/create-task.js +2283 -829
- package/dist/mcp/tools/list-tasks.js +2788 -159
- package/dist/mcp/tools/send-message.js +39 -2
- package/dist/mcp/tools/update-task.js +79 -0
- package/dist/runtime/index.js +280 -68
- package/dist/tui/App.js +1485 -645
- package/package.json +3 -2
|
@@ -322,6 +322,13 @@ async function ensureSchema() {
|
|
|
322
322
|
});
|
|
323
323
|
} catch {
|
|
324
324
|
}
|
|
325
|
+
try {
|
|
326
|
+
await client.execute({
|
|
327
|
+
sql: `ALTER TABLE tasks ADD COLUMN session_scope TEXT`,
|
|
328
|
+
args: []
|
|
329
|
+
});
|
|
330
|
+
} catch {
|
|
331
|
+
}
|
|
325
332
|
try {
|
|
326
333
|
await client.execute({
|
|
327
334
|
sql: `ALTER TABLE memories ADD COLUMN task_id TEXT`,
|
|
@@ -768,6 +775,18 @@ async function ensureSchema() {
|
|
|
768
775
|
CREATE INDEX IF NOT EXISTS idx_session_kills_agent
|
|
769
776
|
ON session_kills(agent_id);
|
|
770
777
|
`);
|
|
778
|
+
await client.execute(`
|
|
779
|
+
CREATE TABLE IF NOT EXISTS global_procedures (
|
|
780
|
+
id TEXT PRIMARY KEY,
|
|
781
|
+
title TEXT NOT NULL,
|
|
782
|
+
content TEXT NOT NULL,
|
|
783
|
+
priority TEXT NOT NULL DEFAULT 'p0',
|
|
784
|
+
domain TEXT,
|
|
785
|
+
active INTEGER NOT NULL DEFAULT 1,
|
|
786
|
+
created_at TEXT NOT NULL,
|
|
787
|
+
updated_at TEXT NOT NULL
|
|
788
|
+
)
|
|
789
|
+
`);
|
|
771
790
|
await client.executeMultiple(`
|
|
772
791
|
CREATE TABLE IF NOT EXISTS conversations (
|
|
773
792
|
id TEXT PRIMARY KEY,
|
|
@@ -922,6 +941,7 @@ var config_exports = {};
|
|
|
922
941
|
__export(config_exports, {
|
|
923
942
|
CONFIG_MIGRATIONS: () => CONFIG_MIGRATIONS,
|
|
924
943
|
CONFIG_PATH: () => CONFIG_PATH,
|
|
944
|
+
COO_AGENT_NAME: () => COO_AGENT_NAME,
|
|
925
945
|
CURRENT_CONFIG_VERSION: () => CURRENT_CONFIG_VERSION,
|
|
926
946
|
DB_PATH: () => DB_PATH,
|
|
927
947
|
EXE_AI_DIR: () => EXE_AI_DIR,
|
|
@@ -1077,7 +1097,7 @@ async function loadConfigFrom(configPath) {
|
|
|
1077
1097
|
return { ...DEFAULT_CONFIG };
|
|
1078
1098
|
}
|
|
1079
1099
|
}
|
|
1080
|
-
var EXE_AI_DIR, DB_PATH, MODELS_DIR, CONFIG_PATH, LEGACY_LANCE_PATH, CURRENT_CONFIG_VERSION, DEFAULT_CONFIG, CONFIG_MIGRATIONS;
|
|
1100
|
+
var EXE_AI_DIR, DB_PATH, MODELS_DIR, CONFIG_PATH, COO_AGENT_NAME, LEGACY_LANCE_PATH, CURRENT_CONFIG_VERSION, DEFAULT_CONFIG, CONFIG_MIGRATIONS;
|
|
1081
1101
|
var init_config = __esm({
|
|
1082
1102
|
"src/lib/config.ts"() {
|
|
1083
1103
|
"use strict";
|
|
@@ -1085,6 +1105,7 @@ var init_config = __esm({
|
|
|
1085
1105
|
DB_PATH = path2.join(EXE_AI_DIR, "memories.db");
|
|
1086
1106
|
MODELS_DIR = path2.join(EXE_AI_DIR, "models");
|
|
1087
1107
|
CONFIG_PATH = path2.join(EXE_AI_DIR, "config.json");
|
|
1108
|
+
COO_AGENT_NAME = "exe";
|
|
1088
1109
|
LEGACY_LANCE_PATH = path2.join(EXE_AI_DIR, "local.lance");
|
|
1089
1110
|
CURRENT_CONFIG_VERSION = 1;
|
|
1090
1111
|
DEFAULT_CONFIG = {
|
|
@@ -1163,6 +1184,61 @@ var init_config = __esm({
|
|
|
1163
1184
|
}
|
|
1164
1185
|
});
|
|
1165
1186
|
|
|
1187
|
+
// src/lib/state-bus.ts
|
|
1188
|
+
var StateBus, orgBus;
|
|
1189
|
+
var init_state_bus = __esm({
|
|
1190
|
+
"src/lib/state-bus.ts"() {
|
|
1191
|
+
"use strict";
|
|
1192
|
+
StateBus = class {
|
|
1193
|
+
handlers = /* @__PURE__ */ new Map();
|
|
1194
|
+
globalHandlers = /* @__PURE__ */ new Set();
|
|
1195
|
+
/** Emit an event to all subscribers */
|
|
1196
|
+
emit(event) {
|
|
1197
|
+
const typeHandlers = this.handlers.get(event.type);
|
|
1198
|
+
if (typeHandlers) {
|
|
1199
|
+
for (const handler of typeHandlers) {
|
|
1200
|
+
try {
|
|
1201
|
+
handler(event);
|
|
1202
|
+
} catch {
|
|
1203
|
+
}
|
|
1204
|
+
}
|
|
1205
|
+
}
|
|
1206
|
+
for (const handler of this.globalHandlers) {
|
|
1207
|
+
try {
|
|
1208
|
+
handler(event);
|
|
1209
|
+
} catch {
|
|
1210
|
+
}
|
|
1211
|
+
}
|
|
1212
|
+
}
|
|
1213
|
+
/** Subscribe to a specific event type */
|
|
1214
|
+
on(type, handler) {
|
|
1215
|
+
if (!this.handlers.has(type)) {
|
|
1216
|
+
this.handlers.set(type, /* @__PURE__ */ new Set());
|
|
1217
|
+
}
|
|
1218
|
+
this.handlers.get(type).add(handler);
|
|
1219
|
+
}
|
|
1220
|
+
/** Subscribe to ALL events */
|
|
1221
|
+
onAny(handler) {
|
|
1222
|
+
this.globalHandlers.add(handler);
|
|
1223
|
+
}
|
|
1224
|
+
/** Unsubscribe from a specific event type */
|
|
1225
|
+
off(type, handler) {
|
|
1226
|
+
this.handlers.get(type)?.delete(handler);
|
|
1227
|
+
}
|
|
1228
|
+
/** Unsubscribe from ALL events */
|
|
1229
|
+
offAny(handler) {
|
|
1230
|
+
this.globalHandlers.delete(handler);
|
|
1231
|
+
}
|
|
1232
|
+
/** Remove all listeners */
|
|
1233
|
+
clear() {
|
|
1234
|
+
this.handlers.clear();
|
|
1235
|
+
this.globalHandlers.clear();
|
|
1236
|
+
}
|
|
1237
|
+
};
|
|
1238
|
+
orgBus = new StateBus();
|
|
1239
|
+
}
|
|
1240
|
+
});
|
|
1241
|
+
|
|
1166
1242
|
// src/lib/shard-manager.ts
|
|
1167
1243
|
var shard_manager_exports = {};
|
|
1168
1244
|
__export(shard_manager_exports, {
|
|
@@ -1404,6 +1480,71 @@ var init_shard_manager = __esm({
|
|
|
1404
1480
|
}
|
|
1405
1481
|
});
|
|
1406
1482
|
|
|
1483
|
+
// src/lib/global-procedures.ts
|
|
1484
|
+
var global_procedures_exports = {};
|
|
1485
|
+
__export(global_procedures_exports, {
|
|
1486
|
+
deactivateGlobalProcedure: () => deactivateGlobalProcedure,
|
|
1487
|
+
getGlobalProceduresBlock: () => getGlobalProceduresBlock,
|
|
1488
|
+
loadGlobalProcedures: () => loadGlobalProcedures,
|
|
1489
|
+
storeGlobalProcedure: () => storeGlobalProcedure
|
|
1490
|
+
});
|
|
1491
|
+
import { randomUUID } from "crypto";
|
|
1492
|
+
async function loadGlobalProcedures() {
|
|
1493
|
+
const client = getClient();
|
|
1494
|
+
const result = await client.execute({
|
|
1495
|
+
sql: "SELECT * FROM global_procedures WHERE active = 1 ORDER BY priority ASC, created_at ASC",
|
|
1496
|
+
args: []
|
|
1497
|
+
});
|
|
1498
|
+
const procedures = result.rows;
|
|
1499
|
+
if (procedures.length > 0) {
|
|
1500
|
+
_cache = procedures.map((p) => `### ${p.title}
|
|
1501
|
+
${p.content}`).join("\n\n");
|
|
1502
|
+
} else {
|
|
1503
|
+
_cache = "";
|
|
1504
|
+
}
|
|
1505
|
+
_cacheLoaded = true;
|
|
1506
|
+
return procedures;
|
|
1507
|
+
}
|
|
1508
|
+
function getGlobalProceduresBlock() {
|
|
1509
|
+
if (!_cacheLoaded) return "";
|
|
1510
|
+
if (!_cache) return "";
|
|
1511
|
+
return `## Organization-Wide Procedures (MANDATORY \u2014 supersedes all other rules)
|
|
1512
|
+
|
|
1513
|
+
${_cache}
|
|
1514
|
+
`;
|
|
1515
|
+
}
|
|
1516
|
+
async function storeGlobalProcedure(input) {
|
|
1517
|
+
const id = randomUUID();
|
|
1518
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
1519
|
+
const client = getClient();
|
|
1520
|
+
await client.execute({
|
|
1521
|
+
sql: `INSERT INTO global_procedures (id, title, content, priority, domain, active, created_at, updated_at)
|
|
1522
|
+
VALUES (?, ?, ?, ?, ?, 1, ?, ?)`,
|
|
1523
|
+
args: [id, input.title, input.content, input.priority ?? "p0", input.domain ?? null, now, now]
|
|
1524
|
+
});
|
|
1525
|
+
await loadGlobalProcedures();
|
|
1526
|
+
return id;
|
|
1527
|
+
}
|
|
1528
|
+
async function deactivateGlobalProcedure(id) {
|
|
1529
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
1530
|
+
const client = getClient();
|
|
1531
|
+
const result = await client.execute({
|
|
1532
|
+
sql: "UPDATE global_procedures SET active = 0, updated_at = ? WHERE id = ?",
|
|
1533
|
+
args: [now, id]
|
|
1534
|
+
});
|
|
1535
|
+
await loadGlobalProcedures();
|
|
1536
|
+
return result.rowsAffected > 0;
|
|
1537
|
+
}
|
|
1538
|
+
var _cache, _cacheLoaded;
|
|
1539
|
+
var init_global_procedures = __esm({
|
|
1540
|
+
"src/lib/global-procedures.ts"() {
|
|
1541
|
+
"use strict";
|
|
1542
|
+
init_database();
|
|
1543
|
+
_cache = "";
|
|
1544
|
+
_cacheLoaded = false;
|
|
1545
|
+
}
|
|
1546
|
+
});
|
|
1547
|
+
|
|
1407
1548
|
// src/lib/project-name.ts
|
|
1408
1549
|
import { execSync } from "child_process";
|
|
1409
1550
|
import path4 from "path";
|
|
@@ -1449,7 +1590,7 @@ var init_project_name = __esm({
|
|
|
1449
1590
|
// src/lib/exe-daemon-client.ts
|
|
1450
1591
|
import net from "net";
|
|
1451
1592
|
import { spawn } from "child_process";
|
|
1452
|
-
import { randomUUID } from "crypto";
|
|
1593
|
+
import { randomUUID as randomUUID2 } from "crypto";
|
|
1453
1594
|
import { existsSync as existsSync4, unlinkSync, readFileSync as readFileSync2, openSync, closeSync, statSync } from "fs";
|
|
1454
1595
|
import path5 from "path";
|
|
1455
1596
|
import { fileURLToPath } from "url";
|
|
@@ -1641,7 +1782,7 @@ function sendRequest(texts, priority) {
|
|
|
1641
1782
|
resolve({ error: "Not connected" });
|
|
1642
1783
|
return;
|
|
1643
1784
|
}
|
|
1644
|
-
const id =
|
|
1785
|
+
const id = randomUUID2();
|
|
1645
1786
|
const timer = setTimeout(() => {
|
|
1646
1787
|
_pending.delete(id);
|
|
1647
1788
|
resolve({ error: "Request timeout" });
|
|
@@ -1659,7 +1800,7 @@ function sendRequest(texts, priority) {
|
|
|
1659
1800
|
async function pingDaemon() {
|
|
1660
1801
|
if (!_socket || !_connected) return null;
|
|
1661
1802
|
return new Promise((resolve) => {
|
|
1662
|
-
const id =
|
|
1803
|
+
const id = randomUUID2();
|
|
1663
1804
|
const timer = setTimeout(() => {
|
|
1664
1805
|
_pending.delete(id);
|
|
1665
1806
|
resolve(null);
|
|
@@ -1824,10 +1965,10 @@ async function disposeEmbedder() {
|
|
|
1824
1965
|
async function embedDirect(text) {
|
|
1825
1966
|
const llamaCpp = await import("node-llama-cpp");
|
|
1826
1967
|
const { MODELS_DIR: MODELS_DIR2 } = await Promise.resolve().then(() => (init_config(), config_exports));
|
|
1827
|
-
const { existsSync:
|
|
1828
|
-
const
|
|
1829
|
-
const modelPath =
|
|
1830
|
-
if (!
|
|
1968
|
+
const { existsSync: existsSync15 } = await import("fs");
|
|
1969
|
+
const path18 = await import("path");
|
|
1970
|
+
const modelPath = path18.join(MODELS_DIR2, "jina-embeddings-v5-small-q4_k_m.gguf");
|
|
1971
|
+
if (!existsSync15(modelPath)) {
|
|
1831
1972
|
throw new Error(`Embedding model not found at ${modelPath}. Run '/exe-setup' to download it.`);
|
|
1832
1973
|
}
|
|
1833
1974
|
const llama = await llamaCpp.getLlama();
|
|
@@ -1871,15 +2012,30 @@ async function loadEmployees(employeesPath = EMPLOYEES_PATH) {
|
|
|
1871
2012
|
return [];
|
|
1872
2013
|
}
|
|
1873
2014
|
}
|
|
2015
|
+
function loadEmployeesSync(employeesPath = EMPLOYEES_PATH) {
|
|
2016
|
+
if (!existsSync5(employeesPath)) return [];
|
|
2017
|
+
try {
|
|
2018
|
+
return JSON.parse(readFileSync3(employeesPath, "utf-8"));
|
|
2019
|
+
} catch {
|
|
2020
|
+
return [];
|
|
2021
|
+
}
|
|
2022
|
+
}
|
|
1874
2023
|
function getEmployee(employees, name) {
|
|
1875
2024
|
return employees.find((e) => e.name.toLowerCase() === name.toLowerCase());
|
|
1876
2025
|
}
|
|
1877
|
-
|
|
2026
|
+
function isMultiInstance(agentName2, employees) {
|
|
2027
|
+
const roster = employees ?? loadEmployeesSync();
|
|
2028
|
+
const emp = getEmployee(roster, agentName2);
|
|
2029
|
+
if (!emp) return false;
|
|
2030
|
+
return MULTI_INSTANCE_ROLES.has(emp.role.toLowerCase());
|
|
2031
|
+
}
|
|
2032
|
+
var EMPLOYEES_PATH, MULTI_INSTANCE_ROLES;
|
|
1878
2033
|
var init_employees = __esm({
|
|
1879
2034
|
"src/lib/employees.ts"() {
|
|
1880
2035
|
"use strict";
|
|
1881
2036
|
init_config();
|
|
1882
2037
|
EMPLOYEES_PATH = path6.join(EXE_AI_DIR, "exe-employees.json");
|
|
2038
|
+
MULTI_INSTANCE_ROLES = /* @__PURE__ */ new Set(["principal engineer", "content production specialist", "staff code reviewer"]);
|
|
1883
2039
|
}
|
|
1884
2040
|
});
|
|
1885
2041
|
|
|
@@ -1918,6 +2074,16 @@ async function writeNotification(notification) {
|
|
|
1918
2074
|
`);
|
|
1919
2075
|
}
|
|
1920
2076
|
}
|
|
2077
|
+
async function markAsReadByTaskFile(taskFile) {
|
|
2078
|
+
try {
|
|
2079
|
+
const client = getClient();
|
|
2080
|
+
await client.execute({
|
|
2081
|
+
sql: "UPDATE notifications SET read = 1 WHERE task_file = ? AND read = 0",
|
|
2082
|
+
args: [taskFile]
|
|
2083
|
+
});
|
|
2084
|
+
} catch {
|
|
2085
|
+
}
|
|
2086
|
+
}
|
|
1921
2087
|
var init_notifications = __esm({
|
|
1922
2088
|
"src/lib/notifications.ts"() {
|
|
1923
2089
|
"use strict";
|
|
@@ -1925,254 +2091,66 @@ var init_notifications = __esm({
|
|
|
1925
2091
|
}
|
|
1926
2092
|
});
|
|
1927
2093
|
|
|
1928
|
-
// src/lib/
|
|
1929
|
-
import
|
|
2094
|
+
// src/lib/session-registry.ts
|
|
2095
|
+
import { readFileSync as readFileSync5, writeFileSync, mkdirSync as mkdirSync2, existsSync as existsSync7 } from "fs";
|
|
1930
2096
|
import path8 from "path";
|
|
1931
|
-
import
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
);
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
}
|
|
1944
|
-
async function resolveTask(client, identifier) {
|
|
1945
|
-
let result = await client.execute({
|
|
1946
|
-
sql: "SELECT * FROM tasks WHERE id = ?",
|
|
1947
|
-
args: [identifier]
|
|
1948
|
-
});
|
|
1949
|
-
if (result.rows.length === 1) return result.rows[0];
|
|
1950
|
-
result = await client.execute({
|
|
1951
|
-
sql: "SELECT * FROM tasks WHERE task_file LIKE ?",
|
|
1952
|
-
args: [`%${identifier}%`]
|
|
1953
|
-
});
|
|
1954
|
-
if (result.rows.length === 1) return result.rows[0];
|
|
1955
|
-
if (result.rows.length > 1) {
|
|
1956
|
-
const exact = result.rows.filter(
|
|
1957
|
-
(r) => String(r.task_file).endsWith(`/${identifier}.md`)
|
|
1958
|
-
);
|
|
1959
|
-
if (exact.length === 1) return exact[0];
|
|
1960
|
-
const candidates = exact.length > 1 ? exact : result.rows;
|
|
1961
|
-
const active = candidates.filter(
|
|
1962
|
-
(r) => !["done", "cancelled"].includes(String(r.status))
|
|
1963
|
-
);
|
|
1964
|
-
if (active.length === 1) return active[0];
|
|
1965
|
-
const matches = (active.length > 1 ? active : candidates).map((r) => `${String(r.task_file)} (${String(r.status)}, ${String(r.id)})`).join(", ");
|
|
1966
|
-
throw new Error(
|
|
1967
|
-
`Multiple tasks match "${identifier}": ${matches}. Use a UUID to disambiguate.`
|
|
1968
|
-
);
|
|
1969
|
-
}
|
|
1970
|
-
result = await client.execute({
|
|
1971
|
-
sql: "SELECT * FROM tasks WHERE title LIKE ?",
|
|
1972
|
-
args: [`%${identifier}%`]
|
|
1973
|
-
});
|
|
1974
|
-
if (result.rows.length === 1) return result.rows[0];
|
|
1975
|
-
if (result.rows.length > 1) {
|
|
1976
|
-
const active = result.rows.filter(
|
|
1977
|
-
(r) => !["done", "cancelled"].includes(String(r.status))
|
|
1978
|
-
);
|
|
1979
|
-
if (active.length === 1) return active[0];
|
|
1980
|
-
const matches = (active.length > 1 ? active : result.rows).map((r) => `"${String(r.title)}" (${String(r.status)}, ${String(r.id)})`).join(", ");
|
|
1981
|
-
throw new Error(
|
|
1982
|
-
`Multiple tasks match "${identifier}": ${matches}. Use a UUID to disambiguate.`
|
|
1983
|
-
);
|
|
2097
|
+
import os4 from "os";
|
|
2098
|
+
function registerSession(entry) {
|
|
2099
|
+
const dir = path8.dirname(REGISTRY_PATH);
|
|
2100
|
+
if (!existsSync7(dir)) {
|
|
2101
|
+
mkdirSync2(dir, { recursive: true });
|
|
2102
|
+
}
|
|
2103
|
+
const sessions = listSessions();
|
|
2104
|
+
const idx = sessions.findIndex((s) => s.windowName === entry.windowName);
|
|
2105
|
+
if (idx >= 0) {
|
|
2106
|
+
sessions[idx] = entry;
|
|
2107
|
+
} else {
|
|
2108
|
+
sessions.push(entry);
|
|
1984
2109
|
}
|
|
1985
|
-
|
|
2110
|
+
writeFileSync(REGISTRY_PATH, JSON.stringify(sessions, null, 2));
|
|
1986
2111
|
}
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
let blockedById = null;
|
|
1994
|
-
const initialStatus = input.blockedBy ? "blocked" : "open";
|
|
1995
|
-
if (input.blockedBy) {
|
|
1996
|
-
const blocker = await resolveTask(client, input.blockedBy);
|
|
1997
|
-
blockedById = String(blocker.id);
|
|
2112
|
+
function listSessions() {
|
|
2113
|
+
try {
|
|
2114
|
+
const raw = readFileSync5(REGISTRY_PATH, "utf8");
|
|
2115
|
+
return JSON.parse(raw);
|
|
2116
|
+
} catch {
|
|
2117
|
+
return [];
|
|
1998
2118
|
}
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
process.stderr.write(
|
|
2006
|
-
"[create_task] auto-populated parent_task_id from context body \u2014 dispatchers should pass parent_task_id explicitly\n"
|
|
2007
|
-
);
|
|
2008
|
-
}
|
|
2119
|
+
}
|
|
2120
|
+
var REGISTRY_PATH;
|
|
2121
|
+
var init_session_registry = __esm({
|
|
2122
|
+
"src/lib/session-registry.ts"() {
|
|
2123
|
+
"use strict";
|
|
2124
|
+
REGISTRY_PATH = path8.join(os4.homedir(), ".exe-os", "session-registry.json");
|
|
2009
2125
|
}
|
|
2010
|
-
|
|
2126
|
+
});
|
|
2127
|
+
|
|
2128
|
+
// src/lib/session-key.ts
|
|
2129
|
+
import { execSync as execSync3 } from "child_process";
|
|
2130
|
+
function getSessionKey() {
|
|
2131
|
+
if (_cached2) return _cached2;
|
|
2132
|
+
let pid = process.ppid;
|
|
2133
|
+
for (let i = 0; i < 10; i++) {
|
|
2011
2134
|
try {
|
|
2012
|
-
const
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2135
|
+
const info = execSync3(`ps -p ${pid} -o ppid=,comm=`, {
|
|
2136
|
+
encoding: "utf8",
|
|
2137
|
+
timeout: 2e3
|
|
2138
|
+
}).trim();
|
|
2139
|
+
const match = info.match(/^\s*(\d+)\s+(.+)$/);
|
|
2140
|
+
if (!match) break;
|
|
2141
|
+
const [, ppid, cmd] = match;
|
|
2142
|
+
if (cmd === "claude" || cmd.endsWith("/claude")) {
|
|
2143
|
+
_cached2 = String(pid);
|
|
2144
|
+
return _cached2;
|
|
2019
2145
|
}
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
}
|
|
2023
|
-
let warning;
|
|
2024
|
-
const dupCheck = await client.execute({
|
|
2025
|
-
sql: "SELECT id FROM tasks WHERE title = ? AND assigned_to = ? AND status IN ('open', 'in_progress', 'blocked')",
|
|
2026
|
-
args: [input.title, input.assignedTo]
|
|
2027
|
-
});
|
|
2028
|
-
if (dupCheck.rows.length > 0) {
|
|
2029
|
-
warning = `similar active task already exists (${String(dupCheck.rows[0].id)}). Created new task anyway.`;
|
|
2030
|
-
}
|
|
2031
|
-
if (input.baseDir) {
|
|
2032
|
-
try {
|
|
2033
|
-
await mkdir4(path8.join(input.baseDir, "exe", "output"), { recursive: true });
|
|
2034
|
-
await mkdir4(path8.join(input.baseDir, "exe", "research"), { recursive: true });
|
|
2035
|
-
await ensureArchitectureDoc(input.baseDir, input.projectName);
|
|
2036
|
-
await ensureGitignoreExe(input.baseDir);
|
|
2146
|
+
pid = parseInt(ppid, 10);
|
|
2147
|
+
if (pid <= 1) break;
|
|
2037
2148
|
} catch {
|
|
2149
|
+
break;
|
|
2038
2150
|
}
|
|
2039
2151
|
}
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
sql: `INSERT INTO tasks (id, title, assigned_to, assigned_by, project_name, priority, status, task_file, blocked_by, parent_task_id, reviewer, context, complexity, budget_tokens, budget_fallback_model, tokens_used, tokens_warned_at, created_at, updated_at)
|
|
2043
|
-
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`,
|
|
2044
|
-
args: [
|
|
2045
|
-
id,
|
|
2046
|
-
input.title,
|
|
2047
|
-
input.assignedTo,
|
|
2048
|
-
input.assignedBy,
|
|
2049
|
-
input.projectName,
|
|
2050
|
-
input.priority,
|
|
2051
|
-
initialStatus,
|
|
2052
|
-
taskFile,
|
|
2053
|
-
blockedById,
|
|
2054
|
-
parentTaskId,
|
|
2055
|
-
input.reviewer ?? null,
|
|
2056
|
-
input.context,
|
|
2057
|
-
complexity,
|
|
2058
|
-
input.budgetTokens ?? null,
|
|
2059
|
-
input.budgetFallbackModel ?? null,
|
|
2060
|
-
0,
|
|
2061
|
-
null,
|
|
2062
|
-
now,
|
|
2063
|
-
now
|
|
2064
|
-
]
|
|
2065
|
-
});
|
|
2066
|
-
return {
|
|
2067
|
-
id,
|
|
2068
|
-
title: input.title,
|
|
2069
|
-
assignedTo: input.assignedTo,
|
|
2070
|
-
assignedBy: input.assignedBy,
|
|
2071
|
-
projectName: input.projectName,
|
|
2072
|
-
priority: input.priority,
|
|
2073
|
-
status: initialStatus,
|
|
2074
|
-
taskFile,
|
|
2075
|
-
createdAt: now,
|
|
2076
|
-
updatedAt: now,
|
|
2077
|
-
warning,
|
|
2078
|
-
budgetTokens: input.budgetTokens ?? null,
|
|
2079
|
-
budgetFallbackModel: input.budgetFallbackModel ?? null,
|
|
2080
|
-
tokensUsed: 0,
|
|
2081
|
-
tokensWarnedAt: null
|
|
2082
|
-
};
|
|
2083
|
-
}
|
|
2084
|
-
async function ensureArchitectureDoc(baseDir, projectName) {
|
|
2085
|
-
const archPath = path8.join(baseDir, "exe", "ARCHITECTURE.md");
|
|
2086
|
-
try {
|
|
2087
|
-
if (existsSync7(archPath)) return;
|
|
2088
|
-
const template = [
|
|
2089
|
-
`# ${projectName} \u2014 System Architecture`,
|
|
2090
|
-
"",
|
|
2091
|
-
"> Employees: read this before every task. Update it when you change system structure.",
|
|
2092
|
-
`> Last updated: ${(/* @__PURE__ */ new Date()).toISOString().split("T")[0]}`,
|
|
2093
|
-
"",
|
|
2094
|
-
"## Overview",
|
|
2095
|
-
"",
|
|
2096
|
-
"<!-- Describe what this system does, its main components, and how they connect. -->",
|
|
2097
|
-
"",
|
|
2098
|
-
"## Key Components",
|
|
2099
|
-
"",
|
|
2100
|
-
"<!-- List the major modules, services, or subsystems. -->",
|
|
2101
|
-
"",
|
|
2102
|
-
"## Data Flow",
|
|
2103
|
-
"",
|
|
2104
|
-
"<!-- How does data move through the system? What writes where? -->",
|
|
2105
|
-
"",
|
|
2106
|
-
"## Invariants",
|
|
2107
|
-
"",
|
|
2108
|
-
"<!-- Rules that must never be violated. What breaks if these are wrong? -->",
|
|
2109
|
-
"",
|
|
2110
|
-
"## Dependencies",
|
|
2111
|
-
"",
|
|
2112
|
-
"<!-- What depends on what? If I change X, what else is affected? -->",
|
|
2113
|
-
""
|
|
2114
|
-
].join("\n");
|
|
2115
|
-
await writeFile4(archPath, template, "utf-8");
|
|
2116
|
-
} catch {
|
|
2117
|
-
}
|
|
2118
|
-
}
|
|
2119
|
-
async function ensureGitignoreExe(baseDir) {
|
|
2120
|
-
const gitignorePath = path8.join(baseDir, ".gitignore");
|
|
2121
|
-
try {
|
|
2122
|
-
if (existsSync7(gitignorePath)) {
|
|
2123
|
-
const content = readFileSync5(gitignorePath, "utf-8");
|
|
2124
|
-
if (/^\/?exe\/?$/m.test(content)) return;
|
|
2125
|
-
await appendFile(gitignorePath, "\n# Employee task assignments (private)\n/exe/\n");
|
|
2126
|
-
} else {
|
|
2127
|
-
await writeFile4(gitignorePath, "# Employee task assignments (private)\n/exe/\n", "utf-8");
|
|
2128
|
-
}
|
|
2129
|
-
} catch {
|
|
2130
|
-
}
|
|
2131
|
-
}
|
|
2132
|
-
var init_tasks_crud = __esm({
|
|
2133
|
-
"src/lib/tasks-crud.ts"() {
|
|
2134
|
-
"use strict";
|
|
2135
|
-
init_database();
|
|
2136
|
-
}
|
|
2137
|
-
});
|
|
2138
|
-
|
|
2139
|
-
// src/lib/session-registry.ts
|
|
2140
|
-
import path9 from "path";
|
|
2141
|
-
import os4 from "os";
|
|
2142
|
-
var REGISTRY_PATH;
|
|
2143
|
-
var init_session_registry = __esm({
|
|
2144
|
-
"src/lib/session-registry.ts"() {
|
|
2145
|
-
"use strict";
|
|
2146
|
-
REGISTRY_PATH = path9.join(os4.homedir(), ".exe-os", "session-registry.json");
|
|
2147
|
-
}
|
|
2148
|
-
});
|
|
2149
|
-
|
|
2150
|
-
// src/lib/session-key.ts
|
|
2151
|
-
import { execSync as execSync4 } from "child_process";
|
|
2152
|
-
function getSessionKey() {
|
|
2153
|
-
if (_cached2) return _cached2;
|
|
2154
|
-
let pid = process.ppid;
|
|
2155
|
-
for (let i = 0; i < 10; i++) {
|
|
2156
|
-
try {
|
|
2157
|
-
const info = execSync4(`ps -p ${pid} -o ppid=,comm=`, {
|
|
2158
|
-
encoding: "utf8",
|
|
2159
|
-
timeout: 2e3
|
|
2160
|
-
}).trim();
|
|
2161
|
-
const match = info.match(/^\s*(\d+)\s+(.+)$/);
|
|
2162
|
-
if (!match) break;
|
|
2163
|
-
const [, ppid, cmd] = match;
|
|
2164
|
-
if (cmd === "claude" || cmd.endsWith("/claude")) {
|
|
2165
|
-
_cached2 = String(pid);
|
|
2166
|
-
return _cached2;
|
|
2167
|
-
}
|
|
2168
|
-
pid = parseInt(ppid, 10);
|
|
2169
|
-
if (pid <= 1) break;
|
|
2170
|
-
} catch {
|
|
2171
|
-
break;
|
|
2172
|
-
}
|
|
2173
|
-
}
|
|
2174
|
-
_cached2 = process.env.CLAUDE_CODE_SSE_PORT ?? String(process.ppid);
|
|
2175
|
-
return _cached2;
|
|
2152
|
+
_cached2 = process.env.CLAUDE_CODE_SSE_PORT ?? String(process.ppid);
|
|
2153
|
+
return _cached2;
|
|
2176
2154
|
}
|
|
2177
2155
|
var _cached2;
|
|
2178
2156
|
var init_session_key = __esm({
|
|
@@ -2290,14 +2268,41 @@ var init_transport = __esm({
|
|
|
2290
2268
|
});
|
|
2291
2269
|
|
|
2292
2270
|
// src/lib/cc-agent-support.ts
|
|
2293
|
-
import { execSync as
|
|
2271
|
+
import { execSync as execSync4 } from "child_process";
|
|
2272
|
+
function _resetCcAgentSupportCache() {
|
|
2273
|
+
_cachedSupport = null;
|
|
2274
|
+
}
|
|
2275
|
+
function claudeSupportsAgentFlag() {
|
|
2276
|
+
if (_cachedSupport !== null) return _cachedSupport;
|
|
2277
|
+
try {
|
|
2278
|
+
const helpOutput = execSync4("claude --help 2>&1", {
|
|
2279
|
+
encoding: "utf-8",
|
|
2280
|
+
timeout: 5e3
|
|
2281
|
+
});
|
|
2282
|
+
_cachedSupport = /(^|\s)--agent(\b|=)/.test(helpOutput);
|
|
2283
|
+
} catch {
|
|
2284
|
+
_cachedSupport = false;
|
|
2285
|
+
}
|
|
2286
|
+
return _cachedSupport;
|
|
2287
|
+
}
|
|
2288
|
+
var _cachedSupport;
|
|
2294
2289
|
var init_cc_agent_support = __esm({
|
|
2295
2290
|
"src/lib/cc-agent-support.ts"() {
|
|
2296
2291
|
"use strict";
|
|
2292
|
+
_cachedSupport = null;
|
|
2297
2293
|
}
|
|
2298
2294
|
});
|
|
2299
2295
|
|
|
2300
2296
|
// src/lib/mcp-prefix.ts
|
|
2297
|
+
function expandDualPrefixTools(shortNames) {
|
|
2298
|
+
const out = [];
|
|
2299
|
+
for (const name of shortNames) {
|
|
2300
|
+
for (const prefix of MCP_TOOL_PREFIXES) {
|
|
2301
|
+
out.push(prefix + name);
|
|
2302
|
+
}
|
|
2303
|
+
}
|
|
2304
|
+
return out;
|
|
2305
|
+
}
|
|
2301
2306
|
var MCP_PRIMARY_KEY, MCP_LEGACY_KEY, MCP_TOOL_PREFIXES;
|
|
2302
2307
|
var init_mcp_prefix = __esm({
|
|
2303
2308
|
"src/lib/mcp-prefix.ts"() {
|
|
@@ -2312,19 +2317,36 @@ var init_mcp_prefix = __esm({
|
|
|
2312
2317
|
});
|
|
2313
2318
|
|
|
2314
2319
|
// src/lib/provider-table.ts
|
|
2320
|
+
function detectActiveProvider(env = process.env) {
|
|
2321
|
+
const baseUrl = env.ANTHROPIC_BASE_URL;
|
|
2322
|
+
if (!baseUrl) return DEFAULT_PROVIDER;
|
|
2323
|
+
for (const [name, cfg] of Object.entries(PROVIDER_TABLE)) {
|
|
2324
|
+
if (cfg.baseUrl === baseUrl) return name;
|
|
2325
|
+
}
|
|
2326
|
+
return DEFAULT_PROVIDER;
|
|
2327
|
+
}
|
|
2328
|
+
var PROVIDER_TABLE, DEFAULT_PROVIDER;
|
|
2315
2329
|
var init_provider_table = __esm({
|
|
2316
2330
|
"src/lib/provider-table.ts"() {
|
|
2317
2331
|
"use strict";
|
|
2332
|
+
PROVIDER_TABLE = {
|
|
2333
|
+
opencode: {
|
|
2334
|
+
baseUrl: "https://opencode.ai/zen/go",
|
|
2335
|
+
apiKeyEnv: "OPENCODE_API_KEY",
|
|
2336
|
+
defaultModel: "minimax-m2.7"
|
|
2337
|
+
}
|
|
2338
|
+
};
|
|
2339
|
+
DEFAULT_PROVIDER = "default";
|
|
2318
2340
|
}
|
|
2319
2341
|
});
|
|
2320
2342
|
|
|
2321
2343
|
// src/lib/intercom-queue.ts
|
|
2322
|
-
import { readFileSync as readFileSync6, writeFileSync, renameSync as renameSync2, existsSync as existsSync8, mkdirSync as
|
|
2323
|
-
import
|
|
2344
|
+
import { readFileSync as readFileSync6, writeFileSync as writeFileSync2, renameSync as renameSync2, existsSync as existsSync8, mkdirSync as mkdirSync3 } from "fs";
|
|
2345
|
+
import path9 from "path";
|
|
2324
2346
|
import os5 from "os";
|
|
2325
2347
|
function ensureDir() {
|
|
2326
|
-
const dir =
|
|
2327
|
-
if (!existsSync8(dir))
|
|
2348
|
+
const dir = path9.dirname(QUEUE_PATH);
|
|
2349
|
+
if (!existsSync8(dir)) mkdirSync3(dir, { recursive: true });
|
|
2328
2350
|
}
|
|
2329
2351
|
function readQueue() {
|
|
2330
2352
|
try {
|
|
@@ -2337,7 +2359,7 @@ function readQueue() {
|
|
|
2337
2359
|
function writeQueue(queue) {
|
|
2338
2360
|
ensureDir();
|
|
2339
2361
|
const tmp = `${QUEUE_PATH}.tmp`;
|
|
2340
|
-
|
|
2362
|
+
writeFileSync2(tmp, JSON.stringify(queue, null, 2));
|
|
2341
2363
|
renameSync2(tmp, QUEUE_PATH);
|
|
2342
2364
|
}
|
|
2343
2365
|
function queueIntercom(targetSession, reason) {
|
|
@@ -2361,32 +2383,96 @@ var QUEUE_PATH, TTL_MS, INTERCOM_LOG;
|
|
|
2361
2383
|
var init_intercom_queue = __esm({
|
|
2362
2384
|
"src/lib/intercom-queue.ts"() {
|
|
2363
2385
|
"use strict";
|
|
2364
|
-
QUEUE_PATH =
|
|
2386
|
+
QUEUE_PATH = path9.join(os5.homedir(), ".exe-os", "intercom-queue.json");
|
|
2365
2387
|
TTL_MS = 60 * 60 * 1e3;
|
|
2366
|
-
INTERCOM_LOG =
|
|
2388
|
+
INTERCOM_LOG = path9.join(os5.homedir(), ".exe-os", "intercom.log");
|
|
2367
2389
|
}
|
|
2368
2390
|
});
|
|
2369
2391
|
|
|
2370
2392
|
// src/lib/license.ts
|
|
2371
|
-
import { readFileSync as readFileSync7, writeFileSync as
|
|
2372
|
-
import { randomUUID as
|
|
2373
|
-
import
|
|
2393
|
+
import { readFileSync as readFileSync7, writeFileSync as writeFileSync3, existsSync as existsSync9, mkdirSync as mkdirSync4 } from "fs";
|
|
2394
|
+
import { randomUUID as randomUUID3 } from "crypto";
|
|
2395
|
+
import path10 from "path";
|
|
2374
2396
|
import { jwtVerify, importSPKI } from "jose";
|
|
2375
|
-
var LICENSE_PATH, CACHE_PATH, DEVICE_ID_PATH;
|
|
2397
|
+
var LICENSE_PATH, CACHE_PATH, DEVICE_ID_PATH, PLAN_LIMITS;
|
|
2376
2398
|
var init_license = __esm({
|
|
2377
2399
|
"src/lib/license.ts"() {
|
|
2378
2400
|
"use strict";
|
|
2379
2401
|
init_config();
|
|
2380
|
-
LICENSE_PATH =
|
|
2381
|
-
CACHE_PATH =
|
|
2382
|
-
DEVICE_ID_PATH =
|
|
2402
|
+
LICENSE_PATH = path10.join(EXE_AI_DIR, "license.key");
|
|
2403
|
+
CACHE_PATH = path10.join(EXE_AI_DIR, "license-cache.json");
|
|
2404
|
+
DEVICE_ID_PATH = path10.join(EXE_AI_DIR, "device-id");
|
|
2405
|
+
PLAN_LIMITS = {
|
|
2406
|
+
free: { devices: 1, employees: 1, memories: 5e3 },
|
|
2407
|
+
pro: { devices: 2, employees: 5, memories: 1e5 },
|
|
2408
|
+
team: { devices: 10, employees: 20, memories: 1e6 },
|
|
2409
|
+
agency: { devices: 50, employees: 100, memories: 1e7 },
|
|
2410
|
+
enterprise: { devices: -1, employees: -1, memories: -1 }
|
|
2411
|
+
};
|
|
2383
2412
|
}
|
|
2384
2413
|
});
|
|
2385
2414
|
|
|
2386
2415
|
// src/lib/plan-limits.ts
|
|
2387
2416
|
import { readFileSync as readFileSync8, existsSync as existsSync10 } from "fs";
|
|
2388
|
-
import
|
|
2389
|
-
|
|
2417
|
+
import path11 from "path";
|
|
2418
|
+
function getLicenseSync() {
|
|
2419
|
+
try {
|
|
2420
|
+
if (!existsSync10(CACHE_PATH2)) return freeLicense();
|
|
2421
|
+
const raw = JSON.parse(readFileSync8(CACHE_PATH2, "utf8"));
|
|
2422
|
+
if (!raw.token || typeof raw.token !== "string") return freeLicense();
|
|
2423
|
+
const parts = raw.token.split(".");
|
|
2424
|
+
if (parts.length !== 3) return freeLicense();
|
|
2425
|
+
const payload = JSON.parse(Buffer.from(parts[1], "base64url").toString());
|
|
2426
|
+
const plan = payload.plan ?? "free";
|
|
2427
|
+
const limits = PLAN_LIMITS[plan] ?? PLAN_LIMITS.free;
|
|
2428
|
+
return {
|
|
2429
|
+
valid: true,
|
|
2430
|
+
plan,
|
|
2431
|
+
email: payload.sub ?? "",
|
|
2432
|
+
expiresAt: payload.exp ? new Date(payload.exp * 1e3).toISOString() : null,
|
|
2433
|
+
deviceLimit: limits.devices,
|
|
2434
|
+
employeeLimit: limits.employees,
|
|
2435
|
+
memoryLimit: limits.memories
|
|
2436
|
+
};
|
|
2437
|
+
} catch {
|
|
2438
|
+
return freeLicense();
|
|
2439
|
+
}
|
|
2440
|
+
}
|
|
2441
|
+
function freeLicense() {
|
|
2442
|
+
const limits = PLAN_LIMITS.free;
|
|
2443
|
+
return {
|
|
2444
|
+
valid: true,
|
|
2445
|
+
plan: "free",
|
|
2446
|
+
email: "",
|
|
2447
|
+
expiresAt: null,
|
|
2448
|
+
deviceLimit: limits.devices,
|
|
2449
|
+
employeeLimit: limits.employees,
|
|
2450
|
+
memoryLimit: limits.memories
|
|
2451
|
+
};
|
|
2452
|
+
}
|
|
2453
|
+
function assertEmployeeLimitSync(rosterPath) {
|
|
2454
|
+
const license = getLicenseSync();
|
|
2455
|
+
if (license.employeeLimit < 0) return;
|
|
2456
|
+
const filePath = rosterPath ?? EMPLOYEES_PATH;
|
|
2457
|
+
let count = 0;
|
|
2458
|
+
try {
|
|
2459
|
+
if (existsSync10(filePath)) {
|
|
2460
|
+
const raw = readFileSync8(filePath, "utf8");
|
|
2461
|
+
const employees = JSON.parse(raw);
|
|
2462
|
+
count = Array.isArray(employees) ? employees.length : 0;
|
|
2463
|
+
}
|
|
2464
|
+
} catch {
|
|
2465
|
+
throw new PlanLimitError(
|
|
2466
|
+
`Cannot verify employee count: roster unreadable at ${filePath}. Refusing to proceed. Check file permissions or upgrade plan.`
|
|
2467
|
+
);
|
|
2468
|
+
}
|
|
2469
|
+
if (count >= license.employeeLimit) {
|
|
2470
|
+
throw new PlanLimitError(
|
|
2471
|
+
`Employee limit reached: ${count}/${license.employeeLimit} employees on the ${license.plan} plan. Upgrade at https://askexe.com to add more.`
|
|
2472
|
+
);
|
|
2473
|
+
}
|
|
2474
|
+
}
|
|
2475
|
+
var PlanLimitError, CACHE_PATH2;
|
|
2390
2476
|
var init_plan_limits = __esm({
|
|
2391
2477
|
"src/lib/plan-limits.ts"() {
|
|
2392
2478
|
"use strict";
|
|
@@ -2394,149 +2480,2099 @@ var init_plan_limits = __esm({
|
|
|
2394
2480
|
init_employees();
|
|
2395
2481
|
init_license();
|
|
2396
2482
|
init_config();
|
|
2397
|
-
|
|
2483
|
+
PlanLimitError = class extends Error {
|
|
2484
|
+
constructor(message) {
|
|
2485
|
+
super(message);
|
|
2486
|
+
this.name = "PlanLimitError";
|
|
2487
|
+
}
|
|
2488
|
+
};
|
|
2489
|
+
CACHE_PATH2 = path11.join(EXE_AI_DIR, "license-cache.json");
|
|
2490
|
+
}
|
|
2491
|
+
});
|
|
2492
|
+
|
|
2493
|
+
// src/lib/session-kill-telemetry.ts
|
|
2494
|
+
import crypto3 from "crypto";
|
|
2495
|
+
async function recordSessionKill(input) {
|
|
2496
|
+
try {
|
|
2497
|
+
const client = getClient();
|
|
2498
|
+
await client.execute({
|
|
2499
|
+
sql: `INSERT INTO session_kills
|
|
2500
|
+
(id, session_name, agent_id, killed_at, reason,
|
|
2501
|
+
ticks_idle, estimated_tokens_saved)
|
|
2502
|
+
VALUES (?, ?, ?, ?, ?, ?, ?)`,
|
|
2503
|
+
args: [
|
|
2504
|
+
crypto3.randomUUID(),
|
|
2505
|
+
input.sessionName,
|
|
2506
|
+
input.agentId,
|
|
2507
|
+
(/* @__PURE__ */ new Date()).toISOString(),
|
|
2508
|
+
input.reason,
|
|
2509
|
+
input.ticksIdle ?? null,
|
|
2510
|
+
input.estimatedTokensSaved ?? null
|
|
2511
|
+
]
|
|
2512
|
+
});
|
|
2513
|
+
} catch (err) {
|
|
2514
|
+
process.stderr.write(
|
|
2515
|
+
`[session-kill-telemetry] write failed: ${err instanceof Error ? err.message : String(err)}
|
|
2516
|
+
`
|
|
2517
|
+
);
|
|
2518
|
+
}
|
|
2519
|
+
}
|
|
2520
|
+
var init_session_kill_telemetry = __esm({
|
|
2521
|
+
"src/lib/session-kill-telemetry.ts"() {
|
|
2522
|
+
"use strict";
|
|
2523
|
+
init_database();
|
|
2524
|
+
}
|
|
2525
|
+
});
|
|
2526
|
+
|
|
2527
|
+
// src/lib/tasks-chain.ts
|
|
2528
|
+
import path12 from "path";
|
|
2529
|
+
import { readFile as readFile4, writeFile as writeFile4 } from "fs/promises";
|
|
2530
|
+
async function cascadeUnblock(taskId, baseDir, now) {
|
|
2531
|
+
const client = getClient();
|
|
2532
|
+
const unblocked = await client.execute({
|
|
2533
|
+
sql: `UPDATE tasks SET status = 'open', blocked_by = NULL, updated_at = ?
|
|
2534
|
+
WHERE blocked_by = ? AND status = 'blocked'`,
|
|
2535
|
+
args: [now, taskId]
|
|
2536
|
+
});
|
|
2537
|
+
if (baseDir && unblocked.rowsAffected > 0) {
|
|
2538
|
+
const unblockedRows = await client.execute({
|
|
2539
|
+
sql: `SELECT task_file FROM tasks WHERE blocked_by IS NULL AND updated_at = ?`,
|
|
2540
|
+
args: [now]
|
|
2541
|
+
});
|
|
2542
|
+
for (const ur of unblockedRows.rows) {
|
|
2543
|
+
try {
|
|
2544
|
+
const ubFile = path12.join(baseDir, String(ur.task_file));
|
|
2545
|
+
let ubContent = await readFile4(ubFile, "utf-8");
|
|
2546
|
+
ubContent = ubContent.replace(/\*\*Status:\*\* blocked/, "**Status:** open");
|
|
2547
|
+
ubContent = ubContent.replace(/\n\*\*Blocked by:\*\*.*\n/, "\n");
|
|
2548
|
+
await writeFile4(ubFile, ubContent, "utf-8");
|
|
2549
|
+
} catch {
|
|
2550
|
+
}
|
|
2551
|
+
}
|
|
2552
|
+
}
|
|
2553
|
+
}
|
|
2554
|
+
async function findNextTask(assignedTo) {
|
|
2555
|
+
const client = getClient();
|
|
2556
|
+
const nextResult = await client.execute({
|
|
2557
|
+
sql: `SELECT title, task_file, priority FROM tasks
|
|
2558
|
+
WHERE assigned_to = ? AND status = 'open'
|
|
2559
|
+
ORDER BY priority ASC, created_at ASC
|
|
2560
|
+
LIMIT 1`,
|
|
2561
|
+
args: [assignedTo]
|
|
2562
|
+
});
|
|
2563
|
+
if (nextResult.rows.length === 1) {
|
|
2564
|
+
const nr = nextResult.rows[0];
|
|
2565
|
+
return {
|
|
2566
|
+
title: String(nr.title),
|
|
2567
|
+
priority: String(nr.priority),
|
|
2568
|
+
taskFile: String(nr.task_file)
|
|
2569
|
+
};
|
|
2570
|
+
}
|
|
2571
|
+
return void 0;
|
|
2572
|
+
}
|
|
2573
|
+
async function checkSubtaskCompletion(parentTaskId, projectName) {
|
|
2574
|
+
const client = getClient();
|
|
2575
|
+
const remaining = await client.execute({
|
|
2576
|
+
sql: `SELECT COUNT(*) as cnt FROM tasks
|
|
2577
|
+
WHERE parent_task_id = ? AND status NOT IN ('done', 'cancelled')`,
|
|
2578
|
+
args: [parentTaskId]
|
|
2579
|
+
});
|
|
2580
|
+
const cnt = Number(remaining.rows[0]?.cnt ?? 1);
|
|
2581
|
+
if (cnt === 0) {
|
|
2582
|
+
const parentRow = await client.execute({
|
|
2583
|
+
sql: `SELECT assigned_to, title, task_file, project_name FROM tasks WHERE id = ?`,
|
|
2584
|
+
args: [parentTaskId]
|
|
2585
|
+
});
|
|
2586
|
+
if (parentRow.rows.length === 1) {
|
|
2587
|
+
const pr = parentRow.rows[0];
|
|
2588
|
+
const parentProject = pr.project_name == null ? projectName : String(pr.project_name);
|
|
2589
|
+
await writeNotification({
|
|
2590
|
+
agentId: String(pr.assigned_to),
|
|
2591
|
+
agentRole: "system",
|
|
2592
|
+
event: "subtasks_complete",
|
|
2593
|
+
project: parentProject,
|
|
2594
|
+
summary: `All subtasks complete for "${String(pr.title)}" \u2014 ready for rollup review`,
|
|
2595
|
+
taskFile: String(pr.task_file)
|
|
2596
|
+
});
|
|
2597
|
+
}
|
|
2598
|
+
}
|
|
2599
|
+
}
|
|
2600
|
+
var init_tasks_chain = __esm({
|
|
2601
|
+
"src/lib/tasks-chain.ts"() {
|
|
2602
|
+
"use strict";
|
|
2603
|
+
init_database();
|
|
2604
|
+
init_notifications();
|
|
2605
|
+
}
|
|
2606
|
+
});
|
|
2607
|
+
|
|
2608
|
+
// src/lib/session-scope.ts
|
|
2609
|
+
var session_scope_exports = {};
|
|
2610
|
+
__export(session_scope_exports, {
|
|
2611
|
+
assertSessionScope: () => assertSessionScope,
|
|
2612
|
+
findSessionForProject: () => findSessionForProject,
|
|
2613
|
+
getSessionProject: () => getSessionProject
|
|
2614
|
+
});
|
|
2615
|
+
function getSessionProject(sessionName) {
|
|
2616
|
+
const sessions = listSessions();
|
|
2617
|
+
const entry = sessions.find((s) => s.windowName === sessionName);
|
|
2618
|
+
if (!entry) return null;
|
|
2619
|
+
const parts = entry.projectDir.split("/").filter(Boolean);
|
|
2620
|
+
return parts[parts.length - 1] ?? null;
|
|
2621
|
+
}
|
|
2622
|
+
function findSessionForProject(projectName) {
|
|
2623
|
+
const sessions = listSessions();
|
|
2624
|
+
for (const s of sessions) {
|
|
2625
|
+
const proj = s.projectDir.split("/").filter(Boolean).pop();
|
|
2626
|
+
if (proj === projectName && s.agentId === "exe") return s;
|
|
2627
|
+
}
|
|
2628
|
+
return null;
|
|
2629
|
+
}
|
|
2630
|
+
function assertSessionScope(actionType, targetProject) {
|
|
2631
|
+
try {
|
|
2632
|
+
const currentProject = getProjectName();
|
|
2633
|
+
const exeSession2 = resolveExeSession();
|
|
2634
|
+
if (!exeSession2) {
|
|
2635
|
+
return { allowed: true, reason: "no_session" };
|
|
2636
|
+
}
|
|
2637
|
+
if (currentProject === targetProject) {
|
|
2638
|
+
return {
|
|
2639
|
+
allowed: true,
|
|
2640
|
+
reason: "same_session",
|
|
2641
|
+
currentProject,
|
|
2642
|
+
targetProject
|
|
2643
|
+
};
|
|
2644
|
+
}
|
|
2645
|
+
process.stderr.write(
|
|
2646
|
+
`[session-scope] BLOCKED cross-project ${actionType}: session project="${currentProject}" \u2260 target project="${targetProject}"
|
|
2647
|
+
`
|
|
2648
|
+
);
|
|
2649
|
+
return {
|
|
2650
|
+
allowed: false,
|
|
2651
|
+
reason: "cross_session_denied",
|
|
2652
|
+
currentProject,
|
|
2653
|
+
targetProject,
|
|
2654
|
+
targetSession: findSessionForProject(targetProject)?.windowName
|
|
2655
|
+
};
|
|
2656
|
+
} catch {
|
|
2657
|
+
return { allowed: true, reason: "no_session" };
|
|
2658
|
+
}
|
|
2659
|
+
}
|
|
2660
|
+
var init_session_scope = __esm({
|
|
2661
|
+
"src/lib/session-scope.ts"() {
|
|
2662
|
+
"use strict";
|
|
2663
|
+
init_session_registry();
|
|
2664
|
+
init_project_name();
|
|
2665
|
+
init_tmux_routing();
|
|
2666
|
+
}
|
|
2667
|
+
});
|
|
2668
|
+
|
|
2669
|
+
// src/lib/tasks-notify.ts
|
|
2670
|
+
async function dispatchTaskToEmployee(input) {
|
|
2671
|
+
if (input.assignedTo === "exe") return { dispatched: "skipped" };
|
|
2672
|
+
let crossProject = false;
|
|
2673
|
+
if (input.projectName) {
|
|
2674
|
+
try {
|
|
2675
|
+
const { assertSessionScope: assertSessionScope2 } = (init_session_scope(), __toCommonJS(session_scope_exports));
|
|
2676
|
+
const check = assertSessionScope2("dispatch_task", input.projectName);
|
|
2677
|
+
if (check.reason === "cross_session_denied") {
|
|
2678
|
+
crossProject = true;
|
|
2679
|
+
return { dispatched: "skipped", crossProject: true };
|
|
2680
|
+
}
|
|
2681
|
+
} catch {
|
|
2682
|
+
}
|
|
2683
|
+
}
|
|
2684
|
+
try {
|
|
2685
|
+
const transport = getTransport();
|
|
2686
|
+
const exeSession2 = resolveExeSession();
|
|
2687
|
+
if (!exeSession2) return { dispatched: "session_missing" };
|
|
2688
|
+
const sessionName = employeeSessionName(input.assignedTo, exeSession2);
|
|
2689
|
+
if (transport.isAlive(sessionName)) {
|
|
2690
|
+
const result = sendIntercom(sessionName);
|
|
2691
|
+
const dispatched = result === "acknowledged" || result === "debounced" || result === "queued" ? "verified" : result === "delivered" ? "sent_unverified" : "session_dead";
|
|
2692
|
+
return { dispatched, session: sessionName, crossProject };
|
|
2693
|
+
} else {
|
|
2694
|
+
const projectDir = input.projectDir ?? process.cwd();
|
|
2695
|
+
const result = ensureEmployee(input.assignedTo, exeSession2, projectDir, {
|
|
2696
|
+
autoInstance: isMultiInstance(input.assignedTo)
|
|
2697
|
+
});
|
|
2698
|
+
if (result.status === "failed") {
|
|
2699
|
+
process.stderr.write(
|
|
2700
|
+
`[dispatch] Failed to spawn ${input.assignedTo}: ${result.error}
|
|
2701
|
+
`
|
|
2702
|
+
);
|
|
2703
|
+
return { dispatched: "session_missing" };
|
|
2704
|
+
}
|
|
2705
|
+
return { dispatched: "spawned", session: result.sessionName, crossProject };
|
|
2706
|
+
}
|
|
2707
|
+
} catch {
|
|
2708
|
+
return { dispatched: "session_missing" };
|
|
2709
|
+
}
|
|
2710
|
+
}
|
|
2711
|
+
function notifyTaskDone() {
|
|
2712
|
+
try {
|
|
2713
|
+
const key = getSessionKey();
|
|
2714
|
+
if (key && !process.env.VITEST) notifyParentExe(key);
|
|
2715
|
+
} catch {
|
|
2716
|
+
}
|
|
2717
|
+
}
|
|
2718
|
+
async function markTaskNotificationsRead(taskFile) {
|
|
2719
|
+
try {
|
|
2720
|
+
await markAsReadByTaskFile(taskFile);
|
|
2721
|
+
} catch {
|
|
2722
|
+
}
|
|
2723
|
+
}
|
|
2724
|
+
var init_tasks_notify = __esm({
|
|
2725
|
+
"src/lib/tasks-notify.ts"() {
|
|
2726
|
+
"use strict";
|
|
2727
|
+
init_tmux_routing();
|
|
2728
|
+
init_session_key();
|
|
2729
|
+
init_notifications();
|
|
2730
|
+
init_transport();
|
|
2731
|
+
init_employees();
|
|
2732
|
+
}
|
|
2733
|
+
});
|
|
2734
|
+
|
|
2735
|
+
// src/lib/behaviors.ts
|
|
2736
|
+
import crypto4 from "crypto";
|
|
2737
|
+
async function storeBehavior(opts) {
|
|
2738
|
+
const client = getClient();
|
|
2739
|
+
const id = crypto4.randomUUID();
|
|
2740
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
2741
|
+
await client.execute({
|
|
2742
|
+
sql: `INSERT INTO behaviors (id, agent_id, project_name, domain, priority, content, active, created_at, updated_at)
|
|
2743
|
+
VALUES (?, ?, ?, ?, ?, ?, 1, ?, ?)`,
|
|
2744
|
+
args: [id, opts.agentId, opts.projectName ?? null, opts.domain ?? null, opts.priority ?? "p1", opts.content, now, now]
|
|
2745
|
+
});
|
|
2746
|
+
return id;
|
|
2747
|
+
}
|
|
2748
|
+
var init_behaviors = __esm({
|
|
2749
|
+
"src/lib/behaviors.ts"() {
|
|
2750
|
+
"use strict";
|
|
2751
|
+
init_database();
|
|
2752
|
+
}
|
|
2753
|
+
});
|
|
2754
|
+
|
|
2755
|
+
// src/lib/skill-learning.ts
|
|
2756
|
+
var skill_learning_exports = {};
|
|
2757
|
+
__export(skill_learning_exports, {
|
|
2758
|
+
captureAndLearn: () => captureAndLearn,
|
|
2759
|
+
captureTrajectory: () => captureTrajectory,
|
|
2760
|
+
editDistance: () => editDistance,
|
|
2761
|
+
extractSkill: () => extractSkill,
|
|
2762
|
+
extractTrajectory: () => extractTrajectory,
|
|
2763
|
+
findSimilarTrajectories: () => findSimilarTrajectories,
|
|
2764
|
+
hashSignature: () => hashSignature,
|
|
2765
|
+
storeTrajectory: () => storeTrajectory,
|
|
2766
|
+
sweepTrajectories: () => sweepTrajectories
|
|
2767
|
+
});
|
|
2768
|
+
import crypto5 from "crypto";
|
|
2769
|
+
async function extractTrajectory(taskId, agentId) {
|
|
2770
|
+
const client = getClient();
|
|
2771
|
+
const result = await client.execute({
|
|
2772
|
+
sql: `SELECT tool_name, raw_text
|
|
2773
|
+
FROM memories
|
|
2774
|
+
WHERE task_id = ? AND agent_id = ?
|
|
2775
|
+
ORDER BY timestamp ASC`,
|
|
2776
|
+
args: [taskId, agentId]
|
|
2777
|
+
});
|
|
2778
|
+
if (result.rows.length === 0) return [];
|
|
2779
|
+
const rawTools = result.rows.map((r) => {
|
|
2780
|
+
const toolName = String(r.tool_name);
|
|
2781
|
+
if (toolName === "Bash") {
|
|
2782
|
+
const text = String(r.raw_text);
|
|
2783
|
+
const cmdMatch = text.match(/(?:command|Command).*?[:\s]+"?(\w+)/);
|
|
2784
|
+
return cmdMatch ? `Bash:${cmdMatch[1]}` : "Bash";
|
|
2785
|
+
}
|
|
2786
|
+
return toolName;
|
|
2787
|
+
});
|
|
2788
|
+
const signature = [];
|
|
2789
|
+
for (const tool of rawTools) {
|
|
2790
|
+
if (signature.length === 0 || signature[signature.length - 1] !== tool) {
|
|
2791
|
+
signature.push(tool);
|
|
2792
|
+
}
|
|
2793
|
+
}
|
|
2794
|
+
return signature;
|
|
2795
|
+
}
|
|
2796
|
+
function hashSignature(signature) {
|
|
2797
|
+
return crypto5.createHash("sha256").update(signature.join("|")).digest("hex").slice(0, 16);
|
|
2798
|
+
}
|
|
2799
|
+
async function storeTrajectory(opts) {
|
|
2800
|
+
const client = getClient();
|
|
2801
|
+
const id = crypto5.randomUUID();
|
|
2802
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
2803
|
+
const signatureHash = hashSignature(opts.signature);
|
|
2804
|
+
await client.execute({
|
|
2805
|
+
sql: `INSERT INTO trajectories (id, task_id, agent_id, project_name, task_title, signature, signature_hash, tool_count, created_at)
|
|
2806
|
+
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?)`,
|
|
2807
|
+
args: [
|
|
2808
|
+
id,
|
|
2809
|
+
opts.taskId,
|
|
2810
|
+
opts.agentId,
|
|
2811
|
+
opts.projectName,
|
|
2812
|
+
opts.taskTitle,
|
|
2813
|
+
JSON.stringify(opts.signature),
|
|
2814
|
+
signatureHash,
|
|
2815
|
+
opts.signature.length,
|
|
2816
|
+
now
|
|
2817
|
+
]
|
|
2818
|
+
});
|
|
2819
|
+
return id;
|
|
2820
|
+
}
|
|
2821
|
+
async function findSimilarTrajectories(signature, threshold = DEFAULT_SKILL_THRESHOLD) {
|
|
2822
|
+
const client = getClient();
|
|
2823
|
+
const hash = hashSignature(signature);
|
|
2824
|
+
const result = await client.execute({
|
|
2825
|
+
sql: `SELECT id, task_id, agent_id, project_name, task_title, signature, signature_hash, tool_count, skill_id, created_at
|
|
2826
|
+
FROM trajectories
|
|
2827
|
+
WHERE signature_hash = ?
|
|
2828
|
+
ORDER BY created_at DESC
|
|
2829
|
+
LIMIT 20`,
|
|
2830
|
+
args: [hash]
|
|
2831
|
+
});
|
|
2832
|
+
const mapRow = (r) => ({
|
|
2833
|
+
id: String(r.id),
|
|
2834
|
+
taskId: String(r.task_id),
|
|
2835
|
+
agentId: String(r.agent_id),
|
|
2836
|
+
projectName: String(r.project_name),
|
|
2837
|
+
taskTitle: String(r.task_title),
|
|
2838
|
+
signature: JSON.parse(String(r.signature)),
|
|
2839
|
+
signatureHash: String(r.signature_hash),
|
|
2840
|
+
toolCount: Number(r.tool_count),
|
|
2841
|
+
skillId: r.skill_id ? String(r.skill_id) : null,
|
|
2842
|
+
createdAt: String(r.created_at)
|
|
2843
|
+
});
|
|
2844
|
+
const matches = result.rows.map(mapRow);
|
|
2845
|
+
if (matches.length >= threshold) return matches;
|
|
2846
|
+
const nearResult = await client.execute({
|
|
2847
|
+
sql: `SELECT id, task_id, agent_id, project_name, task_title, signature, signature_hash, tool_count, skill_id, created_at
|
|
2848
|
+
FROM trajectories
|
|
2849
|
+
WHERE tool_count BETWEEN ? AND ?
|
|
2850
|
+
AND signature_hash != ?
|
|
2851
|
+
ORDER BY created_at DESC
|
|
2852
|
+
LIMIT 50`,
|
|
2853
|
+
args: [
|
|
2854
|
+
Math.max(1, signature.length - 3),
|
|
2855
|
+
signature.length + 3,
|
|
2856
|
+
hash
|
|
2857
|
+
]
|
|
2858
|
+
});
|
|
2859
|
+
for (const r of nearResult.rows) {
|
|
2860
|
+
const candidateSig = JSON.parse(String(r.signature));
|
|
2861
|
+
if (editDistance(signature, candidateSig) <= 2) {
|
|
2862
|
+
matches.push(mapRow(r));
|
|
2863
|
+
}
|
|
2864
|
+
}
|
|
2865
|
+
return matches;
|
|
2866
|
+
}
|
|
2867
|
+
async function captureTrajectory(opts) {
|
|
2868
|
+
const signature = await extractTrajectory(opts.taskId, opts.agentId);
|
|
2869
|
+
if (signature.length < 3) {
|
|
2870
|
+
return { trajectoryId: "", similarCount: 0, similar: [] };
|
|
2871
|
+
}
|
|
2872
|
+
const trajectoryId = await storeTrajectory({
|
|
2873
|
+
taskId: opts.taskId,
|
|
2874
|
+
agentId: opts.agentId,
|
|
2875
|
+
projectName: opts.projectName,
|
|
2876
|
+
taskTitle: opts.taskTitle,
|
|
2877
|
+
signature
|
|
2878
|
+
});
|
|
2879
|
+
const similar = await findSimilarTrajectories(
|
|
2880
|
+
signature,
|
|
2881
|
+
opts.skillThreshold ?? DEFAULT_SKILL_THRESHOLD
|
|
2882
|
+
);
|
|
2883
|
+
return { trajectoryId, similarCount: similar.length, similar };
|
|
2884
|
+
}
|
|
2885
|
+
function buildExtractionPrompt(trajectories) {
|
|
2886
|
+
const items = trajectories.map((t, i) => {
|
|
2887
|
+
const sig = t.signature.join(" \u2192 ");
|
|
2888
|
+
return `Task ${i + 1}: "${t.taskTitle}" (${t.agentId}, ${t.projectName}) \u2014 ${t.toolCount} tool calls
|
|
2889
|
+
Signature: ${sig}`;
|
|
2890
|
+
}).join("\n\n");
|
|
2891
|
+
return `You are analyzing ${trajectories.length} completed tasks that followed similar procedures:
|
|
2892
|
+
|
|
2893
|
+
${items}
|
|
2894
|
+
|
|
2895
|
+
Extract the reusable procedure. Format your response EXACTLY like this:
|
|
2896
|
+
|
|
2897
|
+
SKILL: {name \u2014 short, descriptive}
|
|
2898
|
+
TRIGGER: {when to use this \u2014 one sentence}
|
|
2899
|
+
STEPS:
|
|
2900
|
+
1. ...
|
|
2901
|
+
2. ...
|
|
2902
|
+
PITFALLS: {common mistakes to avoid}
|
|
2903
|
+
|
|
2904
|
+
Be specific and actionable. Include tool names, file patterns, and concrete commands where applicable.`;
|
|
2905
|
+
}
|
|
2906
|
+
async function extractSkill(trajectories, model) {
|
|
2907
|
+
if (trajectories.length === 0) return null;
|
|
2908
|
+
const config = await loadConfig();
|
|
2909
|
+
const skillModel = model ?? config.skillModel;
|
|
2910
|
+
const Anthropic = (await import("@anthropic-ai/sdk")).default;
|
|
2911
|
+
const client = new Anthropic();
|
|
2912
|
+
const prompt = buildExtractionPrompt(trajectories);
|
|
2913
|
+
const response = await client.messages.create({
|
|
2914
|
+
model: skillModel,
|
|
2915
|
+
max_tokens: 500,
|
|
2916
|
+
messages: [{ role: "user", content: prompt }]
|
|
2917
|
+
});
|
|
2918
|
+
const textBlock = response.content.find((b) => b.type === "text");
|
|
2919
|
+
const skillText = textBlock?.text;
|
|
2920
|
+
if (!skillText) return null;
|
|
2921
|
+
const agentId = trajectories[0].agentId;
|
|
2922
|
+
const projectName = trajectories[0].projectName;
|
|
2923
|
+
const skillId = await storeBehavior({
|
|
2924
|
+
agentId,
|
|
2925
|
+
content: skillText,
|
|
2926
|
+
domain: "skill",
|
|
2927
|
+
projectName
|
|
2928
|
+
});
|
|
2929
|
+
const dbClient = getClient();
|
|
2930
|
+
for (const t of trajectories) {
|
|
2931
|
+
await dbClient.execute({
|
|
2932
|
+
sql: "UPDATE trajectories SET skill_id = ? WHERE id = ?",
|
|
2933
|
+
args: [skillId, t.id]
|
|
2934
|
+
});
|
|
2935
|
+
}
|
|
2936
|
+
process.stderr.write(
|
|
2937
|
+
`[skill-learning] Skill extracted from ${trajectories.length} trajectories \u2192 behavior ${skillId}
|
|
2938
|
+
`
|
|
2939
|
+
);
|
|
2940
|
+
return skillId;
|
|
2941
|
+
}
|
|
2942
|
+
async function captureAndLearn(opts) {
|
|
2943
|
+
try {
|
|
2944
|
+
const config = await loadConfig();
|
|
2945
|
+
if (!config.skillLearning) return;
|
|
2946
|
+
const { trajectoryId, similarCount, similar } = await captureTrajectory({
|
|
2947
|
+
...opts,
|
|
2948
|
+
skillThreshold: config.skillThreshold
|
|
2949
|
+
});
|
|
2950
|
+
if (!trajectoryId) return;
|
|
2951
|
+
if (similarCount >= config.skillThreshold) {
|
|
2952
|
+
const unprocessed = similar.filter((t) => !t.skillId);
|
|
2953
|
+
if (unprocessed.length >= config.skillThreshold) {
|
|
2954
|
+
extractSkill(unprocessed, config.skillModel).catch((err) => {
|
|
2955
|
+
process.stderr.write(
|
|
2956
|
+
`[skill-learning] Extraction failed: ${err instanceof Error ? err.message : String(err)}
|
|
2957
|
+
`
|
|
2958
|
+
);
|
|
2959
|
+
});
|
|
2960
|
+
}
|
|
2961
|
+
}
|
|
2962
|
+
} catch (err) {
|
|
2963
|
+
process.stderr.write(
|
|
2964
|
+
`[skill-learning] captureAndLearn failed: ${err instanceof Error ? err.message : String(err)}
|
|
2965
|
+
`
|
|
2966
|
+
);
|
|
2967
|
+
}
|
|
2968
|
+
}
|
|
2969
|
+
async function sweepTrajectories(threshold, model) {
|
|
2970
|
+
const config = await loadConfig();
|
|
2971
|
+
if (!config.skillLearning) return { clustersProcessed: 0, skillsExtracted: 0 };
|
|
2972
|
+
const t = threshold ?? config.skillThreshold;
|
|
2973
|
+
const client = getClient();
|
|
2974
|
+
const result = await client.execute({
|
|
2975
|
+
sql: `SELECT signature_hash, COUNT(*) as cnt
|
|
2976
|
+
FROM trajectories
|
|
2977
|
+
WHERE skill_id IS NULL
|
|
2978
|
+
GROUP BY signature_hash
|
|
2979
|
+
HAVING cnt >= ?
|
|
2980
|
+
ORDER BY cnt DESC
|
|
2981
|
+
LIMIT 10`,
|
|
2982
|
+
args: [t]
|
|
2983
|
+
});
|
|
2984
|
+
let clustersProcessed = 0;
|
|
2985
|
+
let skillsExtracted = 0;
|
|
2986
|
+
for (const row of result.rows) {
|
|
2987
|
+
const hash = String(row.signature_hash);
|
|
2988
|
+
const trajResult = await client.execute({
|
|
2989
|
+
sql: `SELECT id, task_id, agent_id, project_name, task_title, signature, signature_hash, tool_count, created_at
|
|
2990
|
+
FROM trajectories
|
|
2991
|
+
WHERE signature_hash = ? AND skill_id IS NULL
|
|
2992
|
+
ORDER BY created_at DESC
|
|
2993
|
+
LIMIT 10`,
|
|
2994
|
+
args: [hash]
|
|
2995
|
+
});
|
|
2996
|
+
const trajectories = trajResult.rows.map((r) => ({
|
|
2997
|
+
id: String(r.id),
|
|
2998
|
+
taskId: String(r.task_id),
|
|
2999
|
+
agentId: String(r.agent_id),
|
|
3000
|
+
projectName: String(r.project_name),
|
|
3001
|
+
taskTitle: String(r.task_title),
|
|
3002
|
+
signature: JSON.parse(String(r.signature)),
|
|
3003
|
+
signatureHash: String(r.signature_hash),
|
|
3004
|
+
toolCount: Number(r.tool_count),
|
|
3005
|
+
skillId: null,
|
|
3006
|
+
createdAt: String(r.created_at)
|
|
3007
|
+
}));
|
|
3008
|
+
if (trajectories.length >= t) {
|
|
3009
|
+
clustersProcessed++;
|
|
3010
|
+
const skillId = await extractSkill(trajectories, model ?? config.skillModel);
|
|
3011
|
+
if (skillId) skillsExtracted++;
|
|
3012
|
+
}
|
|
3013
|
+
}
|
|
3014
|
+
return { clustersProcessed, skillsExtracted };
|
|
3015
|
+
}
|
|
3016
|
+
function editDistance(a, b) {
|
|
3017
|
+
const m = a.length;
|
|
3018
|
+
const n = b.length;
|
|
3019
|
+
const dp = Array.from({ length: m + 1 }, () => Array(n + 1).fill(0));
|
|
3020
|
+
for (let i = 0; i <= m; i++) dp[i][0] = i;
|
|
3021
|
+
for (let j = 0; j <= n; j++) dp[0][j] = j;
|
|
3022
|
+
for (let i = 1; i <= m; i++) {
|
|
3023
|
+
for (let j = 1; j <= n; j++) {
|
|
3024
|
+
const cost = a[i - 1] === b[j - 1] ? 0 : 1;
|
|
3025
|
+
dp[i][j] = Math.min(
|
|
3026
|
+
dp[i - 1][j] + 1,
|
|
3027
|
+
dp[i][j - 1] + 1,
|
|
3028
|
+
dp[i - 1][j - 1] + cost
|
|
3029
|
+
);
|
|
3030
|
+
}
|
|
3031
|
+
}
|
|
3032
|
+
return dp[m][n];
|
|
3033
|
+
}
|
|
3034
|
+
var DEFAULT_SKILL_THRESHOLD;
|
|
3035
|
+
var init_skill_learning = __esm({
|
|
3036
|
+
"src/lib/skill-learning.ts"() {
|
|
3037
|
+
"use strict";
|
|
3038
|
+
init_database();
|
|
3039
|
+
init_behaviors();
|
|
3040
|
+
init_config();
|
|
3041
|
+
DEFAULT_SKILL_THRESHOLD = 3;
|
|
3042
|
+
}
|
|
3043
|
+
});
|
|
3044
|
+
|
|
3045
|
+
// src/lib/tasks.ts
|
|
3046
|
+
var tasks_exports = {};
|
|
3047
|
+
__export(tasks_exports, {
|
|
3048
|
+
cleanupOrphanedReviews: () => cleanupOrphanedReviews,
|
|
3049
|
+
countNewPendingReviewsSince: () => countNewPendingReviewsSince,
|
|
3050
|
+
countPendingReviews: () => countPendingReviews,
|
|
3051
|
+
createTask: () => createTask,
|
|
3052
|
+
createTaskCore: () => createTaskCore,
|
|
3053
|
+
deleteTask: () => deleteTask,
|
|
3054
|
+
deleteTaskCore: () => deleteTaskCore,
|
|
3055
|
+
ensureArchitectureDoc: () => ensureArchitectureDoc,
|
|
3056
|
+
ensureGitignoreExe: () => ensureGitignoreExe,
|
|
3057
|
+
getReviewChecklist: () => getReviewChecklist,
|
|
3058
|
+
listPendingReviews: () => listPendingReviews,
|
|
3059
|
+
listTasks: () => listTasks,
|
|
3060
|
+
resolveTask: () => resolveTask,
|
|
3061
|
+
slugify: () => slugify,
|
|
3062
|
+
updateTask: () => updateTask,
|
|
3063
|
+
updateTaskStatus: () => updateTaskStatus,
|
|
3064
|
+
writeCheckpoint: () => writeCheckpoint
|
|
3065
|
+
});
|
|
3066
|
+
import path13 from "path";
|
|
3067
|
+
import { writeFileSync as writeFileSync4, mkdirSync as mkdirSync5, unlinkSync as unlinkSync3 } from "fs";
|
|
3068
|
+
async function createTask(input) {
|
|
3069
|
+
const result = await createTaskCore(input);
|
|
3070
|
+
if (!input.skipDispatch && result.status !== "blocked" && !process.env.VITEST) {
|
|
3071
|
+
dispatchTaskToEmployee({
|
|
3072
|
+
assignedTo: input.assignedTo,
|
|
3073
|
+
title: input.title,
|
|
3074
|
+
priority: input.priority,
|
|
3075
|
+
taskFile: result.taskFile,
|
|
3076
|
+
initialStatus: result.status,
|
|
3077
|
+
projectName: input.projectName
|
|
3078
|
+
});
|
|
3079
|
+
}
|
|
3080
|
+
return result;
|
|
3081
|
+
}
|
|
3082
|
+
async function updateTask(input) {
|
|
3083
|
+
const { row, taskFile, now, taskId } = await updateTaskStatus(input);
|
|
3084
|
+
try {
|
|
3085
|
+
const agent = String(row.assigned_to);
|
|
3086
|
+
const cacheDir = path13.join(EXE_AI_DIR, "session-cache");
|
|
3087
|
+
const cachePath = path13.join(cacheDir, `current-task-${agent}.json`);
|
|
3088
|
+
if (input.status === "in_progress") {
|
|
3089
|
+
mkdirSync5(cacheDir, { recursive: true });
|
|
3090
|
+
writeFileSync4(cachePath, JSON.stringify({ taskId, title: String(row.title) }));
|
|
3091
|
+
} else if (input.status === "done" || input.status === "blocked" || input.status === "cancelled") {
|
|
3092
|
+
try {
|
|
3093
|
+
unlinkSync3(cachePath);
|
|
3094
|
+
} catch {
|
|
3095
|
+
}
|
|
3096
|
+
}
|
|
3097
|
+
} catch {
|
|
3098
|
+
}
|
|
3099
|
+
if (input.status === "done") {
|
|
3100
|
+
await cleanupReviewFile(row, taskFile, input.baseDir);
|
|
3101
|
+
}
|
|
3102
|
+
if (input.status === "done" || input.status === "cancelled") {
|
|
3103
|
+
try {
|
|
3104
|
+
const client = getClient();
|
|
3105
|
+
const taskTitle = String(row.title);
|
|
3106
|
+
const escaped = taskTitle.replace(/%/g, "\\%").replace(/_/g, "\\_");
|
|
3107
|
+
await client.execute({
|
|
3108
|
+
sql: `UPDATE tasks SET status = 'cancelled', updated_at = ?
|
|
3109
|
+
WHERE title LIKE ? ESCAPE '\\' AND status IN ('open', 'in_progress')`,
|
|
3110
|
+
args: [now, `%left '${escaped}' as in\\_progress%`]
|
|
3111
|
+
});
|
|
3112
|
+
} catch {
|
|
3113
|
+
}
|
|
3114
|
+
try {
|
|
3115
|
+
const client = getClient();
|
|
3116
|
+
const cascaded = await client.execute({
|
|
3117
|
+
sql: `UPDATE tasks SET status = 'done', updated_at = ?
|
|
3118
|
+
WHERE parent_task_id = ? AND status = 'needs_review'`,
|
|
3119
|
+
args: [now, taskId]
|
|
3120
|
+
});
|
|
3121
|
+
if (cascaded.rowsAffected > 0) {
|
|
3122
|
+
process.stderr.write(
|
|
3123
|
+
`[cascade] Closed ${cascaded.rowsAffected} orphaned review task(s) for parent ${taskId}
|
|
3124
|
+
`
|
|
3125
|
+
);
|
|
3126
|
+
}
|
|
3127
|
+
} catch {
|
|
3128
|
+
}
|
|
3129
|
+
}
|
|
3130
|
+
const isTerminal = input.status === "done" || input.status === "needs_review";
|
|
3131
|
+
if (isTerminal) {
|
|
3132
|
+
const isExe = String(row.assigned_to) === "exe";
|
|
3133
|
+
if (!isExe) {
|
|
3134
|
+
notifyTaskDone();
|
|
3135
|
+
}
|
|
3136
|
+
await markTaskNotificationsRead(taskFile);
|
|
3137
|
+
if (input.status === "done") {
|
|
3138
|
+
try {
|
|
3139
|
+
await cascadeUnblock(taskId, input.baseDir, now);
|
|
3140
|
+
} catch {
|
|
3141
|
+
}
|
|
3142
|
+
orgBus.emit({
|
|
3143
|
+
type: "task_completed",
|
|
3144
|
+
taskId,
|
|
3145
|
+
employee: String(row.assigned_to),
|
|
3146
|
+
result: input.result ?? "",
|
|
3147
|
+
timestamp: now
|
|
3148
|
+
});
|
|
3149
|
+
if (row.parent_task_id) {
|
|
3150
|
+
try {
|
|
3151
|
+
await checkSubtaskCompletion(String(row.parent_task_id), String(row.project_name));
|
|
3152
|
+
} catch {
|
|
3153
|
+
}
|
|
3154
|
+
}
|
|
3155
|
+
}
|
|
3156
|
+
}
|
|
3157
|
+
if (input.status === "done" && String(row.assigned_to) !== "exe" && !process.env.VITEST) {
|
|
3158
|
+
Promise.resolve().then(() => (init_skill_learning(), skill_learning_exports)).then(
|
|
3159
|
+
({ captureAndLearn: captureAndLearn2 }) => captureAndLearn2({
|
|
3160
|
+
taskId,
|
|
3161
|
+
agentId: String(row.assigned_to),
|
|
3162
|
+
projectName: String(row.project_name),
|
|
3163
|
+
taskTitle: String(row.title)
|
|
3164
|
+
})
|
|
3165
|
+
).catch((err) => {
|
|
3166
|
+
process.stderr.write(
|
|
3167
|
+
`[updateTask] skill learning failed: ${err instanceof Error ? err.message : String(err)}
|
|
3168
|
+
`
|
|
3169
|
+
);
|
|
3170
|
+
});
|
|
3171
|
+
}
|
|
3172
|
+
let nextTask;
|
|
3173
|
+
if (isTerminal && String(row.assigned_to) !== "exe") {
|
|
3174
|
+
try {
|
|
3175
|
+
nextTask = await findNextTask(String(row.assigned_to));
|
|
3176
|
+
} catch {
|
|
3177
|
+
}
|
|
3178
|
+
}
|
|
3179
|
+
return {
|
|
3180
|
+
id: String(row.id),
|
|
3181
|
+
title: String(row.title),
|
|
3182
|
+
assignedTo: String(row.assigned_to),
|
|
3183
|
+
assignedBy: String(row.assigned_by),
|
|
3184
|
+
projectName: String(row.project_name),
|
|
3185
|
+
priority: String(row.priority),
|
|
3186
|
+
status: input.status,
|
|
3187
|
+
taskFile,
|
|
3188
|
+
createdAt: String(row.created_at),
|
|
3189
|
+
updatedAt: now,
|
|
3190
|
+
budgetTokens: row.budget_tokens !== void 0 && row.budget_tokens !== null ? Number(row.budget_tokens) : null,
|
|
3191
|
+
budgetFallbackModel: row.budget_fallback_model !== void 0 && row.budget_fallback_model !== null ? String(row.budget_fallback_model) : null,
|
|
3192
|
+
tokensUsed: Number(row.tokens_used ?? 0),
|
|
3193
|
+
tokensWarnedAt: row.tokens_warned_at !== void 0 && row.tokens_warned_at !== null ? Number(row.tokens_warned_at) : null,
|
|
3194
|
+
nextTask
|
|
3195
|
+
};
|
|
3196
|
+
}
|
|
3197
|
+
async function deleteTask(taskId, baseDir) {
|
|
3198
|
+
const client = getClient();
|
|
3199
|
+
const { taskFile, assignedTo, assignedBy, taskSlug } = await deleteTaskCore(taskId, baseDir);
|
|
3200
|
+
const reviewer = assignedBy || "exe";
|
|
3201
|
+
const reviewSlug = `review-${assignedTo}-${taskSlug}`;
|
|
3202
|
+
const reviewFile = `exe/${reviewer}/${reviewSlug}.md`;
|
|
3203
|
+
await client.execute({
|
|
3204
|
+
sql: "DELETE FROM tasks WHERE task_file = ? OR task_file = ?",
|
|
3205
|
+
args: [reviewFile, `exe/exe/${reviewSlug}.md`]
|
|
3206
|
+
});
|
|
3207
|
+
await markAsReadByTaskFile(taskFile);
|
|
3208
|
+
await markAsReadByTaskFile(reviewFile);
|
|
3209
|
+
}
|
|
3210
|
+
var init_tasks = __esm({
|
|
3211
|
+
"src/lib/tasks.ts"() {
|
|
3212
|
+
"use strict";
|
|
3213
|
+
init_database();
|
|
3214
|
+
init_config();
|
|
3215
|
+
init_notifications();
|
|
3216
|
+
init_state_bus();
|
|
3217
|
+
init_tasks_crud();
|
|
3218
|
+
init_tasks_review();
|
|
3219
|
+
init_tasks_crud();
|
|
3220
|
+
init_tasks_chain();
|
|
3221
|
+
init_tasks_review();
|
|
3222
|
+
init_tasks_notify();
|
|
3223
|
+
}
|
|
3224
|
+
});
|
|
3225
|
+
|
|
3226
|
+
// src/lib/capacity-monitor.ts
|
|
3227
|
+
var capacity_monitor_exports = {};
|
|
3228
|
+
__export(capacity_monitor_exports, {
|
|
3229
|
+
CTX_FLOOR_PERCENT: () => CTX_FLOOR_PERCENT,
|
|
3230
|
+
_resetLastRelaunchCache: () => _resetLastRelaunchCache,
|
|
3231
|
+
_resetPendingCapacityKills: () => _resetPendingCapacityKills,
|
|
3232
|
+
confirmCapacityKill: () => confirmCapacityKill,
|
|
3233
|
+
createOrRefreshResumeTask: () => createOrRefreshResumeTask,
|
|
3234
|
+
extractContextPercent: () => extractContextPercent,
|
|
3235
|
+
isAtCapacity: () => isAtCapacity,
|
|
3236
|
+
isWithinRelaunchCooldown: () => isWithinRelaunchCooldown,
|
|
3237
|
+
pollCapacityDead: () => pollCapacityDead
|
|
3238
|
+
});
|
|
3239
|
+
function resumeTaskTitle(agentId) {
|
|
3240
|
+
return `${RESUME_TITLE_PREFIX} ${agentId} hit context capacity \u2014 continue open tasks`;
|
|
3241
|
+
}
|
|
3242
|
+
function buildResumeContext(agentId, openTasks) {
|
|
3243
|
+
const taskList = openTasks.map(
|
|
3244
|
+
(r, i) => `${i + 1}. [${String(r.priority).toUpperCase()}] ${String(r.title)} (${String(r.task_file)})`
|
|
3245
|
+
).join("\n");
|
|
3246
|
+
return [
|
|
3247
|
+
"## Context",
|
|
3248
|
+
"",
|
|
3249
|
+
`${agentId} hit context capacity and was auto-relaunched by the capacity monitor.`,
|
|
3250
|
+
"Call recall_my_memory first \u2014 search for 'CONTEXT CHECKPOINT'. Pick up where the previous session stopped.",
|
|
3251
|
+
"",
|
|
3252
|
+
`You have ${openTasks.length} open task(s). Work through them in priority order:`,
|
|
3253
|
+
"",
|
|
3254
|
+
taskList,
|
|
3255
|
+
"",
|
|
3256
|
+
"Read each task file and chain through them. Build and commit after each one."
|
|
3257
|
+
].join("\n");
|
|
3258
|
+
}
|
|
3259
|
+
function filterPaneContent(paneOutput) {
|
|
3260
|
+
return paneOutput.split("\n").filter((line) => {
|
|
3261
|
+
if (CONTENT_LINE_PREFIX.test(line)) return false;
|
|
3262
|
+
for (const marker of CONTENT_LINE_MARKERS) {
|
|
3263
|
+
if (line.includes(marker)) return false;
|
|
3264
|
+
}
|
|
3265
|
+
for (const re of SOURCE_CODE_MARKERS) {
|
|
3266
|
+
if (re.test(line)) return false;
|
|
3267
|
+
}
|
|
3268
|
+
return true;
|
|
3269
|
+
}).join("\n");
|
|
3270
|
+
}
|
|
3271
|
+
function extractContextPercent(paneOutput) {
|
|
3272
|
+
const match = paneOutput.match(CC_CONTEXT_BAR_RE);
|
|
3273
|
+
if (!match) return null;
|
|
3274
|
+
const parsed = Number.parseInt(match[2], 10);
|
|
3275
|
+
return Number.isFinite(parsed) ? parsed : null;
|
|
3276
|
+
}
|
|
3277
|
+
function isAtCapacity(paneOutput) {
|
|
3278
|
+
const filtered = filterPaneContent(paneOutput);
|
|
3279
|
+
return CAPACITY_PATTERNS.some((p) => p.test(filtered));
|
|
3280
|
+
}
|
|
3281
|
+
function confirmCapacityKill(agentId, now = Date.now()) {
|
|
3282
|
+
const pendingSince = _pendingCapacityKill.get(agentId);
|
|
3283
|
+
if (pendingSince === void 0) {
|
|
3284
|
+
_pendingCapacityKill.set(agentId, now);
|
|
3285
|
+
return false;
|
|
3286
|
+
}
|
|
3287
|
+
if (now - pendingSince > CONFIRMATION_WINDOW_MS) {
|
|
3288
|
+
_pendingCapacityKill.set(agentId, now);
|
|
3289
|
+
return false;
|
|
3290
|
+
}
|
|
3291
|
+
_pendingCapacityKill.delete(agentId);
|
|
3292
|
+
return true;
|
|
3293
|
+
}
|
|
3294
|
+
function _resetPendingCapacityKills() {
|
|
3295
|
+
_pendingCapacityKill.clear();
|
|
3296
|
+
}
|
|
3297
|
+
function _resetLastRelaunchCache() {
|
|
3298
|
+
_lastRelaunch.clear();
|
|
3299
|
+
}
|
|
3300
|
+
async function lastResumeCreatedAtMs(agentId) {
|
|
3301
|
+
const client = getClient();
|
|
3302
|
+
const result = await client.execute({
|
|
3303
|
+
sql: `SELECT MAX(created_at) AS last_created_at
|
|
3304
|
+
FROM tasks
|
|
3305
|
+
WHERE assigned_to = ? AND title LIKE ?`,
|
|
3306
|
+
args: [agentId, `${RESUME_TITLE_PREFIX} %`]
|
|
3307
|
+
});
|
|
3308
|
+
const raw = result.rows[0]?.last_created_at;
|
|
3309
|
+
if (raw === null || raw === void 0) return null;
|
|
3310
|
+
const parsed = Date.parse(String(raw));
|
|
3311
|
+
return Number.isNaN(parsed) ? null : parsed;
|
|
3312
|
+
}
|
|
3313
|
+
async function isWithinRelaunchCooldown(agentId, now = Date.now()) {
|
|
3314
|
+
const cached = _lastRelaunch.get(agentId);
|
|
3315
|
+
if (cached !== void 0) return now - cached < RELAUNCH_COOLDOWN_MS;
|
|
3316
|
+
const persisted = await lastResumeCreatedAtMs(agentId);
|
|
3317
|
+
if (persisted === null) return false;
|
|
3318
|
+
if (now - persisted >= RELAUNCH_COOLDOWN_MS) return false;
|
|
3319
|
+
_lastRelaunch.set(agentId, persisted);
|
|
3320
|
+
return true;
|
|
3321
|
+
}
|
|
3322
|
+
async function createOrRefreshResumeTask(agentId, projectDir, openTasks) {
|
|
3323
|
+
const client = getClient();
|
|
3324
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
3325
|
+
const context = buildResumeContext(agentId, openTasks);
|
|
3326
|
+
const existing = await client.execute({
|
|
3327
|
+
sql: `SELECT id FROM tasks
|
|
3328
|
+
WHERE assigned_to = ?
|
|
3329
|
+
AND title LIKE ?
|
|
3330
|
+
AND status IN (${RESUME_ACTIVE_STATUSES.map(() => "?").join(", ")})
|
|
3331
|
+
ORDER BY created_at DESC
|
|
3332
|
+
LIMIT 1`,
|
|
3333
|
+
args: [agentId, RESUME_TITLE_LIKE_PATTERN, ...RESUME_ACTIVE_STATUSES]
|
|
3334
|
+
});
|
|
3335
|
+
if (existing.rows.length > 0) {
|
|
3336
|
+
const taskId = String(existing.rows[0].id);
|
|
3337
|
+
await client.execute({
|
|
3338
|
+
sql: `UPDATE tasks SET context = ?, updated_at = ? WHERE id = ?`,
|
|
3339
|
+
args: [context, now, taskId]
|
|
3340
|
+
});
|
|
3341
|
+
return { created: false, taskId };
|
|
3342
|
+
}
|
|
3343
|
+
const { createTask: createTask2 } = await Promise.resolve().then(() => (init_tasks(), tasks_exports));
|
|
3344
|
+
const task = await createTask2({
|
|
3345
|
+
title: resumeTaskTitle(agentId),
|
|
3346
|
+
assignedTo: agentId,
|
|
3347
|
+
assignedBy: "system",
|
|
3348
|
+
projectName: projectDir.split("/").pop() ?? "unknown",
|
|
3349
|
+
priority: "p0",
|
|
3350
|
+
context,
|
|
3351
|
+
baseDir: projectDir
|
|
3352
|
+
});
|
|
3353
|
+
return { created: true, taskId: task.id };
|
|
3354
|
+
}
|
|
3355
|
+
async function pollCapacityDead() {
|
|
3356
|
+
const transport = getTransport();
|
|
3357
|
+
const relaunched = [];
|
|
3358
|
+
const registered = listSessions().filter(
|
|
3359
|
+
(s) => s.agentId !== "exe"
|
|
3360
|
+
);
|
|
3361
|
+
if (registered.length === 0) return [];
|
|
3362
|
+
let liveSessions;
|
|
3363
|
+
try {
|
|
3364
|
+
liveSessions = transport.listSessions();
|
|
3365
|
+
} catch {
|
|
3366
|
+
return [];
|
|
3367
|
+
}
|
|
3368
|
+
for (const entry of registered) {
|
|
3369
|
+
const { windowName, agentId, projectDir } = entry;
|
|
3370
|
+
if (!liveSessions.includes(windowName)) continue;
|
|
3371
|
+
if (await isWithinRelaunchCooldown(agentId)) continue;
|
|
3372
|
+
let pane;
|
|
3373
|
+
try {
|
|
3374
|
+
pane = transport.capturePane(windowName, 15);
|
|
3375
|
+
} catch {
|
|
3376
|
+
continue;
|
|
3377
|
+
}
|
|
3378
|
+
if (!isAtCapacity(pane)) continue;
|
|
3379
|
+
const ctxPct = extractContextPercent(pane);
|
|
3380
|
+
if (ctxPct !== null && ctxPct < CTX_FLOOR_PERCENT) {
|
|
3381
|
+
process.stderr.write(
|
|
3382
|
+
`[capacity-monitor] ctx-floor: ${agentId} at ${ctxPct}% in ${windowName} \u2014 below ${CTX_FLOOR_PERCENT}%. Skipping capacity kill (likely self-referential content or false positive).
|
|
3383
|
+
`
|
|
3384
|
+
);
|
|
3385
|
+
continue;
|
|
3386
|
+
}
|
|
3387
|
+
if (!confirmCapacityKill(agentId)) {
|
|
3388
|
+
process.stderr.write(
|
|
3389
|
+
`[capacity-monitor] ${agentId} matched capacity pattern once in ${windowName}. Awaiting confirmation on next tick.
|
|
3390
|
+
`
|
|
3391
|
+
);
|
|
3392
|
+
continue;
|
|
3393
|
+
}
|
|
3394
|
+
const verify = await verifyPaneAtCapacity(windowName);
|
|
3395
|
+
if (!verify.atCapacity) {
|
|
3396
|
+
process.stderr.write(
|
|
3397
|
+
`[capacity-monitor] verifyPaneAtCapacity rejected kill for ${agentId} in ${windowName} (reason: ${verify.reason}). Skipping.
|
|
3398
|
+
`
|
|
3399
|
+
);
|
|
3400
|
+
void recordSessionKill({
|
|
3401
|
+
sessionName: windowName,
|
|
3402
|
+
agentId,
|
|
3403
|
+
reason: "capacity_false_positive_blocked"
|
|
3404
|
+
});
|
|
3405
|
+
continue;
|
|
3406
|
+
}
|
|
3407
|
+
process.stderr.write(
|
|
3408
|
+
`[capacity-monitor] Detected ${agentId} at capacity in session ${windowName} (confirmed). Auto-relaunching.
|
|
3409
|
+
`
|
|
3410
|
+
);
|
|
3411
|
+
try {
|
|
3412
|
+
transport.kill(windowName);
|
|
3413
|
+
void recordSessionKill({
|
|
3414
|
+
sessionName: windowName,
|
|
3415
|
+
agentId,
|
|
3416
|
+
reason: "capacity"
|
|
3417
|
+
});
|
|
3418
|
+
const client = getClient();
|
|
3419
|
+
const openTasks = await client.execute({
|
|
3420
|
+
sql: `SELECT id, title, priority, task_file, status
|
|
3421
|
+
FROM tasks
|
|
3422
|
+
WHERE assigned_to = ? AND status IN ('open', 'in_progress')
|
|
3423
|
+
ORDER BY
|
|
3424
|
+
CASE priority WHEN 'p0' THEN 0 WHEN 'p1' THEN 1 WHEN 'p2' THEN 2 ELSE 3 END,
|
|
3425
|
+
created_at ASC
|
|
3426
|
+
LIMIT 10`,
|
|
3427
|
+
args: [agentId]
|
|
3428
|
+
});
|
|
3429
|
+
if (openTasks.rows.length === 0) {
|
|
3430
|
+
process.stderr.write(
|
|
3431
|
+
`[capacity-monitor] ${agentId} has no open tasks \u2014 skipping relaunch.
|
|
3432
|
+
`
|
|
3433
|
+
);
|
|
3434
|
+
continue;
|
|
3435
|
+
}
|
|
3436
|
+
const { created } = await createOrRefreshResumeTask(
|
|
3437
|
+
agentId,
|
|
3438
|
+
projectDir,
|
|
3439
|
+
openTasks.rows
|
|
3440
|
+
);
|
|
3441
|
+
if (created) {
|
|
3442
|
+
await writeNotification({
|
|
3443
|
+
agentId: "system",
|
|
3444
|
+
agentRole: "daemon",
|
|
3445
|
+
event: "capacity_relaunch",
|
|
3446
|
+
project: projectDir.split("/").pop() ?? "unknown",
|
|
3447
|
+
summary: `${agentId} hit context capacity. Auto-relaunched with ${openTasks.rows.length} open task(s).`
|
|
3448
|
+
});
|
|
3449
|
+
}
|
|
3450
|
+
_lastRelaunch.set(agentId, Date.now());
|
|
3451
|
+
if (created) relaunched.push(agentId);
|
|
3452
|
+
} catch (err) {
|
|
3453
|
+
process.stderr.write(
|
|
3454
|
+
`[capacity-monitor] Failed to relaunch ${agentId}: ${err instanceof Error ? err.message : String(err)}
|
|
3455
|
+
`
|
|
3456
|
+
);
|
|
3457
|
+
}
|
|
3458
|
+
}
|
|
3459
|
+
return relaunched;
|
|
3460
|
+
}
|
|
3461
|
+
var CAPACITY_PATTERNS, CONTENT_LINE_PREFIX, CONTENT_LINE_MARKERS, SOURCE_CODE_MARKERS, RELAUNCH_COOLDOWN_MS, _lastRelaunch, RESUME_TITLE_PREFIX, RESUME_TITLE_LIKE_PATTERN, RESUME_ACTIVE_STATUSES, CONFIRMATION_WINDOW_MS, _pendingCapacityKill, CC_CONTEXT_BAR_RE, CTX_FLOOR_PERCENT;
|
|
3462
|
+
var init_capacity_monitor = __esm({
|
|
3463
|
+
"src/lib/capacity-monitor.ts"() {
|
|
3464
|
+
"use strict";
|
|
3465
|
+
init_session_registry();
|
|
3466
|
+
init_transport();
|
|
3467
|
+
init_notifications();
|
|
3468
|
+
init_database();
|
|
3469
|
+
init_session_kill_telemetry();
|
|
3470
|
+
init_tmux_routing();
|
|
3471
|
+
CAPACITY_PATTERNS = [
|
|
3472
|
+
/conversation is too long/i,
|
|
3473
|
+
/maximum context length/i,
|
|
3474
|
+
/context window.*(?:limit|exceed|full)/i,
|
|
3475
|
+
/reached.*(?:token|context).*limit/i
|
|
3476
|
+
];
|
|
3477
|
+
CONTENT_LINE_PREFIX = /^[\s>#\-*[]/;
|
|
3478
|
+
CONTENT_LINE_MARKERS = [
|
|
3479
|
+
"RESUME:",
|
|
3480
|
+
"intercom",
|
|
3481
|
+
"capacity-monitor",
|
|
3482
|
+
"CAPACITY_PATTERNS",
|
|
3483
|
+
"isAtCapacity",
|
|
3484
|
+
"CONTENT_LINE_MARKERS",
|
|
3485
|
+
"pollCapacityDead",
|
|
3486
|
+
"confirmCapacityKill",
|
|
3487
|
+
"session_kills",
|
|
3488
|
+
"capacity-monitor.test"
|
|
3489
|
+
];
|
|
3490
|
+
SOURCE_CODE_MARKERS = [
|
|
3491
|
+
/["'`/].*(?:maximum context length|conversation is too long)/i,
|
|
3492
|
+
/(?:maximum context length|conversation is too long).*["'`/]/i
|
|
3493
|
+
];
|
|
3494
|
+
RELAUNCH_COOLDOWN_MS = 5 * 60 * 1e3;
|
|
3495
|
+
_lastRelaunch = /* @__PURE__ */ new Map();
|
|
3496
|
+
RESUME_TITLE_PREFIX = "RESUME:";
|
|
3497
|
+
RESUME_TITLE_LIKE_PATTERN = `${RESUME_TITLE_PREFIX} % hit context capacity%`;
|
|
3498
|
+
RESUME_ACTIVE_STATUSES = ["open", "in_progress"];
|
|
3499
|
+
CONFIRMATION_WINDOW_MS = 3 * 60 * 1e3;
|
|
3500
|
+
_pendingCapacityKill = /* @__PURE__ */ new Map();
|
|
3501
|
+
CC_CONTEXT_BAR_RE = /([\u2588\u2591\u2592\u2593]{10})\s+(\d+)%/;
|
|
3502
|
+
CTX_FLOOR_PERCENT = 50;
|
|
3503
|
+
}
|
|
3504
|
+
});
|
|
3505
|
+
|
|
3506
|
+
// src/lib/tmux-routing.ts
|
|
3507
|
+
var tmux_routing_exports = {};
|
|
3508
|
+
__export(tmux_routing_exports, {
|
|
3509
|
+
acquireSpawnLock: () => acquireSpawnLock2,
|
|
3510
|
+
employeeSessionName: () => employeeSessionName,
|
|
3511
|
+
ensureEmployee: () => ensureEmployee,
|
|
3512
|
+
extractRootExe: () => extractRootExe,
|
|
3513
|
+
findFreeInstance: () => findFreeInstance,
|
|
3514
|
+
getDispatchedBy: () => getDispatchedBy,
|
|
3515
|
+
getMySession: () => getMySession,
|
|
3516
|
+
getParentExe: () => getParentExe,
|
|
3517
|
+
getSessionState: () => getSessionState,
|
|
3518
|
+
isEmployeeAlive: () => isEmployeeAlive,
|
|
3519
|
+
isExeSession: () => isExeSession,
|
|
3520
|
+
isSessionBusy: () => isSessionBusy,
|
|
3521
|
+
notifyParentExe: () => notifyParentExe,
|
|
3522
|
+
parseParentExe: () => parseParentExe,
|
|
3523
|
+
registerParentExe: () => registerParentExe,
|
|
3524
|
+
releaseSpawnLock: () => releaseSpawnLock2,
|
|
3525
|
+
resolveExeSession: () => resolveExeSession,
|
|
3526
|
+
sendIntercom: () => sendIntercom,
|
|
3527
|
+
spawnEmployee: () => spawnEmployee,
|
|
3528
|
+
verifyPaneAtCapacity: () => verifyPaneAtCapacity
|
|
3529
|
+
});
|
|
3530
|
+
import { execFileSync as execFileSync2, execSync as execSync5 } from "child_process";
|
|
3531
|
+
import { readFileSync as readFileSync9, writeFileSync as writeFileSync5, mkdirSync as mkdirSync6, existsSync as existsSync11, appendFileSync } from "fs";
|
|
3532
|
+
import path14 from "path";
|
|
3533
|
+
import os6 from "os";
|
|
3534
|
+
import { fileURLToPath as fileURLToPath2 } from "url";
|
|
3535
|
+
import { unlinkSync as unlinkSync4 } from "fs";
|
|
3536
|
+
function spawnLockPath(sessionName) {
|
|
3537
|
+
return path14.join(SPAWN_LOCK_DIR, `${sessionName}.lock`);
|
|
3538
|
+
}
|
|
3539
|
+
function isProcessAlive(pid) {
|
|
3540
|
+
try {
|
|
3541
|
+
process.kill(pid, 0);
|
|
3542
|
+
return true;
|
|
3543
|
+
} catch {
|
|
3544
|
+
return false;
|
|
3545
|
+
}
|
|
3546
|
+
}
|
|
3547
|
+
function acquireSpawnLock2(sessionName) {
|
|
3548
|
+
if (!existsSync11(SPAWN_LOCK_DIR)) {
|
|
3549
|
+
mkdirSync6(SPAWN_LOCK_DIR, { recursive: true });
|
|
3550
|
+
}
|
|
3551
|
+
const lockFile = spawnLockPath(sessionName);
|
|
3552
|
+
if (existsSync11(lockFile)) {
|
|
3553
|
+
try {
|
|
3554
|
+
const lock = JSON.parse(readFileSync9(lockFile, "utf8"));
|
|
3555
|
+
const age = Date.now() - lock.timestamp;
|
|
3556
|
+
if (isProcessAlive(lock.pid) && age < 6e4) {
|
|
3557
|
+
return false;
|
|
3558
|
+
}
|
|
3559
|
+
} catch {
|
|
3560
|
+
}
|
|
3561
|
+
}
|
|
3562
|
+
writeFileSync5(lockFile, JSON.stringify({ pid: process.pid, timestamp: Date.now() }));
|
|
3563
|
+
return true;
|
|
3564
|
+
}
|
|
3565
|
+
function releaseSpawnLock2(sessionName) {
|
|
3566
|
+
try {
|
|
3567
|
+
unlinkSync4(spawnLockPath(sessionName));
|
|
3568
|
+
} catch {
|
|
3569
|
+
}
|
|
3570
|
+
}
|
|
3571
|
+
function resolveBehaviorsExporterScript() {
|
|
3572
|
+
try {
|
|
3573
|
+
const thisFile = fileURLToPath2(import.meta.url);
|
|
3574
|
+
const scriptPath = path14.join(
|
|
3575
|
+
path14.dirname(thisFile),
|
|
3576
|
+
"..",
|
|
3577
|
+
"bin",
|
|
3578
|
+
"exe-export-behaviors.js"
|
|
3579
|
+
);
|
|
3580
|
+
return existsSync11(scriptPath) ? scriptPath : null;
|
|
3581
|
+
} catch {
|
|
3582
|
+
return null;
|
|
3583
|
+
}
|
|
3584
|
+
}
|
|
3585
|
+
function exportBehaviorsSync(agentId, projectName, sessionKey) {
|
|
3586
|
+
const script = resolveBehaviorsExporterScript();
|
|
3587
|
+
if (!script) return null;
|
|
3588
|
+
try {
|
|
3589
|
+
const output = execFileSync2(
|
|
3590
|
+
process.execPath,
|
|
3591
|
+
[script, agentId, projectName, sessionKey],
|
|
3592
|
+
{ encoding: "utf-8", timeout: BEHAVIORS_EXPORT_TIMEOUT_MS }
|
|
3593
|
+
).trim();
|
|
3594
|
+
return output.length > 0 ? output : null;
|
|
3595
|
+
} catch (err) {
|
|
3596
|
+
process.stderr.write(
|
|
3597
|
+
`[tmux-routing] behaviors export failed for ${agentId}: ${err instanceof Error ? err.message : String(err)}
|
|
3598
|
+
`
|
|
3599
|
+
);
|
|
3600
|
+
return null;
|
|
3601
|
+
}
|
|
3602
|
+
}
|
|
3603
|
+
function getMySession() {
|
|
3604
|
+
return getTransport().getMySession();
|
|
3605
|
+
}
|
|
3606
|
+
function employeeSessionName(employee, exeSession2, instance) {
|
|
3607
|
+
if (!/^exe\d+$/.test(exeSession2)) {
|
|
3608
|
+
const root = extractRootExe(exeSession2);
|
|
3609
|
+
if (root) {
|
|
3610
|
+
process.stderr.write(
|
|
3611
|
+
`[tmux-routing] WARN: exeSession="${exeSession2}" is not a root exe session, using "${root}" instead
|
|
3612
|
+
`
|
|
3613
|
+
);
|
|
3614
|
+
exeSession2 = root;
|
|
3615
|
+
} else {
|
|
3616
|
+
throw new Error(
|
|
3617
|
+
`Invalid exeSession "${exeSession2}" \u2014 must be a root exe session (e.g., "exe1"), not an agent session`
|
|
3618
|
+
);
|
|
3619
|
+
}
|
|
3620
|
+
}
|
|
3621
|
+
const suffix = instance != null && instance > 0 ? String(instance) : "";
|
|
3622
|
+
const name = `${employee}${suffix}-${exeSession2}`;
|
|
3623
|
+
if (!VALID_SESSION_NAME.test(name)) {
|
|
3624
|
+
throw new Error(
|
|
3625
|
+
`Invalid session name "${name}" \u2014 must match {agent}-exe{N} or {agent}{instance}-exe{N}`
|
|
3626
|
+
);
|
|
3627
|
+
}
|
|
3628
|
+
return name;
|
|
3629
|
+
}
|
|
3630
|
+
function parseParentExe(sessionName, agentId) {
|
|
3631
|
+
const escaped = agentId.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
|
|
3632
|
+
const regex = new RegExp(`^${escaped}\\d*-(.+)$`);
|
|
3633
|
+
const match = sessionName.match(regex);
|
|
3634
|
+
return match?.[1] ?? null;
|
|
3635
|
+
}
|
|
3636
|
+
function extractRootExe(name) {
|
|
3637
|
+
const match = name.match(/(exe\d+)$/);
|
|
3638
|
+
return match?.[1] ?? null;
|
|
3639
|
+
}
|
|
3640
|
+
function registerParentExe(sessionKey, parentExe, dispatchedBy) {
|
|
3641
|
+
if (!existsSync11(SESSION_CACHE)) {
|
|
3642
|
+
mkdirSync6(SESSION_CACHE, { recursive: true });
|
|
3643
|
+
}
|
|
3644
|
+
const rootExe = extractRootExe(parentExe) ?? parentExe;
|
|
3645
|
+
const filePath = path14.join(SESSION_CACHE, `parent-exe-${sessionKey}.json`);
|
|
3646
|
+
writeFileSync5(filePath, JSON.stringify({
|
|
3647
|
+
parentExe: rootExe,
|
|
3648
|
+
dispatchedBy: dispatchedBy || rootExe,
|
|
3649
|
+
registeredAt: (/* @__PURE__ */ new Date()).toISOString()
|
|
3650
|
+
}));
|
|
3651
|
+
}
|
|
3652
|
+
function getParentExe(sessionKey) {
|
|
3653
|
+
try {
|
|
3654
|
+
const data = JSON.parse(readFileSync9(path14.join(SESSION_CACHE, `parent-exe-${sessionKey}.json`), "utf8"));
|
|
3655
|
+
return data.parentExe || null;
|
|
3656
|
+
} catch {
|
|
3657
|
+
return null;
|
|
3658
|
+
}
|
|
3659
|
+
}
|
|
3660
|
+
function getDispatchedBy(sessionKey) {
|
|
3661
|
+
try {
|
|
3662
|
+
const data = JSON.parse(readFileSync9(
|
|
3663
|
+
path14.join(SESSION_CACHE, `parent-exe-${sessionKey}.json`),
|
|
3664
|
+
"utf8"
|
|
3665
|
+
));
|
|
3666
|
+
return data.dispatchedBy ?? data.parentExe ?? null;
|
|
3667
|
+
} catch {
|
|
3668
|
+
return null;
|
|
3669
|
+
}
|
|
3670
|
+
}
|
|
3671
|
+
function resolveExeSession() {
|
|
3672
|
+
const mySession = getMySession();
|
|
3673
|
+
if (!mySession) return null;
|
|
3674
|
+
try {
|
|
3675
|
+
const key = getSessionKey();
|
|
3676
|
+
const parentExe = getParentExe(key);
|
|
3677
|
+
if (parentExe) {
|
|
3678
|
+
return extractRootExe(parentExe) ?? parentExe;
|
|
3679
|
+
}
|
|
3680
|
+
} catch {
|
|
3681
|
+
}
|
|
3682
|
+
return extractRootExe(mySession) ?? mySession;
|
|
3683
|
+
}
|
|
3684
|
+
function isEmployeeAlive(sessionName) {
|
|
3685
|
+
return getTransport().isAlive(sessionName);
|
|
3686
|
+
}
|
|
3687
|
+
function findFreeInstance(employeeName, exeSession2, maxInstances = 10, isAlive = isEmployeeAlive) {
|
|
3688
|
+
const base = employeeSessionName(employeeName, exeSession2);
|
|
3689
|
+
if (!isAlive(base) && acquireSpawnLock2(base)) return 0;
|
|
3690
|
+
for (let i = 2; i <= maxInstances; i++) {
|
|
3691
|
+
const candidate = employeeSessionName(employeeName, exeSession2, i);
|
|
3692
|
+
if (!isAlive(candidate) && acquireSpawnLock2(candidate)) return i;
|
|
3693
|
+
}
|
|
3694
|
+
return null;
|
|
3695
|
+
}
|
|
3696
|
+
async function verifyPaneAtCapacity(sessionName) {
|
|
3697
|
+
const transport = getTransport();
|
|
3698
|
+
if (!transport.isAlive(sessionName)) {
|
|
3699
|
+
return { atCapacity: false, reason: `session ${sessionName} is not alive` };
|
|
3700
|
+
}
|
|
3701
|
+
let pane;
|
|
3702
|
+
try {
|
|
3703
|
+
pane = transport.capturePane(sessionName, VERIFY_PANE_LINES);
|
|
3704
|
+
} catch (err) {
|
|
3705
|
+
return {
|
|
3706
|
+
atCapacity: false,
|
|
3707
|
+
reason: `capture-pane failed: ${err instanceof Error ? err.message : String(err)}`
|
|
3708
|
+
};
|
|
3709
|
+
}
|
|
3710
|
+
const { isAtCapacity: isAtCapacity2 } = await Promise.resolve().then(() => (init_capacity_monitor(), capacity_monitor_exports));
|
|
3711
|
+
if (!isAtCapacity2(pane)) {
|
|
3712
|
+
return {
|
|
3713
|
+
atCapacity: false,
|
|
3714
|
+
reason: `last ${VERIFY_PANE_LINES} lines show normal work, no capacity banner`
|
|
3715
|
+
};
|
|
3716
|
+
}
|
|
3717
|
+
return {
|
|
3718
|
+
atCapacity: true,
|
|
3719
|
+
reason: "capacity banner matched in recent pane output"
|
|
3720
|
+
};
|
|
3721
|
+
}
|
|
3722
|
+
function readDebounceState() {
|
|
3723
|
+
try {
|
|
3724
|
+
if (!existsSync11(DEBOUNCE_FILE)) return {};
|
|
3725
|
+
return JSON.parse(readFileSync9(DEBOUNCE_FILE, "utf8"));
|
|
3726
|
+
} catch {
|
|
3727
|
+
return {};
|
|
3728
|
+
}
|
|
3729
|
+
}
|
|
3730
|
+
function writeDebounceState(state) {
|
|
3731
|
+
try {
|
|
3732
|
+
if (!existsSync11(SESSION_CACHE)) mkdirSync6(SESSION_CACHE, { recursive: true });
|
|
3733
|
+
writeFileSync5(DEBOUNCE_FILE, JSON.stringify(state));
|
|
3734
|
+
} catch {
|
|
3735
|
+
}
|
|
3736
|
+
}
|
|
3737
|
+
function isDebounced(targetSession) {
|
|
3738
|
+
const state = readDebounceState();
|
|
3739
|
+
const lastSent = state[targetSession] ?? 0;
|
|
3740
|
+
return Date.now() - lastSent < INTERCOM_DEBOUNCE_MS;
|
|
3741
|
+
}
|
|
3742
|
+
function recordDebounce(targetSession) {
|
|
3743
|
+
const state = readDebounceState();
|
|
3744
|
+
state[targetSession] = Date.now();
|
|
3745
|
+
const cutoff = Date.now() - DEBOUNCE_CLEANUP_AGE_MS;
|
|
3746
|
+
for (const key of Object.keys(state)) {
|
|
3747
|
+
if ((state[key] ?? 0) < cutoff) delete state[key];
|
|
3748
|
+
}
|
|
3749
|
+
writeDebounceState(state);
|
|
3750
|
+
}
|
|
3751
|
+
function logIntercom(msg) {
|
|
3752
|
+
const line = `[${(/* @__PURE__ */ new Date()).toISOString()}] ${msg}
|
|
3753
|
+
`;
|
|
3754
|
+
process.stderr.write(`[intercom] ${msg}
|
|
3755
|
+
`);
|
|
3756
|
+
try {
|
|
3757
|
+
appendFileSync(INTERCOM_LOG2, line);
|
|
3758
|
+
} catch {
|
|
3759
|
+
}
|
|
3760
|
+
}
|
|
3761
|
+
function getSessionState(sessionName) {
|
|
3762
|
+
const transport = getTransport();
|
|
3763
|
+
if (!transport.isAlive(sessionName)) return "offline";
|
|
3764
|
+
try {
|
|
3765
|
+
const pane = transport.capturePane(sessionName, 5);
|
|
3766
|
+
if (!pane.includes("\u276F") && !pane.includes("Claude Code") && !BUSY_PATTERN.test(pane) && !/Running…/.test(pane)) {
|
|
3767
|
+
if (/\$\s*$/.test(pane) || /% $/.test(pane.trimEnd())) {
|
|
3768
|
+
return "no_claude";
|
|
3769
|
+
}
|
|
3770
|
+
}
|
|
3771
|
+
if (/Running…/.test(pane)) return "tool";
|
|
3772
|
+
if (BUSY_PATTERN.test(pane)) return "thinking";
|
|
3773
|
+
return "idle";
|
|
3774
|
+
} catch {
|
|
3775
|
+
return "offline";
|
|
3776
|
+
}
|
|
3777
|
+
}
|
|
3778
|
+
function isSessionBusy(sessionName) {
|
|
3779
|
+
const state = getSessionState(sessionName);
|
|
3780
|
+
return state === "thinking" || state === "tool";
|
|
3781
|
+
}
|
|
3782
|
+
function isExeSession(sessionName) {
|
|
3783
|
+
return /^exe\d*$/.test(sessionName);
|
|
3784
|
+
}
|
|
3785
|
+
function sendIntercom(targetSession) {
|
|
3786
|
+
const transport = getTransport();
|
|
3787
|
+
if (isExeSession(targetSession)) {
|
|
3788
|
+
logIntercom(`SKIP_EXE \u2192 ${targetSession} (exe sessions use prompt-submit hook)`);
|
|
3789
|
+
return "skipped_exe";
|
|
3790
|
+
}
|
|
3791
|
+
if (isDebounced(targetSession)) {
|
|
3792
|
+
logIntercom(`DEBOUNCE \u2192 ${targetSession} (cross-process file debounce)`);
|
|
3793
|
+
return "debounced";
|
|
3794
|
+
}
|
|
3795
|
+
try {
|
|
3796
|
+
const sessions = transport.listSessions();
|
|
3797
|
+
if (!sessions.includes(targetSession)) {
|
|
3798
|
+
logIntercom(`SKIP \u2192 ${targetSession} (session not found)`);
|
|
3799
|
+
return "failed";
|
|
3800
|
+
}
|
|
3801
|
+
const sessionState = getSessionState(targetSession);
|
|
3802
|
+
if (sessionState === "no_claude") {
|
|
3803
|
+
queueIntercom(targetSession, "claude not running in session");
|
|
3804
|
+
recordDebounce(targetSession);
|
|
3805
|
+
logIntercom(`QUEUED \u2192 ${targetSession} (no claude process \u2014 raw shell detected)`);
|
|
3806
|
+
return "queued";
|
|
3807
|
+
}
|
|
3808
|
+
if (sessionState === "thinking" || sessionState === "tool") {
|
|
3809
|
+
queueIntercom(targetSession, "session busy at send time");
|
|
3810
|
+
recordDebounce(targetSession);
|
|
3811
|
+
logIntercom(`QUEUED \u2192 ${targetSession} (session busy, will retry from queue)`);
|
|
3812
|
+
return "queued";
|
|
3813
|
+
}
|
|
3814
|
+
if (transport.isPaneInCopyMode(targetSession)) {
|
|
3815
|
+
logIntercom(`COPY_MODE \u2192 ${targetSession} (exiting copy mode first)`);
|
|
3816
|
+
transport.sendKeys(targetSession, "q");
|
|
3817
|
+
}
|
|
3818
|
+
transport.sendKeys(targetSession, "/exe-intercom");
|
|
3819
|
+
recordDebounce(targetSession);
|
|
3820
|
+
logIntercom(`DELIVERED \u2192 ${targetSession} (fire-and-forget)`);
|
|
3821
|
+
return "delivered";
|
|
3822
|
+
} catch {
|
|
3823
|
+
logIntercom(`FAIL \u2192 ${targetSession}`);
|
|
3824
|
+
return "failed";
|
|
3825
|
+
}
|
|
3826
|
+
}
|
|
3827
|
+
function notifyParentExe(sessionKey) {
|
|
3828
|
+
const target = getDispatchedBy(sessionKey);
|
|
3829
|
+
if (!target) {
|
|
3830
|
+
process.stderr.write(`[intercom] notifyParentExe: no dispatcher found for key ${sessionKey}
|
|
3831
|
+
`);
|
|
3832
|
+
return false;
|
|
3833
|
+
}
|
|
3834
|
+
process.stderr.write(`[intercom] notifyParentExe \u2192 ${target}
|
|
3835
|
+
`);
|
|
3836
|
+
const result = sendIntercom(target);
|
|
3837
|
+
if (result === "failed") {
|
|
3838
|
+
const rootExe = resolveExeSession();
|
|
3839
|
+
if (rootExe && rootExe !== target) {
|
|
3840
|
+
process.stderr.write(`[intercom] notifyParentExe: dispatcher ${target} dead, falling back to root exe ${rootExe}
|
|
3841
|
+
`);
|
|
3842
|
+
const fallback = sendIntercom(rootExe);
|
|
3843
|
+
return fallback !== "failed";
|
|
3844
|
+
}
|
|
3845
|
+
return false;
|
|
3846
|
+
}
|
|
3847
|
+
return true;
|
|
3848
|
+
}
|
|
3849
|
+
function ensureEmployee(employeeName, exeSession2, projectDir, opts) {
|
|
3850
|
+
if (employeeName === "exe") {
|
|
3851
|
+
return { status: "failed", sessionName: "", error: "exe is the COO, not a dispatchable employee" };
|
|
3852
|
+
}
|
|
3853
|
+
try {
|
|
3854
|
+
assertEmployeeLimitSync();
|
|
3855
|
+
} catch (err) {
|
|
3856
|
+
if (err instanceof PlanLimitError) {
|
|
3857
|
+
return { status: "failed", sessionName: "", error: err.message };
|
|
3858
|
+
}
|
|
3859
|
+
}
|
|
3860
|
+
if (/-exe\d*$/.test(employeeName)) {
|
|
3861
|
+
const bare = employeeName.replace(/-exe\d*$/, "").replace(/\d+$/, "");
|
|
3862
|
+
return {
|
|
3863
|
+
status: "failed",
|
|
3864
|
+
sessionName: "",
|
|
3865
|
+
error: `Error: pass employee name ('${bare}'), not session name ('${employeeName}')`
|
|
3866
|
+
};
|
|
3867
|
+
}
|
|
3868
|
+
if (!/^exe\d+$/.test(exeSession2)) {
|
|
3869
|
+
const root = extractRootExe(exeSession2);
|
|
3870
|
+
if (root) {
|
|
3871
|
+
process.stderr.write(
|
|
3872
|
+
`[ensureEmployee] WARN: caller passed exeSession="${exeSession2}" (not a root exe). Auto-correcting to "${root}".
|
|
3873
|
+
`
|
|
3874
|
+
);
|
|
3875
|
+
exeSession2 = root;
|
|
3876
|
+
} else {
|
|
3877
|
+
return {
|
|
3878
|
+
status: "failed",
|
|
3879
|
+
sessionName: "",
|
|
3880
|
+
error: `Invalid exeSession "${exeSession2}" \u2014 must be a root exe session (e.g., "exe1")`
|
|
3881
|
+
};
|
|
3882
|
+
}
|
|
3883
|
+
}
|
|
3884
|
+
let effectiveInstance = opts?.instance;
|
|
3885
|
+
if (effectiveInstance === void 0 && opts?.autoInstance) {
|
|
3886
|
+
const free = findFreeInstance(
|
|
3887
|
+
employeeName,
|
|
3888
|
+
exeSession2,
|
|
3889
|
+
opts.maxAutoInstances ?? 10
|
|
3890
|
+
);
|
|
3891
|
+
if (free === null) {
|
|
3892
|
+
return {
|
|
3893
|
+
status: "failed",
|
|
3894
|
+
sessionName: employeeSessionName(employeeName, exeSession2),
|
|
3895
|
+
error: `All ${opts.maxAutoInstances ?? 10} instances of ${employeeName} are alive \u2014 cap reached`
|
|
3896
|
+
};
|
|
3897
|
+
}
|
|
3898
|
+
effectiveInstance = free === 0 ? void 0 : free;
|
|
3899
|
+
}
|
|
3900
|
+
const sessionName = employeeSessionName(employeeName, exeSession2, effectiveInstance);
|
|
3901
|
+
if (isEmployeeAlive(sessionName)) {
|
|
3902
|
+
const result2 = sendIntercom(sessionName);
|
|
3903
|
+
if (result2 === "acknowledged" || result2 === "skipped_exe" || result2 === "debounced" || result2 === "queued") {
|
|
3904
|
+
return { status: "intercom_sent", sessionName };
|
|
3905
|
+
}
|
|
3906
|
+
if (result2 === "delivered") {
|
|
3907
|
+
return { status: "intercom_unprocessed", sessionName };
|
|
3908
|
+
}
|
|
3909
|
+
return { status: "failed", sessionName, error: "intercom delivery failed" };
|
|
3910
|
+
}
|
|
3911
|
+
const spawnOpts = { ...opts, instance: effectiveInstance };
|
|
3912
|
+
const result = spawnEmployee(employeeName, exeSession2, projectDir, spawnOpts);
|
|
3913
|
+
if (result.error) {
|
|
3914
|
+
return { status: "failed", sessionName, error: result.error };
|
|
3915
|
+
}
|
|
3916
|
+
return { status: "spawned", sessionName };
|
|
3917
|
+
}
|
|
3918
|
+
function spawnEmployee(employeeName, exeSession2, projectDir, opts) {
|
|
3919
|
+
const transport = getTransport();
|
|
3920
|
+
const sessionName = employeeSessionName(employeeName, exeSession2, opts?.instance);
|
|
3921
|
+
const instanceLabel2 = opts?.instance != null && opts.instance > 0 ? `${employeeName}${opts.instance}` : employeeName;
|
|
3922
|
+
const logDir = path14.join(os6.homedir(), ".exe-os", "session-logs");
|
|
3923
|
+
const logFile = path14.join(logDir, `${instanceLabel2}-${Date.now()}.log`);
|
|
3924
|
+
if (!existsSync11(logDir)) {
|
|
3925
|
+
mkdirSync6(logDir, { recursive: true });
|
|
3926
|
+
}
|
|
3927
|
+
transport.kill(sessionName);
|
|
3928
|
+
let cleanupSuffix = "";
|
|
3929
|
+
try {
|
|
3930
|
+
const thisFile = fileURLToPath2(import.meta.url);
|
|
3931
|
+
const cleanupScript = path14.join(path14.dirname(thisFile), "..", "bin", "exe-session-cleanup.js");
|
|
3932
|
+
if (existsSync11(cleanupScript)) {
|
|
3933
|
+
cleanupSuffix = `; ${process.execPath} "${cleanupScript}" "${employeeName}" "${exeSession2}"`;
|
|
3934
|
+
}
|
|
3935
|
+
} catch {
|
|
3936
|
+
}
|
|
3937
|
+
try {
|
|
3938
|
+
const claudeJsonPath = path14.join(os6.homedir(), ".claude.json");
|
|
3939
|
+
let claudeJson = {};
|
|
3940
|
+
try {
|
|
3941
|
+
claudeJson = JSON.parse(readFileSync9(claudeJsonPath, "utf8"));
|
|
3942
|
+
} catch {
|
|
3943
|
+
}
|
|
3944
|
+
if (!claudeJson.projects) claudeJson.projects = {};
|
|
3945
|
+
const projects = claudeJson.projects;
|
|
3946
|
+
const trustDir = opts?.cwd ?? projectDir;
|
|
3947
|
+
if (!projects[trustDir]) projects[trustDir] = {};
|
|
3948
|
+
projects[trustDir].hasTrustDialogAccepted = true;
|
|
3949
|
+
writeFileSync5(claudeJsonPath, JSON.stringify(claudeJson, null, 2) + "\n");
|
|
3950
|
+
} catch {
|
|
3951
|
+
}
|
|
3952
|
+
try {
|
|
3953
|
+
const settingsDir = path14.join(os6.homedir(), ".claude", "projects");
|
|
3954
|
+
const normalizedKey = (opts?.cwd ?? projectDir).replace(/\//g, "-").replace(/^-/, "");
|
|
3955
|
+
const projSettingsDir = path14.join(settingsDir, normalizedKey);
|
|
3956
|
+
const settingsPath = path14.join(projSettingsDir, "settings.json");
|
|
3957
|
+
let settings = {};
|
|
3958
|
+
try {
|
|
3959
|
+
settings = JSON.parse(readFileSync9(settingsPath, "utf8"));
|
|
3960
|
+
} catch {
|
|
3961
|
+
}
|
|
3962
|
+
const perms = settings.permissions ?? {};
|
|
3963
|
+
const allow = perms.allow ?? [];
|
|
3964
|
+
const toolNames = [
|
|
3965
|
+
"recall_my_memory",
|
|
3966
|
+
"store_memory",
|
|
3967
|
+
"create_task",
|
|
3968
|
+
"update_task",
|
|
3969
|
+
"list_tasks",
|
|
3970
|
+
"get_task",
|
|
3971
|
+
"ask_team_memory",
|
|
3972
|
+
"store_behavior",
|
|
3973
|
+
"get_identity",
|
|
3974
|
+
"send_message"
|
|
3975
|
+
];
|
|
3976
|
+
const requiredTools = expandDualPrefixTools(toolNames);
|
|
3977
|
+
let changed = false;
|
|
3978
|
+
for (const tool of requiredTools) {
|
|
3979
|
+
if (!allow.includes(tool)) {
|
|
3980
|
+
allow.push(tool);
|
|
3981
|
+
changed = true;
|
|
3982
|
+
}
|
|
3983
|
+
}
|
|
3984
|
+
if (changed) {
|
|
3985
|
+
perms.allow = allow;
|
|
3986
|
+
settings.permissions = perms;
|
|
3987
|
+
mkdirSync6(projSettingsDir, { recursive: true });
|
|
3988
|
+
writeFileSync5(settingsPath, JSON.stringify(settings, null, 2) + "\n");
|
|
3989
|
+
}
|
|
3990
|
+
} catch {
|
|
3991
|
+
}
|
|
3992
|
+
const spawnCwd = opts?.cwd ?? projectDir;
|
|
3993
|
+
const useExeAgent = !!(opts?.model && opts?.provider);
|
|
3994
|
+
const ccProvider = useExeAgent ? DEFAULT_PROVIDER : detectActiveProvider();
|
|
3995
|
+
const useBinSymlink = ccProvider !== DEFAULT_PROVIDER;
|
|
3996
|
+
let identityFlag = "";
|
|
3997
|
+
let behaviorsFlag = "";
|
|
3998
|
+
let legacyFallbackWarned = false;
|
|
3999
|
+
if (!useExeAgent && !useBinSymlink) {
|
|
4000
|
+
const identityPath = path14.join(
|
|
4001
|
+
os6.homedir(),
|
|
4002
|
+
".exe-os",
|
|
4003
|
+
"identity",
|
|
4004
|
+
`${employeeName}.md`
|
|
4005
|
+
);
|
|
4006
|
+
_resetCcAgentSupportCache();
|
|
4007
|
+
const hasAgentFlag = claudeSupportsAgentFlag();
|
|
4008
|
+
if (hasAgentFlag) {
|
|
4009
|
+
identityFlag = ` --agent ${employeeName}`;
|
|
4010
|
+
} else if (existsSync11(identityPath)) {
|
|
4011
|
+
identityFlag = ` --append-system-prompt-file ${identityPath}`;
|
|
4012
|
+
legacyFallbackWarned = true;
|
|
4013
|
+
}
|
|
4014
|
+
const behaviorsFile = exportBehaviorsSync(
|
|
4015
|
+
employeeName,
|
|
4016
|
+
path14.basename(spawnCwd),
|
|
4017
|
+
sessionName
|
|
4018
|
+
);
|
|
4019
|
+
if (behaviorsFile) {
|
|
4020
|
+
behaviorsFlag = ` --append-system-prompt-file ${behaviorsFile}`;
|
|
4021
|
+
}
|
|
4022
|
+
}
|
|
4023
|
+
if (legacyFallbackWarned) {
|
|
4024
|
+
process.stderr.write(
|
|
4025
|
+
`[tmux-routing] claude --agent not supported by installed CC. Falling back to --append-system-prompt-file for ${employeeName}. Upgrade Claude Code to enable native --agent launch.
|
|
4026
|
+
`
|
|
4027
|
+
);
|
|
4028
|
+
}
|
|
4029
|
+
let sessionContextFlag = "";
|
|
4030
|
+
try {
|
|
4031
|
+
const ctxDir = path14.join(os6.homedir(), ".exe-os", "session-cache");
|
|
4032
|
+
mkdirSync6(ctxDir, { recursive: true });
|
|
4033
|
+
const ctxFile = path14.join(ctxDir, `session-context-${sessionName}.md`);
|
|
4034
|
+
const ctxContent = [
|
|
4035
|
+
`## Session Context`,
|
|
4036
|
+
`You are running in tmux session: ${sessionName}.`,
|
|
4037
|
+
`Your parent exe session is ${exeSession2}.`,
|
|
4038
|
+
`Your employees (if any) use the -${exeSession2} suffix (e.g., tom-${exeSession2}).`
|
|
4039
|
+
].join("\n");
|
|
4040
|
+
writeFileSync5(ctxFile, ctxContent);
|
|
4041
|
+
sessionContextFlag = ` --append-system-prompt-file ${ctxFile}`;
|
|
4042
|
+
} catch {
|
|
4043
|
+
}
|
|
4044
|
+
let envPrefix = `EXE_SESSION=${exeSession2} EXE_SESSION_NAME=${sessionName}`;
|
|
4045
|
+
if (ccProvider !== DEFAULT_PROVIDER) {
|
|
4046
|
+
const cfg = PROVIDER_TABLE[ccProvider];
|
|
4047
|
+
if (cfg?.apiKeyEnv) {
|
|
4048
|
+
const keyVal = process.env[cfg.apiKeyEnv];
|
|
4049
|
+
if (keyVal) {
|
|
4050
|
+
envPrefix = `${envPrefix} ${cfg.apiKeyEnv}=${keyVal}`;
|
|
4051
|
+
}
|
|
4052
|
+
}
|
|
4053
|
+
}
|
|
4054
|
+
let spawnCommand;
|
|
4055
|
+
if (useExeAgent) {
|
|
4056
|
+
spawnCommand = `${envPrefix} exe-agent --employee ${employeeName} --model ${opts.model} --provider ${opts.provider}${cleanupSuffix}`;
|
|
4057
|
+
} else if (useBinSymlink) {
|
|
4058
|
+
const binName = `${employeeName}-${ccProvider}`;
|
|
4059
|
+
process.stderr.write(
|
|
4060
|
+
`[tmux-routing] provider cascade: ${ccProvider} \u2192 spawning ${binName}
|
|
4061
|
+
`
|
|
4062
|
+
);
|
|
4063
|
+
spawnCommand = `${envPrefix} ${binName}${cleanupSuffix}`;
|
|
4064
|
+
} else {
|
|
4065
|
+
spawnCommand = `${envPrefix} claude --dangerously-skip-permissions${identityFlag}${behaviorsFlag}${sessionContextFlag}${cleanupSuffix}`;
|
|
4066
|
+
}
|
|
4067
|
+
const spawnResult = transport.spawn(sessionName, {
|
|
4068
|
+
cwd: spawnCwd,
|
|
4069
|
+
command: spawnCommand
|
|
4070
|
+
});
|
|
4071
|
+
if (spawnResult.error) {
|
|
4072
|
+
releaseSpawnLock2(sessionName);
|
|
4073
|
+
return { sessionName, error: `tmux new-session failed: ${spawnResult.error}` };
|
|
4074
|
+
}
|
|
4075
|
+
transport.pipeLog(sessionName, logFile);
|
|
4076
|
+
try {
|
|
4077
|
+
const mySession = getMySession();
|
|
4078
|
+
const dispatchInfo = path14.join(SESSION_CACHE, `dispatch-info-${sessionName}.json`);
|
|
4079
|
+
writeFileSync5(dispatchInfo, JSON.stringify({
|
|
4080
|
+
dispatchedBy: mySession,
|
|
4081
|
+
rootExe: exeSession2,
|
|
4082
|
+
provider: useBinSymlink ? ccProvider : useExeAgent ? opts.provider : "anthropic",
|
|
4083
|
+
createdAt: (/* @__PURE__ */ new Date()).toISOString()
|
|
4084
|
+
}));
|
|
4085
|
+
} catch {
|
|
4086
|
+
}
|
|
4087
|
+
let booted = false;
|
|
4088
|
+
for (let i = 0; i < 30; i++) {
|
|
4089
|
+
try {
|
|
4090
|
+
execSync5("sleep 0.5");
|
|
4091
|
+
} catch {
|
|
4092
|
+
}
|
|
4093
|
+
try {
|
|
4094
|
+
const pane = transport.capturePane(sessionName);
|
|
4095
|
+
if (useExeAgent) {
|
|
4096
|
+
if (pane.includes("[exe-agent]") || pane.includes("online")) {
|
|
4097
|
+
booted = true;
|
|
4098
|
+
break;
|
|
4099
|
+
}
|
|
4100
|
+
} else {
|
|
4101
|
+
if (pane.includes("Claude Code") || pane.includes("\u276F")) {
|
|
4102
|
+
booted = true;
|
|
4103
|
+
break;
|
|
4104
|
+
}
|
|
4105
|
+
}
|
|
4106
|
+
} catch {
|
|
4107
|
+
}
|
|
4108
|
+
}
|
|
4109
|
+
if (!booted) {
|
|
4110
|
+
releaseSpawnLock2(sessionName);
|
|
4111
|
+
return { sessionName, error: `${useExeAgent ? "exe-agent" : "claude"} did not boot within 15s` };
|
|
4112
|
+
}
|
|
4113
|
+
if (!useExeAgent) {
|
|
4114
|
+
try {
|
|
4115
|
+
transport.sendKeys(sessionName, `/exe-call ${employeeName}`);
|
|
4116
|
+
} catch {
|
|
4117
|
+
}
|
|
4118
|
+
}
|
|
4119
|
+
registerSession({
|
|
4120
|
+
windowName: sessionName,
|
|
4121
|
+
agentId: employeeName,
|
|
4122
|
+
projectDir: spawnCwd,
|
|
4123
|
+
parentExe: exeSession2,
|
|
4124
|
+
pid: 0,
|
|
4125
|
+
registeredAt: (/* @__PURE__ */ new Date()).toISOString()
|
|
4126
|
+
});
|
|
4127
|
+
releaseSpawnLock2(sessionName);
|
|
4128
|
+
return { sessionName };
|
|
4129
|
+
}
|
|
4130
|
+
var SPAWN_LOCK_DIR, SESSION_CACHE, BEHAVIORS_EXPORT_TIMEOUT_MS, VALID_SESSION_NAME, VERIFY_PANE_LINES, INTERCOM_DEBOUNCE_MS, INTERCOM_LOG2, DEBOUNCE_FILE, DEBOUNCE_CLEANUP_AGE_MS, BUSY_PATTERN;
|
|
4131
|
+
var init_tmux_routing = __esm({
|
|
4132
|
+
"src/lib/tmux-routing.ts"() {
|
|
4133
|
+
"use strict";
|
|
4134
|
+
init_session_registry();
|
|
4135
|
+
init_session_key();
|
|
4136
|
+
init_transport();
|
|
4137
|
+
init_cc_agent_support();
|
|
4138
|
+
init_mcp_prefix();
|
|
4139
|
+
init_provider_table();
|
|
4140
|
+
init_intercom_queue();
|
|
4141
|
+
init_plan_limits();
|
|
4142
|
+
SPAWN_LOCK_DIR = path14.join(os6.homedir(), ".exe-os", "spawn-locks");
|
|
4143
|
+
SESSION_CACHE = path14.join(os6.homedir(), ".exe-os", "session-cache");
|
|
4144
|
+
BEHAVIORS_EXPORT_TIMEOUT_MS = 1e4;
|
|
4145
|
+
VALID_SESSION_NAME = /^[a-z]+-exe\d+$|^[a-z]+\d+-exe\d+$/;
|
|
4146
|
+
VERIFY_PANE_LINES = 200;
|
|
4147
|
+
INTERCOM_DEBOUNCE_MS = 3e4;
|
|
4148
|
+
INTERCOM_LOG2 = path14.join(os6.homedir(), ".exe-os", "intercom.log");
|
|
4149
|
+
DEBOUNCE_FILE = path14.join(SESSION_CACHE, "intercom-debounce.json");
|
|
4150
|
+
DEBOUNCE_CLEANUP_AGE_MS = 5 * 60 * 1e3;
|
|
4151
|
+
BUSY_PATTERN = /[✻✽✶✳·].*…|Running…/;
|
|
4152
|
+
}
|
|
4153
|
+
});
|
|
4154
|
+
|
|
4155
|
+
// src/lib/tasks-crud.ts
|
|
4156
|
+
import crypto6 from "crypto";
|
|
4157
|
+
import path15 from "path";
|
|
4158
|
+
import { execSync as execSync6 } from "child_process";
|
|
4159
|
+
import { mkdir as mkdir4, writeFile as writeFile5, appendFile } from "fs/promises";
|
|
4160
|
+
import { existsSync as existsSync12, readFileSync as readFileSync10 } from "fs";
|
|
4161
|
+
async function writeCheckpoint(input) {
|
|
4162
|
+
const client = getClient();
|
|
4163
|
+
const row = await resolveTask(client, input.taskId);
|
|
4164
|
+
const taskId = String(row.id);
|
|
4165
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
4166
|
+
const blockedByIds = [];
|
|
4167
|
+
if (row.blocked_by) {
|
|
4168
|
+
blockedByIds.push(String(row.blocked_by));
|
|
4169
|
+
}
|
|
4170
|
+
const checkpoint = {
|
|
4171
|
+
step: input.step,
|
|
4172
|
+
context_summary: input.contextSummary,
|
|
4173
|
+
files_touched: input.filesTouched ?? [],
|
|
4174
|
+
blocked_by_ids: blockedByIds,
|
|
4175
|
+
last_checkpoint_at: now
|
|
4176
|
+
};
|
|
4177
|
+
const result = await client.execute({
|
|
4178
|
+
sql: `UPDATE tasks SET checkpoint = ?, checkpoint_count = checkpoint_count + 1, updated_at = ? WHERE id = ?`,
|
|
4179
|
+
args: [JSON.stringify(checkpoint), now, taskId]
|
|
4180
|
+
});
|
|
4181
|
+
if (result.rowsAffected === 0) {
|
|
4182
|
+
throw new Error(`Checkpoint write failed: task ${taskId} not found`);
|
|
4183
|
+
}
|
|
4184
|
+
const countResult = await client.execute({
|
|
4185
|
+
sql: "SELECT checkpoint_count FROM tasks WHERE id = ?",
|
|
4186
|
+
args: [taskId]
|
|
4187
|
+
});
|
|
4188
|
+
const checkpointCount = Number(countResult.rows[0]?.checkpoint_count ?? 1);
|
|
4189
|
+
return { checkpointCount };
|
|
4190
|
+
}
|
|
4191
|
+
function extractParentFromContext(contextBody) {
|
|
4192
|
+
if (!contextBody) return null;
|
|
4193
|
+
const match = contextBody.match(
|
|
4194
|
+
/Parent task:\s*([0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12})/i
|
|
4195
|
+
);
|
|
4196
|
+
return match ? match[1].toLowerCase() : null;
|
|
4197
|
+
}
|
|
4198
|
+
function slugify(title) {
|
|
4199
|
+
return title.toLowerCase().replace(/[^a-z0-9-]/g, "-").replace(/-+/g, "-").replace(/^-|-$/g, "");
|
|
4200
|
+
}
|
|
4201
|
+
async function resolveTask(client, identifier) {
|
|
4202
|
+
let result = await client.execute({
|
|
4203
|
+
sql: "SELECT * FROM tasks WHERE id = ?",
|
|
4204
|
+
args: [identifier]
|
|
4205
|
+
});
|
|
4206
|
+
if (result.rows.length === 1) return result.rows[0];
|
|
4207
|
+
result = await client.execute({
|
|
4208
|
+
sql: "SELECT * FROM tasks WHERE task_file LIKE ?",
|
|
4209
|
+
args: [`%${identifier}%`]
|
|
4210
|
+
});
|
|
4211
|
+
if (result.rows.length === 1) return result.rows[0];
|
|
4212
|
+
if (result.rows.length > 1) {
|
|
4213
|
+
const exact = result.rows.filter(
|
|
4214
|
+
(r) => String(r.task_file).endsWith(`/${identifier}.md`)
|
|
4215
|
+
);
|
|
4216
|
+
if (exact.length === 1) return exact[0];
|
|
4217
|
+
const candidates = exact.length > 1 ? exact : result.rows;
|
|
4218
|
+
const active = candidates.filter(
|
|
4219
|
+
(r) => !["done", "cancelled"].includes(String(r.status))
|
|
4220
|
+
);
|
|
4221
|
+
if (active.length === 1) return active[0];
|
|
4222
|
+
const matches = (active.length > 1 ? active : candidates).map((r) => `${String(r.task_file)} (${String(r.status)}, ${String(r.id)})`).join(", ");
|
|
4223
|
+
throw new Error(
|
|
4224
|
+
`Multiple tasks match "${identifier}": ${matches}. Use a UUID to disambiguate.`
|
|
4225
|
+
);
|
|
4226
|
+
}
|
|
4227
|
+
result = await client.execute({
|
|
4228
|
+
sql: "SELECT * FROM tasks WHERE title LIKE ?",
|
|
4229
|
+
args: [`%${identifier}%`]
|
|
4230
|
+
});
|
|
4231
|
+
if (result.rows.length === 1) return result.rows[0];
|
|
4232
|
+
if (result.rows.length > 1) {
|
|
4233
|
+
const active = result.rows.filter(
|
|
4234
|
+
(r) => !["done", "cancelled"].includes(String(r.status))
|
|
4235
|
+
);
|
|
4236
|
+
if (active.length === 1) return active[0];
|
|
4237
|
+
const matches = (active.length > 1 ? active : result.rows).map((r) => `"${String(r.title)}" (${String(r.status)}, ${String(r.id)})`).join(", ");
|
|
4238
|
+
throw new Error(
|
|
4239
|
+
`Multiple tasks match "${identifier}": ${matches}. Use a UUID to disambiguate.`
|
|
4240
|
+
);
|
|
4241
|
+
}
|
|
4242
|
+
throw new Error(`Task not found: ${identifier}`);
|
|
4243
|
+
}
|
|
4244
|
+
async function createTaskCore(input) {
|
|
4245
|
+
const client = getClient();
|
|
4246
|
+
const id = crypto6.randomUUID();
|
|
4247
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
4248
|
+
const slug = slugify(input.title);
|
|
4249
|
+
const taskFile = input.taskFile ?? `exe/${input.assignedTo}/${slug}.md`;
|
|
4250
|
+
let blockedById = null;
|
|
4251
|
+
const initialStatus = input.blockedBy ? "blocked" : "open";
|
|
4252
|
+
if (input.blockedBy) {
|
|
4253
|
+
const blocker = await resolveTask(client, input.blockedBy);
|
|
4254
|
+
blockedById = String(blocker.id);
|
|
4255
|
+
}
|
|
4256
|
+
let parentTaskId = null;
|
|
4257
|
+
let parentRef = input.parentTaskId;
|
|
4258
|
+
if (!parentRef) {
|
|
4259
|
+
const extracted = extractParentFromContext(input.context);
|
|
4260
|
+
if (extracted) {
|
|
4261
|
+
parentRef = extracted;
|
|
4262
|
+
process.stderr.write(
|
|
4263
|
+
"[create_task] auto-populated parent_task_id from context body \u2014 dispatchers should pass parent_task_id explicitly\n"
|
|
4264
|
+
);
|
|
4265
|
+
}
|
|
4266
|
+
}
|
|
4267
|
+
if (parentRef) {
|
|
4268
|
+
try {
|
|
4269
|
+
const parent = await resolveTask(client, parentRef);
|
|
4270
|
+
parentTaskId = String(parent.id);
|
|
4271
|
+
} catch (err) {
|
|
4272
|
+
if (!input.parentTaskId) {
|
|
4273
|
+
throw new Error(
|
|
4274
|
+
`create_task: parent reference "${parentRef}" in context body does not resolve to an existing task`
|
|
4275
|
+
);
|
|
4276
|
+
}
|
|
4277
|
+
throw err;
|
|
4278
|
+
}
|
|
2398
4279
|
}
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
4280
|
+
let warning;
|
|
4281
|
+
const dupCheck = await client.execute({
|
|
4282
|
+
sql: "SELECT id FROM tasks WHERE title = ? AND assigned_to = ? AND status IN ('open', 'in_progress', 'blocked')",
|
|
4283
|
+
args: [input.title, input.assignedTo]
|
|
4284
|
+
});
|
|
4285
|
+
if (dupCheck.rows.length > 0) {
|
|
4286
|
+
warning = `similar active task already exists (${String(dupCheck.rows[0].id)}). Created new task anyway.`;
|
|
4287
|
+
}
|
|
4288
|
+
if (input.baseDir) {
|
|
4289
|
+
try {
|
|
4290
|
+
await mkdir4(path15.join(input.baseDir, "exe", "output"), { recursive: true });
|
|
4291
|
+
await mkdir4(path15.join(input.baseDir, "exe", "research"), { recursive: true });
|
|
4292
|
+
await ensureArchitectureDoc(input.baseDir, input.projectName);
|
|
4293
|
+
await ensureGitignoreExe(input.baseDir);
|
|
4294
|
+
} catch {
|
|
4295
|
+
}
|
|
4296
|
+
}
|
|
4297
|
+
const complexity = input.complexity ?? "standard";
|
|
4298
|
+
let sessionScope = null;
|
|
2407
4299
|
try {
|
|
2408
|
-
const
|
|
2409
|
-
|
|
4300
|
+
const { resolveExeSession: resolveExeSession2 } = await Promise.resolve().then(() => (init_tmux_routing(), tmux_routing_exports));
|
|
4301
|
+
sessionScope = resolveExeSession2();
|
|
2410
4302
|
} catch {
|
|
2411
|
-
return null;
|
|
2412
4303
|
}
|
|
4304
|
+
await client.execute({
|
|
4305
|
+
sql: `INSERT INTO tasks (id, title, assigned_to, assigned_by, project_name, priority, status, task_file, blocked_by, parent_task_id, reviewer, context, complexity, budget_tokens, budget_fallback_model, tokens_used, tokens_warned_at, session_scope, created_at, updated_at)
|
|
4306
|
+
VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)`,
|
|
4307
|
+
args: [
|
|
4308
|
+
id,
|
|
4309
|
+
input.title,
|
|
4310
|
+
input.assignedTo,
|
|
4311
|
+
input.assignedBy,
|
|
4312
|
+
input.projectName,
|
|
4313
|
+
input.priority,
|
|
4314
|
+
initialStatus,
|
|
4315
|
+
taskFile,
|
|
4316
|
+
blockedById,
|
|
4317
|
+
parentTaskId,
|
|
4318
|
+
input.reviewer ?? null,
|
|
4319
|
+
input.context,
|
|
4320
|
+
complexity,
|
|
4321
|
+
input.budgetTokens ?? null,
|
|
4322
|
+
input.budgetFallbackModel ?? null,
|
|
4323
|
+
0,
|
|
4324
|
+
null,
|
|
4325
|
+
sessionScope,
|
|
4326
|
+
now,
|
|
4327
|
+
now
|
|
4328
|
+
]
|
|
4329
|
+
});
|
|
4330
|
+
return {
|
|
4331
|
+
id,
|
|
4332
|
+
title: input.title,
|
|
4333
|
+
assignedTo: input.assignedTo,
|
|
4334
|
+
assignedBy: input.assignedBy,
|
|
4335
|
+
projectName: input.projectName,
|
|
4336
|
+
priority: input.priority,
|
|
4337
|
+
status: initialStatus,
|
|
4338
|
+
taskFile,
|
|
4339
|
+
createdAt: now,
|
|
4340
|
+
updatedAt: now,
|
|
4341
|
+
warning,
|
|
4342
|
+
budgetTokens: input.budgetTokens ?? null,
|
|
4343
|
+
budgetFallbackModel: input.budgetFallbackModel ?? null,
|
|
4344
|
+
tokensUsed: 0,
|
|
4345
|
+
tokensWarnedAt: null
|
|
4346
|
+
};
|
|
2413
4347
|
}
|
|
2414
|
-
function
|
|
4348
|
+
async function listTasks(input) {
|
|
4349
|
+
const client = getClient();
|
|
4350
|
+
const conditions = [];
|
|
4351
|
+
const args = [];
|
|
4352
|
+
if (input.assignedTo) {
|
|
4353
|
+
conditions.push("assigned_to = ?");
|
|
4354
|
+
args.push(input.assignedTo);
|
|
4355
|
+
}
|
|
4356
|
+
if (input.status) {
|
|
4357
|
+
conditions.push("status = ?");
|
|
4358
|
+
args.push(input.status);
|
|
4359
|
+
} else {
|
|
4360
|
+
conditions.push("status IN ('open', 'in_progress', 'blocked')");
|
|
4361
|
+
}
|
|
4362
|
+
if (input.projectName) {
|
|
4363
|
+
conditions.push("project_name = ?");
|
|
4364
|
+
args.push(input.projectName);
|
|
4365
|
+
}
|
|
4366
|
+
if (input.priority) {
|
|
4367
|
+
conditions.push("priority = ?");
|
|
4368
|
+
args.push(input.priority);
|
|
4369
|
+
}
|
|
2415
4370
|
try {
|
|
2416
|
-
|
|
2417
|
-
|
|
4371
|
+
const { resolveExeSession: resolveExeSession2 } = await Promise.resolve().then(() => (init_tmux_routing(), tmux_routing_exports));
|
|
4372
|
+
const session = resolveExeSession2();
|
|
4373
|
+
if (session) {
|
|
4374
|
+
conditions.push("(session_scope IS NULL OR session_scope = ?)");
|
|
4375
|
+
args.push(session);
|
|
4376
|
+
}
|
|
2418
4377
|
} catch {
|
|
2419
|
-
return {};
|
|
2420
4378
|
}
|
|
4379
|
+
const where = conditions.length > 0 ? `WHERE ${conditions.join(" AND ")}` : "";
|
|
4380
|
+
const result = await client.execute({
|
|
4381
|
+
sql: `SELECT * FROM tasks ${where} ORDER BY CASE status WHEN 'blocked' THEN 0 WHEN 'in_progress' THEN 1 WHEN 'open' THEN 2 ELSE 3 END, priority ASC, created_at DESC LIMIT 1000`,
|
|
4382
|
+
args
|
|
4383
|
+
});
|
|
4384
|
+
return result.rows.map((r) => ({
|
|
4385
|
+
id: String(r.id),
|
|
4386
|
+
title: String(r.title),
|
|
4387
|
+
assignedTo: String(r.assigned_to),
|
|
4388
|
+
assignedBy: String(r.assigned_by),
|
|
4389
|
+
projectName: String(r.project_name),
|
|
4390
|
+
priority: String(r.priority),
|
|
4391
|
+
status: String(r.status),
|
|
4392
|
+
taskFile: String(r.task_file),
|
|
4393
|
+
createdAt: String(r.created_at),
|
|
4394
|
+
updatedAt: String(r.updated_at),
|
|
4395
|
+
checkpointCount: Number(r.checkpoint_count ?? 0),
|
|
4396
|
+
budgetTokens: r.budget_tokens !== null ? Number(r.budget_tokens) : null,
|
|
4397
|
+
budgetFallbackModel: r.budget_fallback_model !== null ? String(r.budget_fallback_model) : null,
|
|
4398
|
+
tokensUsed: Number(r.tokens_used ?? 0),
|
|
4399
|
+
tokensWarnedAt: r.tokens_warned_at !== null ? Number(r.tokens_warned_at) : null
|
|
4400
|
+
}));
|
|
2421
4401
|
}
|
|
2422
|
-
function
|
|
4402
|
+
function checkStaleCompletion(taskContext, taskCreatedAt) {
|
|
4403
|
+
if (!taskContext) return null;
|
|
4404
|
+
if (!DELEGATION_KEYWORDS.test(taskContext)) return null;
|
|
2423
4405
|
try {
|
|
2424
|
-
|
|
2425
|
-
|
|
4406
|
+
const since = new Date(taskCreatedAt).toISOString();
|
|
4407
|
+
const branch = execSync6(
|
|
4408
|
+
"git rev-parse --abbrev-ref HEAD 2>/dev/null",
|
|
4409
|
+
{ encoding: "utf8", timeout: 3e3 }
|
|
4410
|
+
).trim();
|
|
4411
|
+
const branchArg = branch && branch !== "HEAD" ? branch : "";
|
|
4412
|
+
const commitCount = execSync6(
|
|
4413
|
+
`git log --oneline --since="${since}" ${branchArg} 2>/dev/null | wc -l`,
|
|
4414
|
+
{ encoding: "utf8", timeout: 5e3 }
|
|
4415
|
+
).trim();
|
|
4416
|
+
const count = parseInt(commitCount, 10);
|
|
4417
|
+
if (count === 0) {
|
|
4418
|
+
return "WARNING: task closed with no new commits since creation. Verify work was actually produced.";
|
|
4419
|
+
}
|
|
4420
|
+
return null;
|
|
2426
4421
|
} catch {
|
|
4422
|
+
return null;
|
|
2427
4423
|
}
|
|
2428
4424
|
}
|
|
2429
|
-
function
|
|
2430
|
-
const
|
|
2431
|
-
const
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
4425
|
+
async function updateTaskStatus(input) {
|
|
4426
|
+
const client = getClient();
|
|
4427
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
4428
|
+
const row = await resolveTask(client, input.taskId);
|
|
4429
|
+
const taskId = String(row.id);
|
|
4430
|
+
const taskFile = String(row.task_file);
|
|
4431
|
+
if (input.status === "done" && String(row.assigned_by) === "system" && taskFile.includes("review-")) {
|
|
4432
|
+
process.stderr.write(
|
|
4433
|
+
`[updateTask] Review task "${String(row.title)}" being marked done (assigned to ${String(row.assigned_to)})
|
|
4434
|
+
`
|
|
4435
|
+
);
|
|
2440
4436
|
}
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
4437
|
+
if (input.status === "done") {
|
|
4438
|
+
const existingRow = await client.execute({
|
|
4439
|
+
sql: "SELECT context, created_at FROM tasks WHERE id = ?",
|
|
4440
|
+
args: [taskId]
|
|
4441
|
+
});
|
|
4442
|
+
if (existingRow.rows.length > 0) {
|
|
4443
|
+
const ctx = existingRow.rows[0];
|
|
4444
|
+
const warning = checkStaleCompletion(ctx.context, ctx.created_at);
|
|
4445
|
+
if (warning) {
|
|
4446
|
+
input.result = input.result ? `\u26A0\uFE0F ${warning}
|
|
4447
|
+
|
|
4448
|
+
${input.result}` : `\u26A0\uFE0F ${warning}`;
|
|
4449
|
+
process.stderr.write(`[tasks] ${warning} (task: ${taskId})
|
|
2447
4450
|
`);
|
|
4451
|
+
}
|
|
4452
|
+
}
|
|
4453
|
+
}
|
|
4454
|
+
if (input.status === "in_progress") {
|
|
4455
|
+
const tmuxSession = process.env.TMUX_PANE ?? process.env.MY_TMUX_SESSION ?? "unknown";
|
|
4456
|
+
const claim = await client.execute({
|
|
4457
|
+
sql: `UPDATE tasks
|
|
4458
|
+
SET status = 'in_progress', assigned_tmux = ?, updated_at = ?
|
|
4459
|
+
WHERE id = ? AND status = 'open'`,
|
|
4460
|
+
args: [tmuxSession, now, taskId]
|
|
4461
|
+
});
|
|
4462
|
+
if (claim.rowsAffected === 0) {
|
|
4463
|
+
const current = await client.execute({
|
|
4464
|
+
sql: "SELECT status, assigned_tmux FROM tasks WHERE id = ?",
|
|
4465
|
+
args: [taskId]
|
|
4466
|
+
});
|
|
4467
|
+
const cur = current.rows[0];
|
|
4468
|
+
const status = cur?.status ?? "unknown";
|
|
4469
|
+
const claimedBy = cur?.assigned_tmux ? ` (claimed by ${cur.assigned_tmux})` : "";
|
|
4470
|
+
throw new Error(`${TASK_ALREADY_CLAIMED_PREFIX}: task ${taskId} is ${status}${claimedBy}`);
|
|
4471
|
+
}
|
|
4472
|
+
try {
|
|
4473
|
+
await writeCheckpoint({
|
|
4474
|
+
taskId,
|
|
4475
|
+
step: "claimed",
|
|
4476
|
+
contextSummary: `Task claimed by session. Transitioning open \u2192 in_progress.`
|
|
4477
|
+
});
|
|
4478
|
+
} catch {
|
|
4479
|
+
}
|
|
4480
|
+
return { row, taskFile, now, taskId };
|
|
4481
|
+
}
|
|
4482
|
+
if (input.result) {
|
|
4483
|
+
await client.execute({
|
|
4484
|
+
sql: "UPDATE tasks SET status = ?, result = ?, updated_at = ? WHERE id = ?",
|
|
4485
|
+
args: [input.status, input.result, now, taskId]
|
|
4486
|
+
});
|
|
4487
|
+
} else {
|
|
4488
|
+
await client.execute({
|
|
4489
|
+
sql: "UPDATE tasks SET status = ?, updated_at = ? WHERE id = ?",
|
|
4490
|
+
args: [input.status, now, taskId]
|
|
4491
|
+
});
|
|
4492
|
+
}
|
|
2448
4493
|
try {
|
|
2449
|
-
|
|
4494
|
+
await writeCheckpoint({
|
|
4495
|
+
taskId,
|
|
4496
|
+
step: `status_transition:${input.status}`,
|
|
4497
|
+
contextSummary: input.result ? `Transitioned to ${input.status}. Result: ${input.result.slice(0, 500)}` : `Transitioned to ${input.status}.`
|
|
4498
|
+
});
|
|
2450
4499
|
} catch {
|
|
2451
4500
|
}
|
|
4501
|
+
return { row, taskFile, now, taskId };
|
|
2452
4502
|
}
|
|
2453
|
-
function
|
|
2454
|
-
const
|
|
2455
|
-
|
|
4503
|
+
async function deleteTaskCore(taskId, _baseDir) {
|
|
4504
|
+
const client = getClient();
|
|
4505
|
+
const row = await resolveTask(client, taskId);
|
|
4506
|
+
const id = String(row.id);
|
|
4507
|
+
const taskFile = String(row.task_file);
|
|
4508
|
+
const assignedTo = String(row.assigned_to);
|
|
4509
|
+
const assignedBy = String(row.assigned_by);
|
|
4510
|
+
await client.execute({ sql: "DELETE FROM tasks WHERE id = ?", args: [id] });
|
|
4511
|
+
const taskSlug = taskFile.split("/").pop()?.replace(".md", "") ?? "";
|
|
4512
|
+
return { taskFile, assignedTo, assignedBy, taskSlug };
|
|
4513
|
+
}
|
|
4514
|
+
async function ensureArchitectureDoc(baseDir, projectName) {
|
|
4515
|
+
const archPath = path15.join(baseDir, "exe", "ARCHITECTURE.md");
|
|
2456
4516
|
try {
|
|
2457
|
-
|
|
2458
|
-
|
|
2459
|
-
|
|
2460
|
-
|
|
2461
|
-
|
|
2462
|
-
|
|
2463
|
-
|
|
2464
|
-
|
|
2465
|
-
|
|
4517
|
+
if (existsSync12(archPath)) return;
|
|
4518
|
+
const template = [
|
|
4519
|
+
`# ${projectName} \u2014 System Architecture`,
|
|
4520
|
+
"",
|
|
4521
|
+
"> Employees: read this before every task. Update it when you change system structure.",
|
|
4522
|
+
`> Last updated: ${(/* @__PURE__ */ new Date()).toISOString().split("T")[0]}`,
|
|
4523
|
+
"",
|
|
4524
|
+
"## Overview",
|
|
4525
|
+
"",
|
|
4526
|
+
"<!-- Describe what this system does, its main components, and how they connect. -->",
|
|
4527
|
+
"",
|
|
4528
|
+
"## Key Components",
|
|
4529
|
+
"",
|
|
4530
|
+
"<!-- List the major modules, services, or subsystems. -->",
|
|
4531
|
+
"",
|
|
4532
|
+
"## Data Flow",
|
|
4533
|
+
"",
|
|
4534
|
+
"<!-- How does data move through the system? What writes where? -->",
|
|
4535
|
+
"",
|
|
4536
|
+
"## Invariants",
|
|
4537
|
+
"",
|
|
4538
|
+
"<!-- Rules that must never be violated. What breaks if these are wrong? -->",
|
|
4539
|
+
"",
|
|
4540
|
+
"## Dependencies",
|
|
4541
|
+
"",
|
|
4542
|
+
"<!-- What depends on what? If I change X, what else is affected? -->",
|
|
4543
|
+
""
|
|
4544
|
+
].join("\n");
|
|
4545
|
+
await writeFile5(archPath, template, "utf-8");
|
|
2466
4546
|
} catch {
|
|
2467
|
-
return "offline";
|
|
2468
4547
|
}
|
|
2469
4548
|
}
|
|
2470
|
-
function
|
|
2471
|
-
|
|
2472
|
-
}
|
|
2473
|
-
function sendIntercom(targetSession) {
|
|
2474
|
-
const transport = getTransport();
|
|
2475
|
-
if (isExeSession(targetSession)) {
|
|
2476
|
-
logIntercom(`SKIP_EXE \u2192 ${targetSession} (exe sessions use prompt-submit hook)`);
|
|
2477
|
-
return "skipped_exe";
|
|
2478
|
-
}
|
|
2479
|
-
if (isDebounced(targetSession)) {
|
|
2480
|
-
logIntercom(`DEBOUNCE \u2192 ${targetSession} (cross-process file debounce)`);
|
|
2481
|
-
return "debounced";
|
|
2482
|
-
}
|
|
4549
|
+
async function ensureGitignoreExe(baseDir) {
|
|
4550
|
+
const gitignorePath = path15.join(baseDir, ".gitignore");
|
|
2483
4551
|
try {
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
|
|
2487
|
-
|
|
2488
|
-
}
|
|
2489
|
-
|
|
2490
|
-
if (sessionState === "no_claude") {
|
|
2491
|
-
queueIntercom(targetSession, "claude not running in session");
|
|
2492
|
-
recordDebounce(targetSession);
|
|
2493
|
-
logIntercom(`QUEUED \u2192 ${targetSession} (no claude process \u2014 raw shell detected)`);
|
|
2494
|
-
return "queued";
|
|
2495
|
-
}
|
|
2496
|
-
if (sessionState === "thinking" || sessionState === "tool") {
|
|
2497
|
-
queueIntercom(targetSession, "session busy at send time");
|
|
2498
|
-
recordDebounce(targetSession);
|
|
2499
|
-
logIntercom(`QUEUED \u2192 ${targetSession} (session busy, will retry from queue)`);
|
|
2500
|
-
return "queued";
|
|
2501
|
-
}
|
|
2502
|
-
if (transport.isPaneInCopyMode(targetSession)) {
|
|
2503
|
-
logIntercom(`COPY_MODE \u2192 ${targetSession} (exiting copy mode first)`);
|
|
2504
|
-
transport.sendKeys(targetSession, "q");
|
|
4552
|
+
if (existsSync12(gitignorePath)) {
|
|
4553
|
+
const content = readFileSync10(gitignorePath, "utf-8");
|
|
4554
|
+
if (/^\/?exe\/?$/m.test(content)) return;
|
|
4555
|
+
await appendFile(gitignorePath, "\n# Employee task assignments (private)\n/exe/\n");
|
|
4556
|
+
} else {
|
|
4557
|
+
await writeFile5(gitignorePath, "# Employee task assignments (private)\n/exe/\n", "utf-8");
|
|
2505
4558
|
}
|
|
2506
|
-
transport.sendKeys(targetSession, "/exe-intercom");
|
|
2507
|
-
recordDebounce(targetSession);
|
|
2508
|
-
logIntercom(`DELIVERED \u2192 ${targetSession} (fire-and-forget)`);
|
|
2509
|
-
return "delivered";
|
|
2510
4559
|
} catch {
|
|
2511
|
-
logIntercom(`FAIL \u2192 ${targetSession}`);
|
|
2512
|
-
return "failed";
|
|
2513
4560
|
}
|
|
2514
4561
|
}
|
|
2515
|
-
var
|
|
2516
|
-
var
|
|
2517
|
-
"src/lib/
|
|
4562
|
+
var DELEGATION_KEYWORDS, TASK_ALREADY_CLAIMED_PREFIX;
|
|
4563
|
+
var init_tasks_crud = __esm({
|
|
4564
|
+
"src/lib/tasks-crud.ts"() {
|
|
2518
4565
|
"use strict";
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
|
|
2522
|
-
init_cc_agent_support();
|
|
2523
|
-
init_mcp_prefix();
|
|
2524
|
-
init_provider_table();
|
|
2525
|
-
init_intercom_queue();
|
|
2526
|
-
init_plan_limits();
|
|
2527
|
-
SPAWN_LOCK_DIR = path13.join(os6.homedir(), ".exe-os", "spawn-locks");
|
|
2528
|
-
SESSION_CACHE = path13.join(os6.homedir(), ".exe-os", "session-cache");
|
|
2529
|
-
INTERCOM_DEBOUNCE_MS = 3e4;
|
|
2530
|
-
INTERCOM_LOG2 = path13.join(os6.homedir(), ".exe-os", "intercom.log");
|
|
2531
|
-
DEBOUNCE_FILE = path13.join(SESSION_CACHE, "intercom-debounce.json");
|
|
2532
|
-
DEBOUNCE_CLEANUP_AGE_MS = 5 * 60 * 1e3;
|
|
2533
|
-
BUSY_PATTERN = /[✻✽✶✳·].*…|Running…/;
|
|
4566
|
+
init_database();
|
|
4567
|
+
DELEGATION_KEYWORDS = /parallel|delegate|wave|tom\d*-exe/i;
|
|
4568
|
+
TASK_ALREADY_CLAIMED_PREFIX = "TASK_ALREADY_CLAIMED";
|
|
2534
4569
|
}
|
|
2535
4570
|
});
|
|
2536
4571
|
|
|
2537
4572
|
// src/lib/tasks-review.ts
|
|
2538
4573
|
var tasks_review_exports = {};
|
|
2539
4574
|
__export(tasks_review_exports, {
|
|
4575
|
+
cleanupOrphanedReviews: () => cleanupOrphanedReviews,
|
|
2540
4576
|
cleanupReviewFile: () => cleanupReviewFile,
|
|
2541
4577
|
countNewPendingReviewsSince: () => countNewPendingReviewsSince,
|
|
2542
4578
|
countPendingReviews: () => countPendingReviews,
|
|
@@ -2544,8 +4580,8 @@ __export(tasks_review_exports, {
|
|
|
2544
4580
|
getReviewChecklist: () => getReviewChecklist,
|
|
2545
4581
|
listPendingReviews: () => listPendingReviews
|
|
2546
4582
|
});
|
|
2547
|
-
import
|
|
2548
|
-
import { existsSync as
|
|
4583
|
+
import path16 from "path";
|
|
4584
|
+
import { existsSync as existsSync13, readdirSync as readdirSync3, unlinkSync as unlinkSync5 } from "fs";
|
|
2549
4585
|
async function countPendingReviews() {
|
|
2550
4586
|
const client = getClient();
|
|
2551
4587
|
const result = await client.execute({
|
|
@@ -2573,6 +4609,34 @@ async function listPendingReviews(limit) {
|
|
|
2573
4609
|
});
|
|
2574
4610
|
return result.rows;
|
|
2575
4611
|
}
|
|
4612
|
+
async function cleanupOrphanedReviews() {
|
|
4613
|
+
const client = getClient();
|
|
4614
|
+
const now = (/* @__PURE__ */ new Date()).toISOString();
|
|
4615
|
+
const r1 = await client.execute({
|
|
4616
|
+
sql: `UPDATE tasks SET status = 'done', updated_at = ?
|
|
4617
|
+
WHERE status = 'needs_review'
|
|
4618
|
+
AND assigned_by = 'system'
|
|
4619
|
+
AND title LIKE 'Review:%'
|
|
4620
|
+
AND parent_task_id IN (SELECT id FROM tasks WHERE status IN ('done', 'cancelled'))`,
|
|
4621
|
+
args: [now]
|
|
4622
|
+
});
|
|
4623
|
+
const staleThreshold = new Date(Date.now() - 60 * 60 * 1e3).toISOString();
|
|
4624
|
+
const r2 = await client.execute({
|
|
4625
|
+
sql: `UPDATE tasks SET status = 'done', updated_at = ?
|
|
4626
|
+
WHERE status = 'needs_review'
|
|
4627
|
+
AND result IS NOT NULL
|
|
4628
|
+
AND updated_at < ?`,
|
|
4629
|
+
args: [now, staleThreshold]
|
|
4630
|
+
});
|
|
4631
|
+
const total = r1.rowsAffected + r2.rowsAffected;
|
|
4632
|
+
if (total > 0) {
|
|
4633
|
+
process.stderr.write(
|
|
4634
|
+
`[cleanup] Closed ${total} orphaned review(s): ${r1.rowsAffected} cascade + ${r2.rowsAffected} stale
|
|
4635
|
+
`
|
|
4636
|
+
);
|
|
4637
|
+
}
|
|
4638
|
+
return total;
|
|
4639
|
+
}
|
|
2576
4640
|
function getReviewChecklist(role, agent, taskSlug) {
|
|
2577
4641
|
const roleLower = role.toLowerCase();
|
|
2578
4642
|
if (roleLower.includes("engineer") || roleLower === "principal engineer") {
|
|
@@ -2680,6 +4744,13 @@ async function createReviewForCompletedTask(row, result, _baseDir, now) {
|
|
|
2680
4744
|
skipDispatch: true
|
|
2681
4745
|
});
|
|
2682
4746
|
const reviewId = reviewTask.id;
|
|
4747
|
+
orgBus.emit({
|
|
4748
|
+
type: "review_created",
|
|
4749
|
+
reviewId,
|
|
4750
|
+
employee: agent,
|
|
4751
|
+
reviewer,
|
|
4752
|
+
timestamp: now
|
|
4753
|
+
});
|
|
2683
4754
|
await writeNotification({
|
|
2684
4755
|
agentId: agent,
|
|
2685
4756
|
agentRole: String(row.assigned_to),
|
|
@@ -2755,11 +4826,11 @@ async function cleanupReviewFile(row, taskFile, _baseDir) {
|
|
|
2755
4826
|
);
|
|
2756
4827
|
}
|
|
2757
4828
|
try {
|
|
2758
|
-
const cacheDir =
|
|
2759
|
-
if (
|
|
4829
|
+
const cacheDir = path16.join(EXE_AI_DIR, "session-cache");
|
|
4830
|
+
if (existsSync13(cacheDir)) {
|
|
2760
4831
|
for (const f of readdirSync3(cacheDir)) {
|
|
2761
4832
|
if (f.startsWith("review-notified-")) {
|
|
2762
|
-
|
|
4833
|
+
unlinkSync5(path16.join(cacheDir, f));
|
|
2763
4834
|
}
|
|
2764
4835
|
}
|
|
2765
4836
|
}
|
|
@@ -2776,6 +4847,7 @@ var init_tasks_review = __esm({
|
|
|
2776
4847
|
init_tasks_crud();
|
|
2777
4848
|
init_tmux_routing();
|
|
2778
4849
|
init_session_key();
|
|
4850
|
+
init_state_bus();
|
|
2779
4851
|
}
|
|
2780
4852
|
});
|
|
2781
4853
|
|
|
@@ -2790,12 +4862,12 @@ __export(worktree_exports, {
|
|
|
2790
4862
|
worktreeBranch: () => worktreeBranch,
|
|
2791
4863
|
worktreePath: () => worktreePath
|
|
2792
4864
|
});
|
|
2793
|
-
import { execSync as
|
|
2794
|
-
import { existsSync as
|
|
2795
|
-
import
|
|
4865
|
+
import { execSync as execSync7 } from "child_process";
|
|
4866
|
+
import { existsSync as existsSync14, readFileSync as readFileSync11, appendFileSync as appendFileSync2, mkdirSync as mkdirSync7, realpathSync } from "fs";
|
|
4867
|
+
import path17 from "path";
|
|
2796
4868
|
function getGitRoot(dir) {
|
|
2797
4869
|
try {
|
|
2798
|
-
const root =
|
|
4870
|
+
const root = execSync7("git rev-parse --show-toplevel", {
|
|
2799
4871
|
cwd: dir,
|
|
2800
4872
|
encoding: "utf-8",
|
|
2801
4873
|
timeout: GIT_TIMEOUT_MS,
|
|
@@ -2808,18 +4880,18 @@ function getGitRoot(dir) {
|
|
|
2808
4880
|
}
|
|
2809
4881
|
function getMainRepoRoot(dir) {
|
|
2810
4882
|
try {
|
|
2811
|
-
const commonDir =
|
|
4883
|
+
const commonDir = execSync7(
|
|
2812
4884
|
"git rev-parse --path-format=absolute --git-common-dir",
|
|
2813
4885
|
{ cwd: dir, encoding: "utf-8", timeout: GIT_TIMEOUT_MS, stdio: ["pipe", "pipe", "pipe"] }
|
|
2814
4886
|
).trim();
|
|
2815
|
-
return realpath(
|
|
4887
|
+
return realpath(path17.dirname(commonDir));
|
|
2816
4888
|
} catch {
|
|
2817
4889
|
return null;
|
|
2818
4890
|
}
|
|
2819
4891
|
}
|
|
2820
4892
|
function worktreePath(repoRoot, employeeName, instance) {
|
|
2821
4893
|
const label = instanceLabel(employeeName, instance);
|
|
2822
|
-
return
|
|
4894
|
+
return path17.join(repoRoot, ".worktrees", label);
|
|
2823
4895
|
}
|
|
2824
4896
|
function worktreeBranch(employeeName, instance) {
|
|
2825
4897
|
return `${instanceLabel(employeeName, instance)}-work`;
|
|
@@ -2832,14 +4904,14 @@ function ensureWorktree(projectDir, employeeName, instance) {
|
|
|
2832
4904
|
if (!repoRoot) return null;
|
|
2833
4905
|
const wtPath = worktreePath(repoRoot, employeeName, instance);
|
|
2834
4906
|
const branch = worktreeBranch(employeeName, instance);
|
|
2835
|
-
if (
|
|
4907
|
+
if (existsSync14(path17.join(wtPath, ".git"))) {
|
|
2836
4908
|
return wtPath;
|
|
2837
4909
|
}
|
|
2838
|
-
const worktreesDir =
|
|
2839
|
-
|
|
4910
|
+
const worktreesDir = path17.join(repoRoot, ".worktrees");
|
|
4911
|
+
mkdirSync7(worktreesDir, { recursive: true });
|
|
2840
4912
|
ensureGitignoreEntry(repoRoot, "/.worktrees/");
|
|
2841
4913
|
try {
|
|
2842
|
-
|
|
4914
|
+
execSync7("git worktree prune", {
|
|
2843
4915
|
cwd: repoRoot,
|
|
2844
4916
|
encoding: "utf-8",
|
|
2845
4917
|
timeout: GIT_TIMEOUT_MS,
|
|
@@ -2850,14 +4922,14 @@ function ensureWorktree(projectDir, employeeName, instance) {
|
|
|
2850
4922
|
const branchExists = branchExistsLocally(repoRoot, branch);
|
|
2851
4923
|
try {
|
|
2852
4924
|
if (branchExists) {
|
|
2853
|
-
|
|
4925
|
+
execSync7(`git worktree add "${wtPath}" "${branch}"`, {
|
|
2854
4926
|
cwd: repoRoot,
|
|
2855
4927
|
encoding: "utf-8",
|
|
2856
4928
|
timeout: GIT_TIMEOUT_MS,
|
|
2857
4929
|
stdio: ["pipe", "pipe", "pipe"]
|
|
2858
4930
|
});
|
|
2859
4931
|
} else {
|
|
2860
|
-
|
|
4932
|
+
execSync7(`git worktree add "${wtPath}" -b "${branch}" HEAD`, {
|
|
2861
4933
|
cwd: repoRoot,
|
|
2862
4934
|
encoding: "utf-8",
|
|
2863
4935
|
timeout: GIT_TIMEOUT_MS,
|
|
@@ -2875,7 +4947,7 @@ function ensureWorktree(projectDir, employeeName, instance) {
|
|
|
2875
4947
|
}
|
|
2876
4948
|
function isWorktreeDirty(wtPath) {
|
|
2877
4949
|
try {
|
|
2878
|
-
const status =
|
|
4950
|
+
const status = execSync7("git status --porcelain", {
|
|
2879
4951
|
cwd: wtPath,
|
|
2880
4952
|
encoding: "utf-8",
|
|
2881
4953
|
timeout: GIT_TIMEOUT_MS,
|
|
@@ -2891,7 +4963,7 @@ function cleanupWorktree(projectDir, employeeName, instance) {
|
|
|
2891
4963
|
if (!repoRoot) return { cleaned: false, reason: "not a git repo" };
|
|
2892
4964
|
const wtPath = worktreePath(repoRoot, employeeName, instance);
|
|
2893
4965
|
const branch = worktreeBranch(employeeName, instance);
|
|
2894
|
-
if (!
|
|
4966
|
+
if (!existsSync14(wtPath)) {
|
|
2895
4967
|
return { cleaned: false, reason: "worktree does not exist" };
|
|
2896
4968
|
}
|
|
2897
4969
|
if (isWorktreeDirty(wtPath)) {
|
|
@@ -2905,7 +4977,7 @@ function cleanupWorktree(projectDir, employeeName, instance) {
|
|
|
2905
4977
|
return { cleaned: false, reason: `branch ${branch} not merged into ${mainBranch}` };
|
|
2906
4978
|
}
|
|
2907
4979
|
try {
|
|
2908
|
-
|
|
4980
|
+
execSync7(`git worktree remove "${wtPath}"`, {
|
|
2909
4981
|
cwd: repoRoot,
|
|
2910
4982
|
encoding: "utf-8",
|
|
2911
4983
|
timeout: GIT_TIMEOUT_MS,
|
|
@@ -2918,7 +4990,7 @@ function cleanupWorktree(projectDir, employeeName, instance) {
|
|
|
2918
4990
|
};
|
|
2919
4991
|
}
|
|
2920
4992
|
try {
|
|
2921
|
-
|
|
4993
|
+
execSync7(`git branch -d "${branch}"`, {
|
|
2922
4994
|
cwd: repoRoot,
|
|
2923
4995
|
encoding: "utf-8",
|
|
2924
4996
|
timeout: GIT_TIMEOUT_MS,
|
|
@@ -2930,7 +5002,7 @@ function cleanupWorktree(projectDir, employeeName, instance) {
|
|
|
2930
5002
|
}
|
|
2931
5003
|
function branchExistsLocally(repoRoot, branch) {
|
|
2932
5004
|
try {
|
|
2933
|
-
|
|
5005
|
+
execSync7(`git rev-parse --verify "refs/heads/${branch}"`, {
|
|
2934
5006
|
cwd: repoRoot,
|
|
2935
5007
|
encoding: "utf-8",
|
|
2936
5008
|
timeout: GIT_TIMEOUT_MS,
|
|
@@ -2949,7 +5021,7 @@ function detectMainBranch(repoRoot) {
|
|
|
2949
5021
|
}
|
|
2950
5022
|
function isBranchMerged(repoRoot, branch, into) {
|
|
2951
5023
|
try {
|
|
2952
|
-
const merged =
|
|
5024
|
+
const merged = execSync7(`git branch --merged "${into}"`, {
|
|
2953
5025
|
cwd: repoRoot,
|
|
2954
5026
|
encoding: "utf-8",
|
|
2955
5027
|
timeout: GIT_TIMEOUT_MS,
|
|
@@ -2969,9 +5041,9 @@ function realpath(p) {
|
|
|
2969
5041
|
}
|
|
2970
5042
|
function ensureGitignoreEntry(repoRoot, entry) {
|
|
2971
5043
|
try {
|
|
2972
|
-
const gitignorePath =
|
|
2973
|
-
if (
|
|
2974
|
-
const content =
|
|
5044
|
+
const gitignorePath = path17.join(repoRoot, ".gitignore");
|
|
5045
|
+
if (existsSync14(gitignorePath)) {
|
|
5046
|
+
const content = readFileSync11(gitignorePath, "utf-8");
|
|
2975
5047
|
if (content.includes(entry)) return;
|
|
2976
5048
|
appendFileSync2(gitignorePath, `
|
|
2977
5049
|
# Agent worktrees (exe-os)
|
|
@@ -2991,8 +5063,8 @@ var init_worktree = __esm({
|
|
|
2991
5063
|
});
|
|
2992
5064
|
|
|
2993
5065
|
// src/bin/exe-session-cleanup.ts
|
|
2994
|
-
import
|
|
2995
|
-
import { execSync as
|
|
5066
|
+
import crypto7 from "crypto";
|
|
5067
|
+
import { execSync as execSync8 } from "child_process";
|
|
2996
5068
|
|
|
2997
5069
|
// src/lib/store.ts
|
|
2998
5070
|
init_memory();
|
|
@@ -3044,6 +5116,7 @@ async function getMasterKey() {
|
|
|
3044
5116
|
|
|
3045
5117
|
// src/lib/store.ts
|
|
3046
5118
|
init_config();
|
|
5119
|
+
init_state_bus();
|
|
3047
5120
|
var INIT_MAX_RETRIES = 3;
|
|
3048
5121
|
var INIT_RETRY_DELAY_MS = 1e3;
|
|
3049
5122
|
function isBusyError2(err) {
|
|
@@ -3114,6 +5187,11 @@ async function initStore(options) {
|
|
|
3114
5187
|
"version-query"
|
|
3115
5188
|
);
|
|
3116
5189
|
_nextVersion = (Number(vResult.rows[0]?.max_v) || 0) + 1;
|
|
5190
|
+
try {
|
|
5191
|
+
const { loadGlobalProcedures: loadGlobalProcedures2 } = await Promise.resolve().then(() => (init_global_procedures(), global_procedures_exports));
|
|
5192
|
+
await loadGlobalProcedures2();
|
|
5193
|
+
} catch {
|
|
5194
|
+
}
|
|
3117
5195
|
}
|
|
3118
5196
|
function classifyTier(record) {
|
|
3119
5197
|
if (record.tool_name === "commit_to_long_term_memory" && (record.importance ?? 0) >= 8) return 1;
|
|
@@ -3155,6 +5233,12 @@ async function writeMemory(record) {
|
|
|
3155
5233
|
supersedes_id: record.supersedes_id ?? null
|
|
3156
5234
|
};
|
|
3157
5235
|
_pendingRecords.push(dbRow);
|
|
5236
|
+
orgBus.emit({
|
|
5237
|
+
type: "memory_stored",
|
|
5238
|
+
agentId: record.agent_id,
|
|
5239
|
+
project: record.project_name,
|
|
5240
|
+
timestamp: record.timestamp
|
|
5241
|
+
});
|
|
3158
5242
|
const MAX_PENDING = 1e3;
|
|
3159
5243
|
if (_pendingRecords.length > MAX_PENDING) {
|
|
3160
5244
|
const dropped = _pendingRecords.length - MAX_PENDING;
|
|
@@ -3364,7 +5448,7 @@ try {
|
|
|
3364
5448
|
} catch {
|
|
3365
5449
|
}
|
|
3366
5450
|
await writeMemory({
|
|
3367
|
-
id:
|
|
5451
|
+
id: crypto7.randomUUID(),
|
|
3368
5452
|
agent_id: agentName,
|
|
3369
5453
|
agent_role: "employee",
|
|
3370
5454
|
session_id: `cleanup-${Date.now()}`,
|
|
@@ -3446,7 +5530,7 @@ try {
|
|
|
3446
5530
|
const taskList = result.rows.map((r) => `"${String(r.title)}"`).join(", ");
|
|
3447
5531
|
const msg = `session-ended: ${agentName} session terminated unexpectedly. ${count} task(s) marked blocked: ${taskList}`;
|
|
3448
5532
|
try {
|
|
3449
|
-
|
|
5533
|
+
execSync8(`tmux send-keys -t ${JSON.stringify(exeSession)} ${JSON.stringify(msg)} Enter`, {
|
|
3450
5534
|
timeout: 3e3
|
|
3451
5535
|
});
|
|
3452
5536
|
} catch {
|