@askexenow/exe-os 0.9.161 → 0.9.162
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/{chunk-NP55D5Q6.js → chunk-A4NCK74X.js} +1 -1
- package/dist/{chunk-BZYHF63H.js → chunk-RLHQMWLV.js} +7 -3
- package/dist/{daemon-orchestration-47D3OQQV.js → daemon-orchestration-4D2UNHKZ.js} +1 -1
- package/dist/hooks/session-end.js +18 -0
- package/dist/lib/exe-daemon.js +10 -9
- package/dist/mcp/register-tools.js +2 -2
- package/dist/mcp/server.js +2 -2
- package/package.json +1 -1
- package/release-notes.json +90 -90
|
@@ -1119,12 +1119,13 @@ function reapZombieAgentProcesses(deps) {
|
|
|
1119
1119
|
const reaped = [];
|
|
1120
1120
|
const procMap = /* @__PURE__ */ new Map();
|
|
1121
1121
|
for (const line of lines) {
|
|
1122
|
-
const match = line.trim().match(/^(\d+)\s+(\d+)\s+(\S+)\s+(.+)$/);
|
|
1122
|
+
const match = line.trim().match(/^(\d+)\s+(\d+)\s+(\S+)\s+(\S+)\s+(.+)$/);
|
|
1123
1123
|
if (!match) continue;
|
|
1124
1124
|
procMap.set(parseInt(match[1], 10), {
|
|
1125
1125
|
ppid: parseInt(match[2], 10),
|
|
1126
1126
|
etime: match[3],
|
|
1127
|
-
|
|
1127
|
+
tty: match[4],
|
|
1128
|
+
args: match[5]
|
|
1128
1129
|
});
|
|
1129
1130
|
}
|
|
1130
1131
|
const AGENT_PATTERNS = [
|
|
@@ -1141,6 +1142,9 @@ function reapZombieAgentProcesses(deps) {
|
|
|
1141
1142
|
if (!isAgent) continue;
|
|
1142
1143
|
const ageSecs = parseEtime(info.etime);
|
|
1143
1144
|
if (ageSecs < ZOMBIE_AGENT_MAX_AGE_SECS) continue;
|
|
1145
|
+
if (info.tty !== "??" && info.tty !== "-") continue;
|
|
1146
|
+
const wrapperInfo = procMap.get(info.ppid);
|
|
1147
|
+
if (wrapperInfo && wrapperInfo.tty !== "??" && wrapperInfo.tty !== "-") continue;
|
|
1144
1148
|
let hasLiveSession = false;
|
|
1145
1149
|
let cur = info.ppid;
|
|
1146
1150
|
for (let depth = 0; depth < 5; depth++) {
|
|
@@ -1222,7 +1226,7 @@ function getRssKb(pid) {
|
|
|
1222
1226
|
function createZombieAgentReaperRealDeps() {
|
|
1223
1227
|
return {
|
|
1224
1228
|
listProcesses: () => {
|
|
1225
|
-
const output = execSync("ps -eo pid,ppid,etime,args", {
|
|
1229
|
+
const output = execSync("ps -eo pid,ppid,etime,tty,args", {
|
|
1226
1230
|
encoding: "utf8",
|
|
1227
1231
|
timeout: 5e3
|
|
1228
1232
|
});
|
|
@@ -70,6 +70,24 @@ process.stdin.on("end", async () => {
|
|
|
70
70
|
}
|
|
71
71
|
const data = JSON.parse(input);
|
|
72
72
|
const agent = getActiveAgent();
|
|
73
|
+
try {
|
|
74
|
+
const { appendFileSync } = await import("fs");
|
|
75
|
+
const { join } = await import("path");
|
|
76
|
+
const { homedir } = await import("os");
|
|
77
|
+
const deathLog = join(homedir(), ".exe-os", "session-deaths.log");
|
|
78
|
+
const entry = JSON.stringify({
|
|
79
|
+
ts: (/* @__PURE__ */ new Date()).toISOString(),
|
|
80
|
+
agent: agent.agentId,
|
|
81
|
+
role: agent.agentRole,
|
|
82
|
+
session: data.session_id,
|
|
83
|
+
project: process.env.EXE_PROJECT_NAME ?? process.cwd().split("/").pop() ?? "unknown",
|
|
84
|
+
tty: process.env.TTY ?? process.env.GPG_TTY ?? "unknown",
|
|
85
|
+
pid: process.pid,
|
|
86
|
+
ppid: process.ppid
|
|
87
|
+
});
|
|
88
|
+
appendFileSync(deathLog, entry + "\n");
|
|
89
|
+
} catch {
|
|
90
|
+
}
|
|
73
91
|
if (agent.agentId !== "default") {
|
|
74
92
|
try {
|
|
75
93
|
const { fastDbInit } = await import("../fast-db-init-FLMQJFDI.js");
|
package/dist/lib/exe-daemon.js
CHANGED
|
@@ -1337,8 +1337,9 @@ async function startMcpHttpServer() {
|
|
|
1337
1337
|
}, evictDuplicateMcpSessions2 = function(ownerKey, keepSid) {
|
|
1338
1338
|
for (const [sid, existingOwner] of sessionOwnerKeys.entries()) {
|
|
1339
1339
|
if (sid !== keepSid && existingOwner === ownerKey) {
|
|
1340
|
+
const age = sessionLastSeen.has(sid) ? Math.round((Date.now() - sessionLastSeen.get(sid)) / 1e3) : -1;
|
|
1340
1341
|
closeMcpSession2(sid, "duplicate_session_eviction");
|
|
1341
|
-
process.stderr.write(`[exed] MCP duplicate session eviction: closed ${sid.slice(0, 8)} for ${ownerKey}
|
|
1342
|
+
process.stderr.write(`[exed] MCP duplicate session eviction: closed ${sid.slice(0, 8)} for ${ownerKey} (age=${age}s, replaced by ${keepSid?.slice(0, 8) ?? "none"})
|
|
1342
1343
|
`);
|
|
1343
1344
|
}
|
|
1344
1345
|
}
|
|
@@ -2055,7 +2056,7 @@ function startSessionTTL() {
|
|
|
2055
2056
|
if (!await ensureStoreForPolling()) return;
|
|
2056
2057
|
try {
|
|
2057
2058
|
const { getClient: getClient2 } = await import("./database.js");
|
|
2058
|
-
const { checkSessionTTL, createSessionTTLRealDeps } = await import("../daemon-orchestration-
|
|
2059
|
+
const { checkSessionTTL, createSessionTTLRealDeps } = await import("../daemon-orchestration-4D2UNHKZ.js");
|
|
2059
2060
|
const deps = createSessionTTLRealDeps(getClient2);
|
|
2060
2061
|
const killed = await checkSessionTTL(deps);
|
|
2061
2062
|
if (killed.length > 0) acted("session_ttl");
|
|
@@ -2084,7 +2085,7 @@ function startCooAutoRestart() {
|
|
|
2084
2085
|
_cooLastSeen = Date.now();
|
|
2085
2086
|
try {
|
|
2086
2087
|
const { getClient: getClient2 } = await import("./database.js");
|
|
2087
|
-
const { pollCoordinatorContextRestart, createCoordinatorRestartRealDeps } = await import("../daemon-orchestration-
|
|
2088
|
+
const { pollCoordinatorContextRestart, createCoordinatorRestartRealDeps } = await import("../daemon-orchestration-4D2UNHKZ.js");
|
|
2088
2089
|
const deps = createCoordinatorRestartRealDeps(getClient2);
|
|
2089
2090
|
const restarted = await pollCoordinatorContextRestart(deps, process.cwd());
|
|
2090
2091
|
if (restarted.length > 0) {
|
|
@@ -2202,7 +2203,7 @@ function startIdleKill() {
|
|
|
2202
2203
|
const { loadConfigSync } = await import("./config.js");
|
|
2203
2204
|
const cfg = loadConfigSync();
|
|
2204
2205
|
const { getClient: getClient2 } = await import("./database.js");
|
|
2205
|
-
const { pollIdleKill, createIdleKillRealDeps } = await import("../daemon-orchestration-
|
|
2206
|
+
const { pollIdleKill, createIdleKillRealDeps } = await import("../daemon-orchestration-4D2UNHKZ.js");
|
|
2206
2207
|
const deps = createIdleKillRealDeps(
|
|
2207
2208
|
getClient2,
|
|
2208
2209
|
cfg.sessionLifecycle.idleKillIntercomAckWindowMs
|
|
@@ -2746,7 +2747,7 @@ function startOrphanReaper() {
|
|
|
2746
2747
|
const tick = async () => {
|
|
2747
2748
|
fired("orphan_reaper");
|
|
2748
2749
|
try {
|
|
2749
|
-
const { reapOrphanedMcpProcesses, createOrphanReaperRealDeps } = await import("../daemon-orchestration-
|
|
2750
|
+
const { reapOrphanedMcpProcesses, createOrphanReaperRealDeps } = await import("../daemon-orchestration-4D2UNHKZ.js");
|
|
2750
2751
|
const deps = createOrphanReaperRealDeps();
|
|
2751
2752
|
const reaped = await reapOrphanedMcpProcesses(deps);
|
|
2752
2753
|
if (reaped.length > 0) acted("orphan_reaper");
|
|
@@ -2770,7 +2771,7 @@ function startZombieAgentReaper() {
|
|
|
2770
2771
|
const tick = async () => {
|
|
2771
2772
|
fired("zombie_agent_reaper");
|
|
2772
2773
|
try {
|
|
2773
|
-
const { reapZombieAgentProcesses, createZombieAgentReaperRealDeps } = await import("../daemon-orchestration-
|
|
2774
|
+
const { reapZombieAgentProcesses, createZombieAgentReaperRealDeps } = await import("../daemon-orchestration-4D2UNHKZ.js");
|
|
2774
2775
|
const deps = createZombieAgentReaperRealDeps();
|
|
2775
2776
|
const reaped = reapZombieAgentProcesses(deps);
|
|
2776
2777
|
if (reaped.length > 0) acted("zombie_agent_reaper");
|
|
@@ -2793,7 +2794,7 @@ function startWorktreeReaper() {
|
|
|
2793
2794
|
const tick = async () => {
|
|
2794
2795
|
fired("worktree_reaper");
|
|
2795
2796
|
try {
|
|
2796
|
-
const { reapOrphanedWorktrees, createWorktreeReaperRealDeps } = await import("../daemon-orchestration-
|
|
2797
|
+
const { reapOrphanedWorktrees, createWorktreeReaperRealDeps } = await import("../daemon-orchestration-4D2UNHKZ.js");
|
|
2797
2798
|
const deps = await createWorktreeReaperRealDeps();
|
|
2798
2799
|
const result = await reapOrphanedWorktrees(deps);
|
|
2799
2800
|
if (result.pruned.length > 0) {
|
|
@@ -2824,7 +2825,7 @@ function startAutoWake() {
|
|
|
2824
2825
|
if (!await ensureStoreForPolling()) return;
|
|
2825
2826
|
try {
|
|
2826
2827
|
const { getClient: getClient2 } = await import("./database.js");
|
|
2827
|
-
const { pollOrphanedTasks, createAutoWakeRealDeps } = await import("../daemon-orchestration-
|
|
2828
|
+
const { pollOrphanedTasks, createAutoWakeRealDeps } = await import("../daemon-orchestration-4D2UNHKZ.js");
|
|
2828
2829
|
const deps = createAutoWakeRealDeps(getClient2, process.cwd());
|
|
2829
2830
|
const woken = await pollOrphanedTasks(deps);
|
|
2830
2831
|
if (woken.length > 0) acted("auto_wake");
|
|
@@ -2933,7 +2934,7 @@ function startStuckTaskRelease() {
|
|
|
2933
2934
|
if (!await ensureStoreForPolling()) return;
|
|
2934
2935
|
try {
|
|
2935
2936
|
const { getClient: getClient2 } = await import("./database.js");
|
|
2936
|
-
const { releaseStuckTasks, createStuckTaskRealDeps } = await import("../daemon-orchestration-
|
|
2937
|
+
const { releaseStuckTasks, createStuckTaskRealDeps } = await import("../daemon-orchestration-4D2UNHKZ.js");
|
|
2937
2938
|
const deps = createStuckTaskRealDeps(getClient2);
|
|
2938
2939
|
const released = await releaseStuckTasks(deps);
|
|
2939
2940
|
if (released.length > 0) {
|
package/dist/mcp/server.js
CHANGED
|
@@ -3,8 +3,8 @@ import {
|
|
|
3
3
|
} from "../chunk-V4TZI6EO.js";
|
|
4
4
|
import {
|
|
5
5
|
registerAllTools
|
|
6
|
-
} from "../chunk-
|
|
7
|
-
import "../chunk-
|
|
6
|
+
} from "../chunk-A4NCK74X.js";
|
|
7
|
+
import "../chunk-RLHQMWLV.js";
|
|
8
8
|
import "../chunk-ESRI7MFI.js";
|
|
9
9
|
import {
|
|
10
10
|
initLicenseGate
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askexenow/exe-os",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.162",
|
|
4
4
|
"description": "AI employee operating system — persistent memory, task management, and multi-agent coordination for Claude Code.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE",
|
|
6
6
|
"type": "module",
|
package/release-notes.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
|
-
"current": "0.9.
|
|
2
|
+
"current": "0.9.162",
|
|
3
3
|
"notes": {
|
|
4
|
-
"0.9.
|
|
5
|
-
"version": "0.9.
|
|
4
|
+
"0.9.162": {
|
|
5
|
+
"version": "0.9.162",
|
|
6
6
|
"date": "2026-05-30",
|
|
7
7
|
"features": [
|
|
8
8
|
"add worktree reaper daemon job to prune orphaned agent worktrees",
|
|
@@ -32,6 +32,7 @@
|
|
|
32
32
|
"blocked task notification — ping dispatcher immediately on status change"
|
|
33
33
|
],
|
|
34
34
|
"fixes": [
|
|
35
|
+
"zombie reaper must never kill TTY-attached sessions + death log",
|
|
35
36
|
"update readiness gate to check daemon-restart-orchestrator",
|
|
36
37
|
"resolve TS errors blocking publish — unused import + undefined row",
|
|
37
38
|
"zombie agent reaper + deferred daemon restart (OOM crash fix)",
|
|
@@ -55,8 +56,7 @@
|
|
|
55
56
|
"DMR retrieval 20% → 100% — stop words, name filtering, speaker fix",
|
|
56
57
|
"kill idle Codex/OpenCode sessions instead of sending intercom — enables auto-wake respawn",
|
|
57
58
|
"suppress daemon auto-reconnect noise — only log after attempt 2+",
|
|
58
|
-
"remove E2EE from bug reports — support intake must be readable server-side"
|
|
59
|
-
"support API — verified encrypted bug reports work (HTTP 201)"
|
|
59
|
+
"remove E2EE from bug reports — support intake must be readable server-side"
|
|
60
60
|
],
|
|
61
61
|
"security": [
|
|
62
62
|
"fix shell injection, SSRF, socket leaks, backup validation",
|
|
@@ -104,10 +104,12 @@
|
|
|
104
104
|
"exe-daemon.ts kills old embed.pid process and cleans up"
|
|
105
105
|
]
|
|
106
106
|
},
|
|
107
|
-
"0.9.
|
|
108
|
-
"version": "0.9.
|
|
107
|
+
"0.9.161": {
|
|
108
|
+
"version": "0.9.161",
|
|
109
109
|
"date": "2026-05-30",
|
|
110
110
|
"features": [
|
|
111
|
+
"add worktree reaper daemon job to prune orphaned agent worktrees",
|
|
112
|
+
"add pre-flight gates to close_task — status gate, worktree check, commit recency",
|
|
111
113
|
"add wiki document ingestion via API for embedding pipeline",
|
|
112
114
|
"add filtered.* projection targets to projection worker",
|
|
113
115
|
"verify-stack post-deploy checks — 8 runtime validations",
|
|
@@ -130,11 +132,14 @@
|
|
|
130
132
|
"update safety + portable backups + restore",
|
|
131
133
|
"complete deployment readiness — all 14 second-pass blind spots fixed",
|
|
132
134
|
"production-ready stack — all 15 blind spots fixed",
|
|
133
|
-
"blocked task notification — ping dispatcher immediately on status change"
|
|
134
|
-
"self-improving skills — usage tracking, success counting, and refinement daemon",
|
|
135
|
-
"4 retrieval improvements — query expansion, stop words, contradiction resolution, abstention"
|
|
135
|
+
"blocked task notification — ping dispatcher immediately on status change"
|
|
136
136
|
],
|
|
137
137
|
"fixes": [
|
|
138
|
+
"update readiness gate to check daemon-restart-orchestrator",
|
|
139
|
+
"resolve TS errors blocking publish — unused import + undefined row",
|
|
140
|
+
"zombie agent reaper + deferred daemon restart (OOM crash fix)",
|
|
141
|
+
"idle-kill now reaps Codex/OpenCode sessions (bug 47d1e446)",
|
|
142
|
+
"change orphaned task terminal state from blocked → needs_review",
|
|
138
143
|
"auto-close temporal guard + session_scope fallback + orphan cleanup safety",
|
|
139
144
|
"cloud sync skip-bad-rows + age-based orphan hook reaper",
|
|
140
145
|
"clean unused imports + publish gate fixes for v0.9.159",
|
|
@@ -154,12 +159,7 @@
|
|
|
154
159
|
"kill idle Codex/OpenCode sessions instead of sending intercom — enables auto-wake respawn",
|
|
155
160
|
"suppress daemon auto-reconnect noise — only log after attempt 2+",
|
|
156
161
|
"remove E2EE from bug reports — support intake must be readable server-side",
|
|
157
|
-
"support API — verified encrypted bug reports work (HTTP 201)"
|
|
158
|
-
"support API accepts encrypted bug reports — prevents HTTP 400",
|
|
159
|
-
"Codex agents recheck tasks before stopping — prevents idle-with-open-tasks",
|
|
160
|
-
"P0 #13 session_scope in cleanup SELECT + P0 #6 wire review signal files",
|
|
161
|
-
"add scope import to prompt-submit — gate pass",
|
|
162
|
-
"add writeFileSync import to config.ts"
|
|
162
|
+
"support API — verified encrypted bug reports work (HTTP 201)"
|
|
163
163
|
],
|
|
164
164
|
"security": [
|
|
165
165
|
"fix shell injection, SSRF, socket leaks, backup validation",
|
|
@@ -207,10 +207,12 @@
|
|
|
207
207
|
"exe-daemon.ts kills old embed.pid process and cleans up"
|
|
208
208
|
]
|
|
209
209
|
},
|
|
210
|
-
"0.9.
|
|
211
|
-
"version": "0.9.
|
|
212
|
-
"date": "2026-05-
|
|
210
|
+
"0.9.160": {
|
|
211
|
+
"version": "0.9.160",
|
|
212
|
+
"date": "2026-05-30",
|
|
213
213
|
"features": [
|
|
214
|
+
"add wiki document ingestion via API for embedding pipeline",
|
|
215
|
+
"add filtered.* projection targets to projection worker",
|
|
214
216
|
"verify-stack post-deploy checks — 8 runtime validations",
|
|
215
217
|
"preflight deploy gate + filtered schema + gateway graceful degradation",
|
|
216
218
|
"harden /exe-afk as primary monitoring tool, deprecate /loop for orchestration",
|
|
@@ -233,16 +235,12 @@
|
|
|
233
235
|
"production-ready stack — all 15 blind spots fixed",
|
|
234
236
|
"blocked task notification — ping dispatcher immediately on status change",
|
|
235
237
|
"self-improving skills — usage tracking, success counting, and refinement daemon",
|
|
236
|
-
"4 retrieval improvements — query expansion, stop words, contradiction resolution, abstention"
|
|
237
|
-
"competitive roadmap — serverless tier, identity depth, self-improving skills, user modeling",
|
|
238
|
-
"run database migrations before container swap in stack-update"
|
|
238
|
+
"4 retrieval improvements — query expansion, stop words, contradiction resolution, abstention"
|
|
239
239
|
],
|
|
240
240
|
"fixes": [
|
|
241
|
-
"
|
|
242
|
-
"
|
|
243
|
-
"
|
|
244
|
-
"orphan task file cleanup safety — 24h threshold (was 1h) + ID-based fallback before deleting",
|
|
245
|
-
"blocked task escalation — writeNotification to COO when auto-wake fails 3x and marks task blocked",
|
|
241
|
+
"auto-close temporal guard + session_scope fallback + orphan cleanup safety",
|
|
242
|
+
"cloud sync skip-bad-rows + age-based orphan hook reaper",
|
|
243
|
+
"clean unused imports + publish gate fixes for v0.9.159",
|
|
246
244
|
"daemon memory cascade — prevent duplicate daemons, reap orphan hooks, cap heap",
|
|
247
245
|
"auto-inject timeout on tmux capture-pane to prevent session freeze",
|
|
248
246
|
"auto-wake crash loop — filter boot memories + circuit breaker",
|
|
@@ -262,7 +260,9 @@
|
|
|
262
260
|
"support API — verified encrypted bug reports work (HTTP 201)",
|
|
263
261
|
"support API accepts encrypted bug reports — prevents HTTP 400",
|
|
264
262
|
"Codex agents recheck tasks before stopping — prevents idle-with-open-tasks",
|
|
265
|
-
"P0 #13 session_scope in cleanup SELECT + P0 #6 wire review signal files"
|
|
263
|
+
"P0 #13 session_scope in cleanup SELECT + P0 #6 wire review signal files",
|
|
264
|
+
"add scope import to prompt-submit — gate pass",
|
|
265
|
+
"add writeFileSync import to config.ts"
|
|
266
266
|
],
|
|
267
267
|
"security": [
|
|
268
268
|
"fix shell injection, SSRF, socket leaks, backup validation",
|
|
@@ -279,6 +279,8 @@
|
|
|
279
279
|
"fix 4 pricing tier bypass vulnerabilities (audit F1-F4)"
|
|
280
280
|
],
|
|
281
281
|
"other": [
|
|
282
|
+
"bump v0.9.160 — cloud sync resilience + orphan reaper + auto-close guard",
|
|
283
|
+
"update release notes with 5 bug fixes from support triage",
|
|
282
284
|
"bump v0.9.159 — daemon memory cascade fix + session_scope + benchmarks",
|
|
283
285
|
"arch: customer onboarding automation — exe-os deploy-customer command",
|
|
284
286
|
"arch: Fleet Operations Roadmap — 8 phases for production safety at scale",
|
|
@@ -301,19 +303,33 @@
|
|
|
301
303
|
"publish v0.9.144 — ESM require() fix + reliable task signals + OAuth 2.1",
|
|
302
304
|
"add MCP tool tests for message, cloud-sync, and file-copy",
|
|
303
305
|
"add coverage for send_message, cloud_sync, file_copy MCP tools (Track A)",
|
|
304
|
-
"Recover MCP sessions after daemon restart"
|
|
305
|
-
"publish v0.9.143 — all fixes live",
|
|
306
|
-
"publish v0.9.142"
|
|
306
|
+
"Recover MCP sessions after daemon restart"
|
|
307
307
|
],
|
|
308
308
|
"migration_notes": [
|
|
309
309
|
"If daemon goes down, agents will now fail instead of silently",
|
|
310
310
|
"exe-daemon.ts kills old embed.pid process and cleans up"
|
|
311
311
|
]
|
|
312
312
|
},
|
|
313
|
-
"0.9.
|
|
314
|
-
"version": "0.9.
|
|
315
|
-
"date": "2026-05-
|
|
313
|
+
"0.9.159": {
|
|
314
|
+
"version": "0.9.159",
|
|
315
|
+
"date": "2026-05-29",
|
|
316
316
|
"features": [
|
|
317
|
+
"verify-stack post-deploy checks — 8 runtime validations",
|
|
318
|
+
"preflight deploy gate + filtered schema + gateway graceful degradation",
|
|
319
|
+
"harden /exe-afk as primary monitoring tool, deprecate /loop for orchestration",
|
|
320
|
+
"add --judge-model flag to LoCoMo harness",
|
|
321
|
+
"dashboard.askexe.com — customer credits dashboard (backend + frontend)",
|
|
322
|
+
"config persistence contract — document + enforce what survives stack updates",
|
|
323
|
+
"add persona depth to identity — tone, vocabulary, response_style, communication_patterns",
|
|
324
|
+
"4 BEAM improvements — o4-mini judge, entity expansion, temporal prompts, contradiction detection",
|
|
325
|
+
"DMR 100% + BEAM 35% — full results with Claude Sonnet judge",
|
|
326
|
+
"session_scope read paths — search filter + backfill + tests",
|
|
327
|
+
"add session_scope filtering to memory read paths + MCP tools + backfill",
|
|
328
|
+
"classify prompt memories as conversation type + enrich session-end captures",
|
|
329
|
+
"add session_scope column to memories table — schema migration + all write paths",
|
|
330
|
+
"fix Codex integration + add --codex to all 4 harnesses",
|
|
331
|
+
"add checkpoint/resume support for long LoCoMo runs",
|
|
332
|
+
"add Codex GPT-5.5 judge, pre-embedding, expanded retrieval, production prompts",
|
|
317
333
|
"stack manifest 0.9.10 — all new images for customer deployment",
|
|
318
334
|
"update safety + portable backups + restore",
|
|
319
335
|
"complete deployment readiness — all 14 second-pass blind spots fixed",
|
|
@@ -322,50 +338,34 @@
|
|
|
322
338
|
"self-improving skills — usage tracking, success counting, and refinement daemon",
|
|
323
339
|
"4 retrieval improvements — query expansion, stop words, contradiction resolution, abstention",
|
|
324
340
|
"competitive roadmap — serverless tier, identity depth, self-improving skills, user modeling",
|
|
325
|
-
"run database migrations before container swap in stack-update"
|
|
326
|
-
"graph auto-extract from ARCHITECTURE.md — regex-based entity/relationship extraction",
|
|
327
|
-
"migrate cloud.askexe.com → api.askexe.com as canonical endpoint",
|
|
328
|
-
"federated recall — code_context + graph fallback when memory results weak",
|
|
329
|
-
"migrate cloud.askexe.com → api.askexe.com across all src/ defaults",
|
|
330
|
-
"rolling restart in stack-update — one service at a time with health verification",
|
|
331
|
-
"DMR benchmark harness + LoCoMo improvements for v0.9.145 evaluation",
|
|
332
|
-
"Windows/WSL support — WezTerm config + WSL detection in setup wizard",
|
|
333
|
-
"queryTaskRows() consolidation — single scoped query path for all task list operations",
|
|
334
|
-
"review signal files — reliable reviewer notification on update_task(done)",
|
|
335
|
-
"Ghostty-native notifications via OSC 9 — no more Script Editor popup",
|
|
336
|
-
"device-scoped behaviors — device_id column + filter in loading",
|
|
337
|
-
"dispatch reliability — 45s boot timeout, dispatch ack signals, agent heartbeat",
|
|
338
|
-
"setup wizard headless mode + daemon health check after restart",
|
|
339
|
-
"device-scoped behaviors — add device_id column + filter on load",
|
|
340
|
-
"gateway prompt injection defense — 3-tier security hardening",
|
|
341
|
-
"add diagnostics(action=\"merge_agent_memories\") for reassigning memories across agent IDs"
|
|
341
|
+
"run database migrations before container swap in stack-update"
|
|
342
342
|
],
|
|
343
343
|
"fixes": [
|
|
344
|
+
"cloud sync NOT NULL resilience — sqlSafeRequired() defaults + per-record error handling, skip bad rows instead of retry storm",
|
|
345
|
+
"auto-close temporal guard — reject commits older than task creation date, raise threshold 0.6→0.8",
|
|
346
|
+
"session_scope fallback — listTasks returns unscoped results when scoped query finds 0 after daemon restart",
|
|
347
|
+
"orphan task file cleanup safety — 24h threshold (was 1h) + ID-based fallback before deleting",
|
|
348
|
+
"blocked task escalation — writeNotification to COO when auto-wake fails 3x and marks task blocked",
|
|
349
|
+
"daemon memory cascade — prevent duplicate daemons, reap orphan hooks, cap heap",
|
|
350
|
+
"auto-inject timeout on tmux capture-pane to prevent session freeze",
|
|
351
|
+
"auto-wake crash loop — filter boot memories + circuit breaker",
|
|
352
|
+
"Codex numbered instances use baseAgentName for identity resolution",
|
|
353
|
+
"auto-chain project scope + writeNotification on needs_review",
|
|
354
|
+
"persist WhatsApp auth in Docker volume — prevent data loss on update",
|
|
355
|
+
"wake idle codex sessions on pending tasks",
|
|
356
|
+
"fix daemon MCP session heap leak",
|
|
357
|
+
"include typescript as runtime dependency",
|
|
358
|
+
"remove direct Postgres license validation — CF Worker is the only path",
|
|
359
|
+
"gateway stop_grace_period 45s — prevent SIGKILL during message drain",
|
|
360
|
+
"filter person names from FTS queries to prevent speaker-prefix pollution",
|
|
361
|
+
"DMR retrieval 20% → 100% — stop words, name filtering, speaker fix",
|
|
362
|
+
"kill idle Codex/OpenCode sessions instead of sending intercom — enables auto-wake respawn",
|
|
363
|
+
"suppress daemon auto-reconnect noise — only log after attempt 2+",
|
|
364
|
+
"remove E2EE from bug reports — support intake must be readable server-side",
|
|
344
365
|
"support API — verified encrypted bug reports work (HTTP 201)",
|
|
345
366
|
"support API accepts encrypted bug reports — prevents HTTP 400",
|
|
346
367
|
"Codex agents recheck tasks before stopping — prevents idle-with-open-tasks",
|
|
347
|
-
"P0 #13 session_scope in cleanup SELECT + P0 #6 wire review signal files"
|
|
348
|
-
"add scope import to prompt-submit — gate pass",
|
|
349
|
-
"add writeFileSync import to config.ts",
|
|
350
|
-
"persist cloud endpoint migration to config.json — stop logging on every boot",
|
|
351
|
-
"include memory_type in pushToPostgres metadata — was stripped on sync",
|
|
352
|
-
"add scope import to daemon-orchestration — satisfies customer-readiness gate",
|
|
353
|
-
"skill-refinement.ts — correct writeMemory field names + updateIdentity 3rd arg",
|
|
354
|
-
"make skill lifecycle fields optional on Behavior interface — unblocks publish",
|
|
355
|
-
"session isolation for tmux kill — block cross-scope session kills",
|
|
356
|
-
"session-scope daemon, push, capacity, and cleanup (P0 #7-#13)",
|
|
357
|
-
"add memory_type to crdt-sync MemoryRecord interface — unblocks publish",
|
|
358
|
-
"session-scope daemon, push, capacity, cleanup (P0 #7-#9, #13)",
|
|
359
|
-
"include memory_type in cloud sync push/pull + fix backfill re-sync",
|
|
360
|
-
"session-scope signal file system — prevent cross-session task/review bleed",
|
|
361
|
-
"session-scope notification routing — use row.session_scope over ambient",
|
|
362
|
-
"daemon NEVER guesses session from tmux — header-only routing",
|
|
363
|
-
"3 daemon bugs — context-full TTL override, API watchdog kill-after-3, idle-kill verify",
|
|
364
|
-
"federated recall always searches code_context + graph — count threshold was useless",
|
|
365
|
-
"make cross-repo guardrail task-aware — allow multi-repo work when task scope permits",
|
|
366
|
-
"ONE postgres — replace crm-postgres with exe-db across entire stack",
|
|
367
|
-
"smart session-scoping gate + last boot cleanup leak + triage_bug docs",
|
|
368
|
-
"add shipped_version to support triage + clean platform procedures"
|
|
368
|
+
"P0 #13 session_scope in cleanup SELECT + P0 #6 wire review signal files"
|
|
369
369
|
],
|
|
370
370
|
"security": [
|
|
371
371
|
"fix shell injection, SSRF, socket leaks, backup validation",
|
|
@@ -382,6 +382,13 @@
|
|
|
382
382
|
"fix 4 pricing tier bypass vulnerabilities (audit F1-F4)"
|
|
383
383
|
],
|
|
384
384
|
"other": [
|
|
385
|
+
"bump v0.9.159 — daemon memory cascade fix + session_scope + benchmarks",
|
|
386
|
+
"arch: customer onboarding automation — exe-os deploy-customer command",
|
|
387
|
+
"arch: Fleet Operations Roadmap — 8 phases for production safety at scale",
|
|
388
|
+
"arch: add filtered table pipeline + pre-flight deploy system to roadmap",
|
|
389
|
+
"add EXE-OS-STACK.md — complete 6-repo deployment map",
|
|
390
|
+
"cache tmux session (5 calls → 1) + offset daemon timers",
|
|
391
|
+
"cut agent boot from 4min to <30s — merge Bash blocks + parallel DB queries",
|
|
385
392
|
"rename memory schema → graph across codebase",
|
|
386
393
|
"unified access control — admin token + GoTrue across all services",
|
|
387
394
|
"capture data pipeline spec — raw → filter → wiki + CRM projection",
|
|
@@ -399,24 +406,18 @@
|
|
|
399
406
|
"add coverage for send_message, cloud_sync, file_copy MCP tools (Track A)",
|
|
400
407
|
"Recover MCP sessions after daemon restart",
|
|
401
408
|
"publish v0.9.143 — all fixes live",
|
|
402
|
-
"publish v0.9.142"
|
|
403
|
-
"publish v0.9.141",
|
|
404
|
-
"ops: journalctl rotation + certbot expiry alerting",
|
|
405
|
-
"revert: daemon heap back to 33% of RAM — no artificial cap",
|
|
406
|
-
"v0.9.140 publish + heap cap 4GB (was 33% unbounded)",
|
|
407
|
-
"PG-1 cross-repo entity federation design document",
|
|
408
|
-
"add lint step + automated npm publish workflow",
|
|
409
|
-
"audit: scoped SQL + package budget + TUI vendored + TODO classification"
|
|
409
|
+
"publish v0.9.142"
|
|
410
410
|
],
|
|
411
411
|
"migration_notes": [
|
|
412
412
|
"If daemon goes down, agents will now fail instead of silently",
|
|
413
413
|
"exe-daemon.ts kills old embed.pid process and cleans up"
|
|
414
414
|
]
|
|
415
415
|
},
|
|
416
|
-
"0.9.
|
|
417
|
-
"version": "0.9.
|
|
416
|
+
"0.9.158": {
|
|
417
|
+
"version": "0.9.158",
|
|
418
418
|
"date": "2026-05-28",
|
|
419
419
|
"features": [
|
|
420
|
+
"stack manifest 0.9.10 — all new images for customer deployment",
|
|
420
421
|
"update safety + portable backups + restore",
|
|
421
422
|
"complete deployment readiness — all 14 second-pass blind spots fixed",
|
|
422
423
|
"production-ready stack — all 15 blind spots fixed",
|
|
@@ -440,10 +441,13 @@
|
|
|
440
441
|
"setup wizard headless mode + daemon health check after restart",
|
|
441
442
|
"device-scoped behaviors — add device_id column + filter on load",
|
|
442
443
|
"gateway prompt injection defense — 3-tier security hardening",
|
|
443
|
-
"add diagnostics(action=\"merge_agent_memories\") for reassigning memories across agent IDs"
|
|
444
|
-
"add task dependency tree visualization (action=dependency_tree)"
|
|
444
|
+
"add diagnostics(action=\"merge_agent_memories\") for reassigning memories across agent IDs"
|
|
445
445
|
],
|
|
446
446
|
"fixes": [
|
|
447
|
+
"support API — verified encrypted bug reports work (HTTP 201)",
|
|
448
|
+
"support API accepts encrypted bug reports — prevents HTTP 400",
|
|
449
|
+
"Codex agents recheck tasks before stopping — prevents idle-with-open-tasks",
|
|
450
|
+
"P0 #13 session_scope in cleanup SELECT + P0 #6 wire review signal files",
|
|
447
451
|
"add scope import to prompt-submit — gate pass",
|
|
448
452
|
"add writeFileSync import to config.ts",
|
|
449
453
|
"persist cloud endpoint migration to config.json — stop logging on every boot",
|
|
@@ -464,11 +468,7 @@
|
|
|
464
468
|
"make cross-repo guardrail task-aware — allow multi-repo work when task scope permits",
|
|
465
469
|
"ONE postgres — replace crm-postgres with exe-db across entire stack",
|
|
466
470
|
"smart session-scoping gate + last boot cleanup leak + triage_bug docs",
|
|
467
|
-
"add shipped_version to support triage + clean platform procedures"
|
|
468
|
-
"close remaining session-scoping findings from Bob's audit",
|
|
469
|
-
"close 3 more session-scoping leaks from Bob's audit (LEAK-4, LEAK-7, LEAK-8)",
|
|
470
|
-
"diagnostics check_update ENOENT + healthcheck timeout",
|
|
471
|
-
"close 8 session-scoping leaks — daemon ALS trust + review cleanup + close-task + inbox"
|
|
471
|
+
"add shipped_version to support triage + clean platform procedures"
|
|
472
472
|
],
|
|
473
473
|
"security": [
|
|
474
474
|
"fix shell injection, SSRF, socket leaks, backup validation",
|