@askexenow/exe-os 0.9.162 → 0.9.163
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/deferred-daemon-restart.js +21 -1
- package/dist/bin/install.js +35 -1
- package/package.json +1 -1
- package/release-notes.json +83 -83
|
@@ -5,12 +5,32 @@ import {
|
|
|
5
5
|
import "../chunk-MLKGABMK.js";
|
|
6
6
|
|
|
7
7
|
// src/bin/deferred-daemon-restart.ts
|
|
8
|
-
import { existsSync, openSync, closeSync } from "fs";
|
|
8
|
+
import { existsSync, openSync, closeSync, writeFileSync, unlinkSync } from "fs";
|
|
9
9
|
import { spawn, execSync } from "child_process";
|
|
10
10
|
import path from "path";
|
|
11
11
|
import os from "os";
|
|
12
12
|
var EXE_DIR = path.join(os.homedir(), ".exe-os");
|
|
13
13
|
var DAEMON_PORT = 48739;
|
|
14
|
+
var DEFERRED_RESTART_PID_PATH = path.join(EXE_DIR, "deferred-restart.pid");
|
|
15
|
+
try {
|
|
16
|
+
writeFileSync(DEFERRED_RESTART_PID_PATH, String(process.pid));
|
|
17
|
+
} catch {
|
|
18
|
+
}
|
|
19
|
+
function cleanupPid() {
|
|
20
|
+
try {
|
|
21
|
+
unlinkSync(DEFERRED_RESTART_PID_PATH);
|
|
22
|
+
} catch {
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
process.on("exit", cleanupPid);
|
|
26
|
+
process.on("SIGTERM", () => {
|
|
27
|
+
cleanupPid();
|
|
28
|
+
process.exit(0);
|
|
29
|
+
});
|
|
30
|
+
process.on("SIGINT", () => {
|
|
31
|
+
cleanupPid();
|
|
32
|
+
process.exit(0);
|
|
33
|
+
});
|
|
14
34
|
var DELAY_MS = parseInt(process.env.EXE_DEFERRED_DELAY_MS ?? "3000", 10);
|
|
15
35
|
await new Promise((resolve) => setTimeout(resolve, DELAY_MS));
|
|
16
36
|
process.stderr.write("[deferred-restart] Starting daemon restart...\n");
|
package/dist/bin/install.js
CHANGED
|
@@ -27,7 +27,7 @@ import "../chunk-LYH5HE24.js";
|
|
|
27
27
|
import "../chunk-MLKGABMK.js";
|
|
28
28
|
|
|
29
29
|
// src/bin/install.ts
|
|
30
|
-
import { existsSync, openSync, closeSync } from "fs";
|
|
30
|
+
import { existsSync, openSync, closeSync, writeFileSync, readFileSync, unlinkSync, statSync } from "fs";
|
|
31
31
|
import { spawn, execSync } from "child_process";
|
|
32
32
|
import path from "path";
|
|
33
33
|
import os from "os";
|
|
@@ -85,7 +85,35 @@ function spawnDaemonInline(pkgRoot) {
|
|
|
85
85
|
}
|
|
86
86
|
process.stderr.write(healthy ? "exe-os: daemon restarted and healthy\n" : "exe-os: daemon spawned but health check pending\n");
|
|
87
87
|
}
|
|
88
|
+
var DEFERRED_RESTART_PID_PATH = path.join(EXE_DIR, "deferred-restart.pid");
|
|
89
|
+
function isDeferredRestartRunning() {
|
|
90
|
+
try {
|
|
91
|
+
if (!existsSync(DEFERRED_RESTART_PID_PATH)) return false;
|
|
92
|
+
const pid = parseInt(readFileSync(DEFERRED_RESTART_PID_PATH, "utf8").trim(), 10);
|
|
93
|
+
if (isNaN(pid) || pid <= 0) return false;
|
|
94
|
+
const age = Date.now() - statSync(DEFERRED_RESTART_PID_PATH).mtimeMs;
|
|
95
|
+
if (age > 6e4) {
|
|
96
|
+
try {
|
|
97
|
+
unlinkSync(DEFERRED_RESTART_PID_PATH);
|
|
98
|
+
} catch {
|
|
99
|
+
}
|
|
100
|
+
return false;
|
|
101
|
+
}
|
|
102
|
+
process.kill(pid, 0);
|
|
103
|
+
return true;
|
|
104
|
+
} catch {
|
|
105
|
+
try {
|
|
106
|
+
unlinkSync(DEFERRED_RESTART_PID_PATH);
|
|
107
|
+
} catch {
|
|
108
|
+
}
|
|
109
|
+
return false;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
88
112
|
function restartDaemon() {
|
|
113
|
+
if (isDeferredRestartRunning()) {
|
|
114
|
+
process.stderr.write("exe-os: deferred restart already running \u2014 skipping duplicate\n");
|
|
115
|
+
return;
|
|
116
|
+
}
|
|
89
117
|
updateMcpVersionMarker();
|
|
90
118
|
const pkgRoot = resolvePackageRoot();
|
|
91
119
|
const deferredScript = path.join(pkgRoot, "dist", "bin", "deferred-daemon-restart.js");
|
|
@@ -107,6 +135,12 @@ function restartDaemon() {
|
|
|
107
135
|
env: { ...process.env }
|
|
108
136
|
});
|
|
109
137
|
child.unref();
|
|
138
|
+
if (child.pid) {
|
|
139
|
+
try {
|
|
140
|
+
writeFileSync(DEFERRED_RESTART_PID_PATH, String(child.pid));
|
|
141
|
+
} catch {
|
|
142
|
+
}
|
|
143
|
+
}
|
|
110
144
|
if (typeof stderrFd === "number") {
|
|
111
145
|
try {
|
|
112
146
|
closeSync(stderrFd);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askexenow/exe-os",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.163",
|
|
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.163",
|
|
3
3
|
"notes": {
|
|
4
|
-
"0.9.
|
|
5
|
-
"version": "0.9.
|
|
4
|
+
"0.9.163": {
|
|
5
|
+
"version": "0.9.163",
|
|
6
6
|
"date": "2026-05-30",
|
|
7
7
|
"features": [
|
|
8
8
|
"add worktree reaper daemon job to prune orphaned agent worktrees",
|
|
@@ -104,8 +104,8 @@
|
|
|
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.162": {
|
|
108
|
+
"version": "0.9.162",
|
|
109
109
|
"date": "2026-05-30",
|
|
110
110
|
"features": [
|
|
111
111
|
"add worktree reaper daemon job to prune orphaned agent worktrees",
|
|
@@ -135,6 +135,7 @@
|
|
|
135
135
|
"blocked task notification — ping dispatcher immediately on status change"
|
|
136
136
|
],
|
|
137
137
|
"fixes": [
|
|
138
|
+
"zombie reaper must never kill TTY-attached sessions + death log",
|
|
138
139
|
"update readiness gate to check daemon-restart-orchestrator",
|
|
139
140
|
"resolve TS errors blocking publish — unused import + undefined row",
|
|
140
141
|
"zombie agent reaper + deferred daemon restart (OOM crash fix)",
|
|
@@ -158,8 +159,7 @@
|
|
|
158
159
|
"DMR retrieval 20% → 100% — stop words, name filtering, speaker fix",
|
|
159
160
|
"kill idle Codex/OpenCode sessions instead of sending intercom — enables auto-wake respawn",
|
|
160
161
|
"suppress daemon auto-reconnect noise — only log after attempt 2+",
|
|
161
|
-
"remove E2EE from bug reports — support intake must be readable server-side"
|
|
162
|
-
"support API — verified encrypted bug reports work (HTTP 201)"
|
|
162
|
+
"remove E2EE from bug reports — support intake must be readable server-side"
|
|
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.
|
|
210
|
+
"0.9.161": {
|
|
211
|
+
"version": "0.9.161",
|
|
212
212
|
"date": "2026-05-30",
|
|
213
213
|
"features": [
|
|
214
|
+
"add worktree reaper daemon job to prune orphaned agent worktrees",
|
|
215
|
+
"add pre-flight gates to close_task — status gate, worktree check, commit recency",
|
|
214
216
|
"add wiki document ingestion via API for embedding pipeline",
|
|
215
217
|
"add filtered.* projection targets to projection worker",
|
|
216
218
|
"verify-stack post-deploy checks — 8 runtime validations",
|
|
@@ -233,11 +235,14 @@
|
|
|
233
235
|
"update safety + portable backups + restore",
|
|
234
236
|
"complete deployment readiness — all 14 second-pass blind spots fixed",
|
|
235
237
|
"production-ready stack — all 15 blind spots fixed",
|
|
236
|
-
"blocked task notification — ping dispatcher immediately on status change"
|
|
237
|
-
"self-improving skills — usage tracking, success counting, and refinement daemon",
|
|
238
|
-
"4 retrieval improvements — query expansion, stop words, contradiction resolution, abstention"
|
|
238
|
+
"blocked task notification — ping dispatcher immediately on status change"
|
|
239
239
|
],
|
|
240
240
|
"fixes": [
|
|
241
|
+
"update readiness gate to check daemon-restart-orchestrator",
|
|
242
|
+
"resolve TS errors blocking publish — unused import + undefined row",
|
|
243
|
+
"zombie agent reaper + deferred daemon restart (OOM crash fix)",
|
|
244
|
+
"idle-kill now reaps Codex/OpenCode sessions (bug 47d1e446)",
|
|
245
|
+
"change orphaned task terminal state from blocked → needs_review",
|
|
241
246
|
"auto-close temporal guard + session_scope fallback + orphan cleanup safety",
|
|
242
247
|
"cloud sync skip-bad-rows + age-based orphan hook reaper",
|
|
243
248
|
"clean unused imports + publish gate fixes for v0.9.159",
|
|
@@ -257,12 +262,7 @@
|
|
|
257
262
|
"kill idle Codex/OpenCode sessions instead of sending intercom — enables auto-wake respawn",
|
|
258
263
|
"suppress daemon auto-reconnect noise — only log after attempt 2+",
|
|
259
264
|
"remove E2EE from bug reports — support intake must be readable server-side",
|
|
260
|
-
"support API — verified encrypted bug reports work (HTTP 201)"
|
|
261
|
-
"support API accepts encrypted bug reports — prevents HTTP 400",
|
|
262
|
-
"Codex agents recheck tasks before stopping — prevents idle-with-open-tasks",
|
|
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"
|
|
265
|
+
"support API — verified encrypted bug reports work (HTTP 201)"
|
|
266
266
|
],
|
|
267
267
|
"security": [
|
|
268
268
|
"fix shell injection, SSRF, socket leaks, backup validation",
|
|
@@ -310,10 +310,12 @@
|
|
|
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.160": {
|
|
314
|
+
"version": "0.9.160",
|
|
315
|
+
"date": "2026-05-30",
|
|
316
316
|
"features": [
|
|
317
|
+
"add wiki document ingestion via API for embedding pipeline",
|
|
318
|
+
"add filtered.* projection targets to projection worker",
|
|
317
319
|
"verify-stack post-deploy checks — 8 runtime validations",
|
|
318
320
|
"preflight deploy gate + filtered schema + gateway graceful degradation",
|
|
319
321
|
"harden /exe-afk as primary monitoring tool, deprecate /loop for orchestration",
|
|
@@ -336,16 +338,12 @@
|
|
|
336
338
|
"production-ready stack — all 15 blind spots fixed",
|
|
337
339
|
"blocked task notification — ping dispatcher immediately on status change",
|
|
338
340
|
"self-improving skills — usage tracking, success counting, and refinement daemon",
|
|
339
|
-
"4 retrieval improvements — query expansion, stop words, contradiction resolution, abstention"
|
|
340
|
-
"competitive roadmap — serverless tier, identity depth, self-improving skills, user modeling",
|
|
341
|
-
"run database migrations before container swap in stack-update"
|
|
341
|
+
"4 retrieval improvements — query expansion, stop words, contradiction resolution, abstention"
|
|
342
342
|
],
|
|
343
343
|
"fixes": [
|
|
344
|
-
"
|
|
345
|
-
"
|
|
346
|
-
"
|
|
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",
|
|
344
|
+
"auto-close temporal guard + session_scope fallback + orphan cleanup safety",
|
|
345
|
+
"cloud sync skip-bad-rows + age-based orphan hook reaper",
|
|
346
|
+
"clean unused imports + publish gate fixes for v0.9.159",
|
|
349
347
|
"daemon memory cascade — prevent duplicate daemons, reap orphan hooks, cap heap",
|
|
350
348
|
"auto-inject timeout on tmux capture-pane to prevent session freeze",
|
|
351
349
|
"auto-wake crash loop — filter boot memories + circuit breaker",
|
|
@@ -365,7 +363,9 @@
|
|
|
365
363
|
"support API — verified encrypted bug reports work (HTTP 201)",
|
|
366
364
|
"support API accepts encrypted bug reports — prevents HTTP 400",
|
|
367
365
|
"Codex agents recheck tasks before stopping — prevents idle-with-open-tasks",
|
|
368
|
-
"P0 #13 session_scope in cleanup SELECT + P0 #6 wire review signal files"
|
|
366
|
+
"P0 #13 session_scope in cleanup SELECT + P0 #6 wire review signal files",
|
|
367
|
+
"add scope import to prompt-submit — gate pass",
|
|
368
|
+
"add writeFileSync import to config.ts"
|
|
369
369
|
],
|
|
370
370
|
"security": [
|
|
371
371
|
"fix shell injection, SSRF, socket leaks, backup validation",
|
|
@@ -382,6 +382,8 @@
|
|
|
382
382
|
"fix 4 pricing tier bypass vulnerabilities (audit F1-F4)"
|
|
383
383
|
],
|
|
384
384
|
"other": [
|
|
385
|
+
"bump v0.9.160 — cloud sync resilience + orphan reaper + auto-close guard",
|
|
386
|
+
"update release notes with 5 bug fixes from support triage",
|
|
385
387
|
"bump v0.9.159 — daemon memory cascade fix + session_scope + benchmarks",
|
|
386
388
|
"arch: customer onboarding automation — exe-os deploy-customer command",
|
|
387
389
|
"arch: Fleet Operations Roadmap — 8 phases for production safety at scale",
|
|
@@ -404,19 +406,33 @@
|
|
|
404
406
|
"publish v0.9.144 — ESM require() fix + reliable task signals + OAuth 2.1",
|
|
405
407
|
"add MCP tool tests for message, cloud-sync, and file-copy",
|
|
406
408
|
"add coverage for send_message, cloud_sync, file_copy MCP tools (Track A)",
|
|
407
|
-
"Recover MCP sessions after daemon restart"
|
|
408
|
-
"publish v0.9.143 — all fixes live",
|
|
409
|
-
"publish v0.9.142"
|
|
409
|
+
"Recover MCP sessions after daemon restart"
|
|
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.
|
|
418
|
-
"date": "2026-05-
|
|
416
|
+
"0.9.159": {
|
|
417
|
+
"version": "0.9.159",
|
|
418
|
+
"date": "2026-05-29",
|
|
419
419
|
"features": [
|
|
420
|
+
"verify-stack post-deploy checks — 8 runtime validations",
|
|
421
|
+
"preflight deploy gate + filtered schema + gateway graceful degradation",
|
|
422
|
+
"harden /exe-afk as primary monitoring tool, deprecate /loop for orchestration",
|
|
423
|
+
"add --judge-model flag to LoCoMo harness",
|
|
424
|
+
"dashboard.askexe.com — customer credits dashboard (backend + frontend)",
|
|
425
|
+
"config persistence contract — document + enforce what survives stack updates",
|
|
426
|
+
"add persona depth to identity — tone, vocabulary, response_style, communication_patterns",
|
|
427
|
+
"4 BEAM improvements — o4-mini judge, entity expansion, temporal prompts, contradiction detection",
|
|
428
|
+
"DMR 100% + BEAM 35% — full results with Claude Sonnet judge",
|
|
429
|
+
"session_scope read paths — search filter + backfill + tests",
|
|
430
|
+
"add session_scope filtering to memory read paths + MCP tools + backfill",
|
|
431
|
+
"classify prompt memories as conversation type + enrich session-end captures",
|
|
432
|
+
"add session_scope column to memories table — schema migration + all write paths",
|
|
433
|
+
"fix Codex integration + add --codex to all 4 harnesses",
|
|
434
|
+
"add checkpoint/resume support for long LoCoMo runs",
|
|
435
|
+
"add Codex GPT-5.5 judge, pre-embedding, expanded retrieval, production prompts",
|
|
420
436
|
"stack manifest 0.9.10 — all new images for customer deployment",
|
|
421
437
|
"update safety + portable backups + restore",
|
|
422
438
|
"complete deployment readiness — all 14 second-pass blind spots fixed",
|
|
@@ -425,50 +441,34 @@
|
|
|
425
441
|
"self-improving skills — usage tracking, success counting, and refinement daemon",
|
|
426
442
|
"4 retrieval improvements — query expansion, stop words, contradiction resolution, abstention",
|
|
427
443
|
"competitive roadmap — serverless tier, identity depth, self-improving skills, user modeling",
|
|
428
|
-
"run database migrations before container swap in stack-update"
|
|
429
|
-
"graph auto-extract from ARCHITECTURE.md — regex-based entity/relationship extraction",
|
|
430
|
-
"migrate cloud.askexe.com → api.askexe.com as canonical endpoint",
|
|
431
|
-
"federated recall — code_context + graph fallback when memory results weak",
|
|
432
|
-
"migrate cloud.askexe.com → api.askexe.com across all src/ defaults",
|
|
433
|
-
"rolling restart in stack-update — one service at a time with health verification",
|
|
434
|
-
"DMR benchmark harness + LoCoMo improvements for v0.9.145 evaluation",
|
|
435
|
-
"Windows/WSL support — WezTerm config + WSL detection in setup wizard",
|
|
436
|
-
"queryTaskRows() consolidation — single scoped query path for all task list operations",
|
|
437
|
-
"review signal files — reliable reviewer notification on update_task(done)",
|
|
438
|
-
"Ghostty-native notifications via OSC 9 — no more Script Editor popup",
|
|
439
|
-
"device-scoped behaviors — device_id column + filter in loading",
|
|
440
|
-
"dispatch reliability — 45s boot timeout, dispatch ack signals, agent heartbeat",
|
|
441
|
-
"setup wizard headless mode + daemon health check after restart",
|
|
442
|
-
"device-scoped behaviors — add device_id column + filter on load",
|
|
443
|
-
"gateway prompt injection defense — 3-tier security hardening",
|
|
444
|
-
"add diagnostics(action=\"merge_agent_memories\") for reassigning memories across agent IDs"
|
|
444
|
+
"run database migrations before container swap in stack-update"
|
|
445
445
|
],
|
|
446
446
|
"fixes": [
|
|
447
|
+
"cloud sync NOT NULL resilience — sqlSafeRequired() defaults + per-record error handling, skip bad rows instead of retry storm",
|
|
448
|
+
"auto-close temporal guard — reject commits older than task creation date, raise threshold 0.6→0.8",
|
|
449
|
+
"session_scope fallback — listTasks returns unscoped results when scoped query finds 0 after daemon restart",
|
|
450
|
+
"orphan task file cleanup safety — 24h threshold (was 1h) + ID-based fallback before deleting",
|
|
451
|
+
"blocked task escalation — writeNotification to COO when auto-wake fails 3x and marks task blocked",
|
|
452
|
+
"daemon memory cascade — prevent duplicate daemons, reap orphan hooks, cap heap",
|
|
453
|
+
"auto-inject timeout on tmux capture-pane to prevent session freeze",
|
|
454
|
+
"auto-wake crash loop — filter boot memories + circuit breaker",
|
|
455
|
+
"Codex numbered instances use baseAgentName for identity resolution",
|
|
456
|
+
"auto-chain project scope + writeNotification on needs_review",
|
|
457
|
+
"persist WhatsApp auth in Docker volume — prevent data loss on update",
|
|
458
|
+
"wake idle codex sessions on pending tasks",
|
|
459
|
+
"fix daemon MCP session heap leak",
|
|
460
|
+
"include typescript as runtime dependency",
|
|
461
|
+
"remove direct Postgres license validation — CF Worker is the only path",
|
|
462
|
+
"gateway stop_grace_period 45s — prevent SIGKILL during message drain",
|
|
463
|
+
"filter person names from FTS queries to prevent speaker-prefix pollution",
|
|
464
|
+
"DMR retrieval 20% → 100% — stop words, name filtering, speaker fix",
|
|
465
|
+
"kill idle Codex/OpenCode sessions instead of sending intercom — enables auto-wake respawn",
|
|
466
|
+
"suppress daemon auto-reconnect noise — only log after attempt 2+",
|
|
467
|
+
"remove E2EE from bug reports — support intake must be readable server-side",
|
|
447
468
|
"support API — verified encrypted bug reports work (HTTP 201)",
|
|
448
469
|
"support API accepts encrypted bug reports — prevents HTTP 400",
|
|
449
470
|
"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"
|
|
451
|
-
"add scope import to prompt-submit — gate pass",
|
|
452
|
-
"add writeFileSync import to config.ts",
|
|
453
|
-
"persist cloud endpoint migration to config.json — stop logging on every boot",
|
|
454
|
-
"include memory_type in pushToPostgres metadata — was stripped on sync",
|
|
455
|
-
"add scope import to daemon-orchestration — satisfies customer-readiness gate",
|
|
456
|
-
"skill-refinement.ts — correct writeMemory field names + updateIdentity 3rd arg",
|
|
457
|
-
"make skill lifecycle fields optional on Behavior interface — unblocks publish",
|
|
458
|
-
"session isolation for tmux kill — block cross-scope session kills",
|
|
459
|
-
"session-scope daemon, push, capacity, and cleanup (P0 #7-#13)",
|
|
460
|
-
"add memory_type to crdt-sync MemoryRecord interface — unblocks publish",
|
|
461
|
-
"session-scope daemon, push, capacity, cleanup (P0 #7-#9, #13)",
|
|
462
|
-
"include memory_type in cloud sync push/pull + fix backfill re-sync",
|
|
463
|
-
"session-scope signal file system — prevent cross-session task/review bleed",
|
|
464
|
-
"session-scope notification routing — use row.session_scope over ambient",
|
|
465
|
-
"daemon NEVER guesses session from tmux — header-only routing",
|
|
466
|
-
"3 daemon bugs — context-full TTL override, API watchdog kill-after-3, idle-kill verify",
|
|
467
|
-
"federated recall always searches code_context + graph — count threshold was useless",
|
|
468
|
-
"make cross-repo guardrail task-aware — allow multi-repo work when task scope permits",
|
|
469
|
-
"ONE postgres — replace crm-postgres with exe-db across entire stack",
|
|
470
|
-
"smart session-scoping gate + last boot cleanup leak + triage_bug docs",
|
|
471
|
-
"add shipped_version to support triage + clean platform procedures"
|
|
471
|
+
"P0 #13 session_scope in cleanup SELECT + P0 #6 wire review signal files"
|
|
472
472
|
],
|
|
473
473
|
"security": [
|
|
474
474
|
"fix shell injection, SSRF, socket leaks, backup validation",
|
|
@@ -485,6 +485,13 @@
|
|
|
485
485
|
"fix 4 pricing tier bypass vulnerabilities (audit F1-F4)"
|
|
486
486
|
],
|
|
487
487
|
"other": [
|
|
488
|
+
"bump v0.9.159 — daemon memory cascade fix + session_scope + benchmarks",
|
|
489
|
+
"arch: customer onboarding automation — exe-os deploy-customer command",
|
|
490
|
+
"arch: Fleet Operations Roadmap — 8 phases for production safety at scale",
|
|
491
|
+
"arch: add filtered table pipeline + pre-flight deploy system to roadmap",
|
|
492
|
+
"add EXE-OS-STACK.md — complete 6-repo deployment map",
|
|
493
|
+
"cache tmux session (5 calls → 1) + offset daemon timers",
|
|
494
|
+
"cut agent boot from 4min to <30s — merge Bash blocks + parallel DB queries",
|
|
488
495
|
"rename memory schema → graph across codebase",
|
|
489
496
|
"unified access control — admin token + GoTrue across all services",
|
|
490
497
|
"capture data pipeline spec — raw → filter → wiki + CRM projection",
|
|
@@ -502,14 +509,7 @@
|
|
|
502
509
|
"add coverage for send_message, cloud_sync, file_copy MCP tools (Track A)",
|
|
503
510
|
"Recover MCP sessions after daemon restart",
|
|
504
511
|
"publish v0.9.143 — all fixes live",
|
|
505
|
-
"publish v0.9.142"
|
|
506
|
-
"publish v0.9.141",
|
|
507
|
-
"ops: journalctl rotation + certbot expiry alerting",
|
|
508
|
-
"revert: daemon heap back to 33% of RAM — no artificial cap",
|
|
509
|
-
"v0.9.140 publish + heap cap 4GB (was 33% unbounded)",
|
|
510
|
-
"PG-1 cross-repo entity federation design document",
|
|
511
|
-
"add lint step + automated npm publish workflow",
|
|
512
|
-
"audit: scoped SQL + package budget + TUI vendored + TODO classification"
|
|
512
|
+
"publish v0.9.142"
|
|
513
513
|
],
|
|
514
514
|
"migration_notes": [
|
|
515
515
|
"If daemon goes down, agents will now fail instead of silently",
|