@askexenow/exe-os 0.9.248 → 0.9.251
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/deploy/compose/setup.sh +30 -0
- package/deploy/stack-manifests/v0.9.json +53 -1
- package/dist/bin/exe-forget.js +1 -1
- package/dist/bin/exe-search.js +1 -1
- package/dist/bin/pre-publish.js +7 -4
- package/dist/{catchup-brief-KV7CWAFM.js → catchup-brief-USYMBBJO.js} +1 -1
- package/dist/{chunk-VPT7YJJU.js → chunk-BG76C2PG.js} +3 -3
- package/dist/{chunk-MWQW2QV4.js → chunk-OERXBIAU.js} +2 -2
- package/dist/hooks/error-recall.js +1 -1
- package/dist/hooks/manifest.json +4 -4
- package/dist/hooks/prompt-submit.js +1 -1
- package/dist/hooks/session-start.js +1 -1
- package/dist/lib/exe-daemon.js +6 -3
- package/dist/lib/hybrid-search.js +1 -1
- package/dist/mcp/register-tools.js +3 -3
- package/dist/mcp/server.js +3 -3
- package/dist/{reranker-XGST4QWE.js → reranker-KWCF74HT.js} +1 -1
- package/package.json +1 -1
- package/release-notes.json +40 -297
- package/stack.release.json +3 -3
- /package/dist/{chunk-VA5BKLNY.js → chunk-FCDLGS3S.js} +0 -0
package/deploy/compose/setup.sh
CHANGED
|
@@ -123,6 +123,36 @@ ENVEOF
|
|
|
123
123
|
info ".env generated with auto-generated secrets"
|
|
124
124
|
fi
|
|
125
125
|
|
|
126
|
+
# Step 3a: Bootstrap gateway.json (must exist before `docker compose up` or
|
|
127
|
+
# Docker will create it as a directory instead of a file, leaving the gateway
|
|
128
|
+
# with an empty config and WhatsApp adapters disabled).
|
|
129
|
+
# Bug 24af9df0: setup.sh never wrote this file; fresh deploys had no gateway.
|
|
130
|
+
if [[ ! -f gateway.json ]]; then
|
|
131
|
+
info "Step 3a: Creating default gateway.json (WhatsApp adapter enabled)"
|
|
132
|
+
cat > gateway.json << 'GWEOF'
|
|
133
|
+
{
|
|
134
|
+
"adapters": {
|
|
135
|
+
"whatsapp": {
|
|
136
|
+
"enabled": true,
|
|
137
|
+
"credentials": {
|
|
138
|
+
"authDir": "/app/auth_info/default"
|
|
139
|
+
},
|
|
140
|
+
"accounts": [
|
|
141
|
+
{
|
|
142
|
+
"name": "default",
|
|
143
|
+
"authDir": "/app/auth_info/default"
|
|
144
|
+
}
|
|
145
|
+
]
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
GWEOF
|
|
150
|
+
chmod 600 gateway.json
|
|
151
|
+
info "gateway.json created. Edit it to add WhatsApp accounts, then restart the gateway."
|
|
152
|
+
else
|
|
153
|
+
info "Step 3a: gateway.json already exists — skipping."
|
|
154
|
+
fi
|
|
155
|
+
|
|
126
156
|
# Step 3: Cloudflared tunnel config
|
|
127
157
|
info "Step 3: Cloudflare Tunnel setup"
|
|
128
158
|
if [[ ! -f cloudflared/config.yml ]]; then
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": 1,
|
|
3
|
-
"latest": "0.9.
|
|
3
|
+
"latest": "0.9.18",
|
|
4
4
|
"stacks": {
|
|
5
5
|
"0.9.0": {
|
|
6
6
|
"version": "0.9.0",
|
|
@@ -978,6 +978,58 @@
|
|
|
978
978
|
"required": false
|
|
979
979
|
}
|
|
980
980
|
}
|
|
981
|
+
},
|
|
982
|
+
"0.9.18": {
|
|
983
|
+
"version": "0.9.18",
|
|
984
|
+
"releasedAt": "2026-06-09T00:00:00Z",
|
|
985
|
+
"notes": "exe-os v0.9.251: chore: sync release notes; fix: create schema in daemon polling init; chore: bump v0.9.250 release notes; fix: keep release-note generation idempotent",
|
|
986
|
+
"npmVersion": "0.9.251",
|
|
987
|
+
"breakingChanges": [],
|
|
988
|
+
"services": {
|
|
989
|
+
"crm": {
|
|
990
|
+
"image": "update.askexe.com/askexe/exe-crm:v0.9.46",
|
|
991
|
+
"env": "CRM_IMAGE_TAG",
|
|
992
|
+
"composeService": "exe-crm",
|
|
993
|
+
"healthUrl": "http://127.0.0.1:3000/healthz"
|
|
994
|
+
},
|
|
995
|
+
"wiki": {
|
|
996
|
+
"image": "update.askexe.com/askexe/exe-wiki:v0.9.21",
|
|
997
|
+
"env": "WIKI_IMAGE_TAG",
|
|
998
|
+
"composeService": "exe-wiki",
|
|
999
|
+
"healthUrl": "http://127.0.0.1:3001/api/ping"
|
|
1000
|
+
},
|
|
1001
|
+
"exe-os": {
|
|
1002
|
+
"image": "update.askexe.com/askexe/exe-os:v0.9.251",
|
|
1003
|
+
"env": "EXE_OS_IMAGE_TAG",
|
|
1004
|
+
"composeService": "exe-os",
|
|
1005
|
+
"healthUrl": "http://127.0.0.1:8765/health"
|
|
1006
|
+
},
|
|
1007
|
+
"gateway": {
|
|
1008
|
+
"image": "update.askexe.com/askexe/exe-gateway:v0.9.16",
|
|
1009
|
+
"env": "GATEWAY_IMAGE_TAG",
|
|
1010
|
+
"composeService": "exe-gateway",
|
|
1011
|
+
"healthUrl": "http://127.0.0.1:3100/health"
|
|
1012
|
+
},
|
|
1013
|
+
"monitorAgent": {
|
|
1014
|
+
"image": "update.askexe.com/askexe/exe-monitor-agent:v0.9.4",
|
|
1015
|
+
"env": "MONITOR_AGENT_IMAGE_TAG",
|
|
1016
|
+
"composeService": "exe-monitor-agent"
|
|
1017
|
+
},
|
|
1018
|
+
"monitorHub": {
|
|
1019
|
+
"image": "update.askexe.com/askexe/exe-monitor-hub:v0.9.4",
|
|
1020
|
+
"env": "MONITOR_HUB_IMAGE_TAG",
|
|
1021
|
+
"composeService": "exe-monitor-hub",
|
|
1022
|
+
"healthUrl": "http://127.0.0.1:8090/api/health"
|
|
1023
|
+
},
|
|
1024
|
+
"erp": {
|
|
1025
|
+
"image": "update.askexe.com/askexe/exe-erp:v0.2.0-final3",
|
|
1026
|
+
"env": "ERP_IMAGE_TAG",
|
|
1027
|
+
"composeService": "exe-erp",
|
|
1028
|
+
"healthUrl": "http://127.0.0.1:8069/api/method/ping",
|
|
1029
|
+
"deploymentScope": "customer",
|
|
1030
|
+
"required": false
|
|
1031
|
+
}
|
|
1032
|
+
}
|
|
981
1033
|
}
|
|
982
1034
|
}
|
|
983
1035
|
}
|
package/dist/bin/exe-forget.js
CHANGED
package/dist/bin/exe-search.js
CHANGED
package/dist/bin/pre-publish.js
CHANGED
|
@@ -47,9 +47,12 @@ function stripVersionTag(tag) {
|
|
|
47
47
|
}
|
|
48
48
|
function findPreviousVersionTag(tags, currentVersion) {
|
|
49
49
|
const currentTag = `v${currentVersion}`;
|
|
50
|
-
const
|
|
51
|
-
|
|
52
|
-
|
|
50
|
+
const curMajor = currentVersion.split(".")[0];
|
|
51
|
+
return tags.filter((tag) => tag !== currentTag).filter((tag) => {
|
|
52
|
+
if (!curMajor) return true;
|
|
53
|
+
const tagMajor = stripVersionTag(tag).split(".")[0];
|
|
54
|
+
return tagMajor === curMajor;
|
|
55
|
+
}).filter((tag) => compareVersionsAsc(stripVersionTag(tag), currentVersion) < 0).sort((a, b) => compareVersionsDesc(stripVersionTag(a), stripVersionTag(b)))[0] ?? "";
|
|
53
56
|
}
|
|
54
57
|
function compactReleaseNotes(data) {
|
|
55
58
|
const versions = Object.keys(data.notes).sort(compareVersionsDesc).slice(0, MAX_RELEASE_NOTE_VERSIONS);
|
|
@@ -74,7 +77,7 @@ function categorizeCommit(message) {
|
|
|
74
77
|
}
|
|
75
78
|
function isReleaseNoiseCommitSummary(summary) {
|
|
76
79
|
const normalized = summary.trim();
|
|
77
|
-
return /^bump v\d+\.\d+\.\d+(?:-.+)?$/i.test(normalized) || /^(?:sync|stabilize) v\d+\.\d+\.\d+(?:-.+)? release notes$/i.test(normalized) || /^sync v\d+\.\d+\.\d+(?:-.+)? published artifacts$/i.test(normalized);
|
|
80
|
+
return /^bump(?: v\d+\.\d+\.\d+(?:-.+)?)?(?: release notes)?$/i.test(normalized) || /^(?:sync|stabilize)(?: v\d+\.\d+\.\d+(?:-.+)?)? release notes$/i.test(normalized) || /^sync(?: v\d+\.\d+\.\d+(?:-.+)?)? published artifacts$/i.test(normalized);
|
|
78
81
|
}
|
|
79
82
|
function generateReleaseNotes(repoRoot2, currentVersion) {
|
|
80
83
|
const tags = git(["tag", "--sort=-v:refname", "--list", "v*"], repoRoot2).split("\n").filter(Boolean);
|
|
@@ -288,7 +288,7 @@ async function hybridSearch(queryText, agentId, options) {
|
|
|
288
288
|
let rerankerAvailable = false;
|
|
289
289
|
if (process.env.EXE_IS_DAEMON === "1") {
|
|
290
290
|
try {
|
|
291
|
-
const { isRerankerAvailable } = await import("./reranker-
|
|
291
|
+
const { isRerankerAvailable } = await import("./reranker-KWCF74HT.js");
|
|
292
292
|
rerankerAvailable = isRerankerAvailable();
|
|
293
293
|
} catch {
|
|
294
294
|
}
|
|
@@ -452,7 +452,7 @@ async function hybridSearch(queryText, agentId, options) {
|
|
|
452
452
|
try {
|
|
453
453
|
let rerankedRecords;
|
|
454
454
|
if (graphContextMap.size > 0) {
|
|
455
|
-
const { rerankWithContext } = await import("./reranker-
|
|
455
|
+
const { rerankWithContext } = await import("./reranker-KWCF74HT.js");
|
|
456
456
|
const candidates = merged.map((m) => ({
|
|
457
457
|
text: m.raw_text,
|
|
458
458
|
context: graphContextMap.get(m.id)
|
|
@@ -460,7 +460,7 @@ async function hybridSearch(queryText, agentId, options) {
|
|
|
460
460
|
const scored = await rerankWithContext(effectiveQuery, candidates, rerankReturnLimit);
|
|
461
461
|
rerankedRecords = scored.map((s) => merged[s.index]);
|
|
462
462
|
} else {
|
|
463
|
-
const { rerank } = await import("./reranker-
|
|
463
|
+
const { rerank } = await import("./reranker-KWCF74HT.js");
|
|
464
464
|
rerankedRecords = await rerank(effectiveQuery, merged, rerankReturnLimit);
|
|
465
465
|
}
|
|
466
466
|
if (rerankedRecords.length > 0) {
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
import {
|
|
11
11
|
isRerankerAvailable,
|
|
12
12
|
rerankWithScores
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-FCDLGS3S.js";
|
|
14
14
|
import {
|
|
15
15
|
getCachedLicenseGate
|
|
16
16
|
} from "./chunk-2WBBVEIB.js";
|
|
@@ -187,7 +187,7 @@ import {
|
|
|
187
187
|
import {
|
|
188
188
|
hybridSearch,
|
|
189
189
|
recentRecords
|
|
190
|
-
} from "./chunk-
|
|
190
|
+
} from "./chunk-BG76C2PG.js";
|
|
191
191
|
import {
|
|
192
192
|
attachDocumentMetadata,
|
|
193
193
|
flushBatch,
|
package/dist/hooks/manifest.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 1,
|
|
3
|
-
"generatedAt": "2026-06-09T12:
|
|
3
|
+
"generatedAt": "2026-06-09T12:21:57.535Z",
|
|
4
4
|
"hashes": {
|
|
5
5
|
"bug-report-worker.js": "ebc534a11251111409955c71d4e1f0508a620491d059b352117bd8cec309bd5e",
|
|
6
6
|
"codex-stop-task-finalizer.js": "aeec9205c85660db4e1c6bf51ba16710cf4e785531bd3396dce22579ff3fdd2f",
|
|
7
7
|
"commit-complete.js": "2d94294a40810df514d63ac1f6a30587ecbe16bcd1132f0ae9eb8f1f25c7d9be",
|
|
8
|
-
"error-recall.js": "
|
|
8
|
+
"error-recall.js": "ac711e2533075b1bf45bbbc12f1b69eccec84d41b3d87cdeabed93c7f9cabe14",
|
|
9
9
|
"exe-heartbeat-hook.js": "61fb871cc3a8932434c2ba53b81f24475ad108814e30c3ae723d96b570e27356",
|
|
10
10
|
"ingest-worker.js": "ca4671af64ee4ccf4f9b8b2879b3ddeb0fc0cb8b8ba5c032fb334b97abf973bd",
|
|
11
11
|
"ingest.js": "e1ff6aa56ee209e9f6bd28e99031ab29fa763cca190948119b37fe1d55ead900",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"post-tool-combined.js": "c21e73cd549ca672bba1302c04dceb2696345d5d6d02b6ded035013fdead7b14",
|
|
16
16
|
"pre-compact.js": "777ff360f04e92410a54c2b28970e2d25805529bbf1724c30d176b9742d7b6a3",
|
|
17
17
|
"pre-tool-use.js": "5d23669387dc88f0c167a67f88bee5665f57da78f4c764a8a577874a55f803f5",
|
|
18
|
-
"prompt-submit.js": "
|
|
18
|
+
"prompt-submit.js": "ee13394fc99f3f3938a70641986070c67dd7e86667dbfc60ec5189e86cc37f67",
|
|
19
19
|
"session-end.js": "3456012ce4fccdf9847639628ae8b9ba53d9535ae22268203001af8d0774db54",
|
|
20
|
-
"session-start.js": "
|
|
20
|
+
"session-start.js": "8b4803623e2b8aa52b40b4e5222182d4144018d51f1be43e21c7785cbef32032",
|
|
21
21
|
"stop.js": "611617884577e7abdca65b6ba4d5d6b0c435a641c86847e48e5441a9f88a7e26",
|
|
22
22
|
"subagent-stop.js": "8bac8bfa60ded426457588f8c75dea430ad55d852215d9aa794fa21543538bb1",
|
|
23
23
|
"summary-worker.js": "ca66f15de3d6c5f531c07924df539387dd862d593855c481de4435062f3ff464"
|
|
@@ -163,7 +163,7 @@ You are **${ag.agentId}** (${ag.agentRole}). Daemon is degraded \u2014 memory un
|
|
|
163
163
|
query = `last actions on ${projectName}`;
|
|
164
164
|
header = "## Resuming Session\nHere's where you left off:";
|
|
165
165
|
try {
|
|
166
|
-
const { buildCatchupBrief } = await import("../catchup-brief-
|
|
166
|
+
const { buildCatchupBrief } = await import("../catchup-brief-USYMBBJO.js");
|
|
167
167
|
const brief = await buildCatchupBrief(
|
|
168
168
|
agentId,
|
|
169
169
|
projectName,
|
package/dist/lib/exe-daemon.js
CHANGED
|
@@ -2113,7 +2113,7 @@ async function startMcpHttpServer() {
|
|
|
2113
2113
|
activeSessions: transports.size
|
|
2114
2114
|
});
|
|
2115
2115
|
try {
|
|
2116
|
-
const { initDatabase, isInitialized } = await import("./database.js");
|
|
2116
|
+
const { initDatabase, isInitialized, ensureSchema } = await import("./database.js");
|
|
2117
2117
|
if (!isInitialized()) {
|
|
2118
2118
|
const { loadConfig } = await import("./config.js");
|
|
2119
2119
|
const { getMasterKey } = await import("./keychain.js");
|
|
@@ -2121,6 +2121,7 @@ async function startMcpHttpServer() {
|
|
|
2121
2121
|
const masterKey = await getMasterKey();
|
|
2122
2122
|
if (masterKey) {
|
|
2123
2123
|
await initDatabase({ dbPath: config.dbPath, encryptionKey: masterKey.toString("hex") });
|
|
2124
|
+
await ensureSchema();
|
|
2124
2125
|
process.stderr.write("[exed] DB initialized during stale-session recovery\n");
|
|
2125
2126
|
}
|
|
2126
2127
|
}
|
|
@@ -2473,7 +2474,7 @@ async function startMcpHttpServer() {
|
|
|
2473
2474
|
sessionLastSeen.set(sessionId, Date.now());
|
|
2474
2475
|
} else if (!sessionId && req.method === "POST" && isInitializeRequest(parsedBody)) {
|
|
2475
2476
|
try {
|
|
2476
|
-
const { initDatabase, isInitialized } = await import("./database.js");
|
|
2477
|
+
const { initDatabase, isInitialized, ensureSchema } = await import("./database.js");
|
|
2477
2478
|
if (!isInitialized()) {
|
|
2478
2479
|
const { loadConfig } = await import("./config.js");
|
|
2479
2480
|
const { getMasterKey } = await import("./keychain.js");
|
|
@@ -2481,6 +2482,7 @@ async function startMcpHttpServer() {
|
|
|
2481
2482
|
const masterKey = await getMasterKey();
|
|
2482
2483
|
if (masterKey) {
|
|
2483
2484
|
await initDatabase({ dbPath: config.dbPath, encryptionKey: masterKey.toString("hex") });
|
|
2485
|
+
await ensureSchema();
|
|
2484
2486
|
process.stderr.write("[exed] DB initialized on first MCP session\n");
|
|
2485
2487
|
}
|
|
2486
2488
|
}
|
|
@@ -2741,7 +2743,7 @@ var _storeInitialized = false;
|
|
|
2741
2743
|
async function ensureStoreForPolling() {
|
|
2742
2744
|
if (_storeInitialized) return true;
|
|
2743
2745
|
try {
|
|
2744
|
-
const { initDatabase, isInitialized } = await import("./database.js");
|
|
2746
|
+
const { initDatabase, isInitialized, ensureSchema } = await import("./database.js");
|
|
2745
2747
|
if (!isInitialized()) {
|
|
2746
2748
|
const { loadConfig } = await import("./config.js");
|
|
2747
2749
|
const { getMasterKey } = await import("./keychain.js");
|
|
@@ -2756,6 +2758,7 @@ async function ensureStoreForPolling() {
|
|
|
2756
2758
|
throw new Error("No encryption key");
|
|
2757
2759
|
}
|
|
2758
2760
|
await initDatabase({ dbPath: config.dbPath, encryptionKey: masterKey.toString("hex") });
|
|
2761
|
+
await ensureSchema();
|
|
2759
2762
|
}
|
|
2760
2763
|
_storeInitialized = true;
|
|
2761
2764
|
return true;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
registerAllTools
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-OERXBIAU.js";
|
|
4
4
|
import "../chunk-AIXZ5O7U.js";
|
|
5
5
|
import "../chunk-557C2IGL.js";
|
|
6
6
|
import "../chunk-MOTVVPK6.js";
|
|
7
7
|
import "../chunk-NZBGWKVC.js";
|
|
8
|
-
import "../chunk-
|
|
8
|
+
import "../chunk-FCDLGS3S.js";
|
|
9
9
|
import "../chunk-2WBBVEIB.js";
|
|
10
10
|
import "../chunk-4S5TEBXD.js";
|
|
11
11
|
import "../chunk-CCPCIW4Z.js";
|
|
@@ -59,7 +59,7 @@ import "../chunk-RS7EAZ2R.js";
|
|
|
59
59
|
import "../chunk-QR7HOUVS.js";
|
|
60
60
|
import "../chunk-Z6GHDYQI.js";
|
|
61
61
|
import "../chunk-7IZWLMTP.js";
|
|
62
|
-
import "../chunk-
|
|
62
|
+
import "../chunk-BG76C2PG.js";
|
|
63
63
|
import "../chunk-CAFJIGAZ.js";
|
|
64
64
|
import "../chunk-CHCA3ZM2.js";
|
|
65
65
|
import "../chunk-AWVDA2FL.js";
|
package/dist/mcp/server.js
CHANGED
|
@@ -3,12 +3,12 @@ import {
|
|
|
3
3
|
} from "../chunk-V4TZI6EO.js";
|
|
4
4
|
import {
|
|
5
5
|
registerAllTools
|
|
6
|
-
} from "../chunk-
|
|
6
|
+
} from "../chunk-OERXBIAU.js";
|
|
7
7
|
import "../chunk-AIXZ5O7U.js";
|
|
8
8
|
import "../chunk-557C2IGL.js";
|
|
9
9
|
import "../chunk-MOTVVPK6.js";
|
|
10
10
|
import "../chunk-NZBGWKVC.js";
|
|
11
|
-
import "../chunk-
|
|
11
|
+
import "../chunk-FCDLGS3S.js";
|
|
12
12
|
import {
|
|
13
13
|
initLicenseGate
|
|
14
14
|
} from "../chunk-2WBBVEIB.js";
|
|
@@ -69,7 +69,7 @@ import "../chunk-RS7EAZ2R.js";
|
|
|
69
69
|
import "../chunk-QR7HOUVS.js";
|
|
70
70
|
import "../chunk-Z6GHDYQI.js";
|
|
71
71
|
import "../chunk-7IZWLMTP.js";
|
|
72
|
-
import "../chunk-
|
|
72
|
+
import "../chunk-BG76C2PG.js";
|
|
73
73
|
import {
|
|
74
74
|
disposeStore,
|
|
75
75
|
initStore
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askexenow/exe-os",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.251",
|
|
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,321 +1,64 @@
|
|
|
1
1
|
{
|
|
2
|
-
"current": "0.9.
|
|
2
|
+
"current": "0.9.251",
|
|
3
3
|
"notes": {
|
|
4
|
-
"0.9.
|
|
5
|
-
"version": "0.9.
|
|
4
|
+
"0.9.251": {
|
|
5
|
+
"version": "0.9.251",
|
|
6
6
|
"date": "2026-06-09",
|
|
7
7
|
"features": [],
|
|
8
8
|
"fixes": [
|
|
9
|
-
"
|
|
9
|
+
"create schema in daemon polling init",
|
|
10
|
+
"keep release-note generation idempotent"
|
|
10
11
|
],
|
|
11
12
|
"security": [],
|
|
12
13
|
"other": [
|
|
13
|
-
"
|
|
14
|
+
"stack release v0.9.18",
|
|
15
|
+
"bump v0.9.251 for stack release"
|
|
14
16
|
],
|
|
15
17
|
"migration_notes": []
|
|
16
18
|
},
|
|
17
|
-
"0.9.
|
|
18
|
-
"version": "0.9.
|
|
19
|
+
"0.9.250": {
|
|
20
|
+
"version": "0.9.250",
|
|
19
21
|
"date": "2026-06-09",
|
|
20
|
-
"features": [
|
|
21
|
-
"Entity Profile UI — knowledge graph explorer + entity detail view",
|
|
22
|
-
"log MCP session open/close to stderr for docker logs visibility",
|
|
23
|
-
"Graph→PostgreSQL sync timer — automatic SQLite→exe-db projection",
|
|
24
|
-
"project GraphRAG data to PostgreSQL during cloud sync pull",
|
|
25
|
-
"add behavior effectiveness tracking — attribution, conflicts, scoring, load",
|
|
26
|
-
"close the reinforcement loop — dreaming reads investigation data",
|
|
27
|
-
"add reviews to Cloudflare support system — separate from bugs/features",
|
|
28
|
-
"self-improvement auto-merges simple fixes, notifies on failures",
|
|
29
|
-
"automatic investigation record system for debugging cycle tracking",
|
|
30
|
-
"smoke test + Playwright E2E + self-improvement cron",
|
|
31
|
-
"P0 procedures — verify your own fix + confidence decay",
|
|
32
|
-
"boot output as formatted table with box-drawing characters",
|
|
33
|
-
"show auto-fix cycle status in exe-os boot",
|
|
34
|
-
"graceful daemon restart — persist MCP sessions for transparent recovery",
|
|
35
|
-
"default to keyword+graph search, embeddings opt-in",
|
|
36
|
-
"server-side telemetry storage + admin insights endpoint",
|
|
37
|
-
"enrich telemetry payload with usage counters and auto-insights",
|
|
38
|
-
"add telemetry auto-insight computation engine",
|
|
39
|
-
"auto-calibration in dreaming cycle + telemetry integration",
|
|
40
|
-
"first-class time estimation on tasks — auto-tracked, queryable",
|
|
41
|
-
"add agent assertion system — confidence tracking on task lifecycle",
|
|
42
|
-
"auto-run dreaming cycle on session end — zero-touch self-improvement",
|
|
43
|
-
"add dreaming system + structured handoffs to platform procedures",
|
|
44
|
-
"add snapshot + boot to platform procedures and operating procedures",
|
|
45
|
-
"add `exe-os boot --project X` CLI command for project boot verification"
|
|
46
|
-
],
|
|
22
|
+
"features": [],
|
|
47
23
|
"fixes": [
|
|
48
|
-
"
|
|
49
|
-
"
|
|
50
|
-
"dedupe stale MCP session recovery",
|
|
51
|
-
"embeddings OFF by default for all users — opt-in via EXE_EMBEDDINGS=1",
|
|
52
|
-
"keep generated env templates in sync",
|
|
53
|
-
"bootstrap monitor env and lazy-init recall memory",
|
|
54
|
-
"registry proxy accepts license keys + stack-update reads .env license",
|
|
55
|
-
"stack-release uses defaultBranch per repo (wiki uses master)",
|
|
56
|
-
"prevent stale task intercom prompts",
|
|
57
|
-
"v0.9.241 — 13 more bug fixes (28 total this session)",
|
|
58
|
-
"sync lockfile for Docker build — npm ci --omit=dev works again",
|
|
59
|
-
"keep review notifications session-local and test-safe",
|
|
60
|
-
"CI Dockerfile reference — Dockerfile.exed → Dockerfile.exe-os",
|
|
61
|
-
"v0.9.240 — 15 bug fixes across HYGO, Jack, platform (stack v0.9.15)",
|
|
62
|
-
"keep daemon memory recall FTS bounded",
|
|
63
|
-
"keep daemon cloud sync off CRDT heap path",
|
|
64
|
-
"suppress ENOBUFS in reapers + skip boot-time sync execution",
|
|
65
|
-
"MCP health probe in prompt hook + Docker image build tolerance",
|
|
66
|
-
"plug MCP session memory leak — zombie McpServer instances accumulated",
|
|
67
|
-
"lower RSS watchdog to 1.5/2.5GB + add GC after heavy operations",
|
|
68
|
-
"snapshot crash — daemon fallback + dreaming scope binding",
|
|
69
|
-
"skip duplicate initStore in WS client — prevents 2-8s event loop block",
|
|
70
|
-
"add session scope imports to dreaming, project-boot, telemetry-upload",
|
|
71
|
-
"resolve typecheck errors for npm publish",
|
|
72
|
-
"add setImmediate yields to Graph→PG sync — prevent event loop blocking"
|
|
73
|
-
],
|
|
74
|
-
"security": [
|
|
75
|
-
"fix shell injection, SSRF, socket leaks, backup validation",
|
|
76
|
-
"bump v0.9.139 — 2 CRITICAL security fixes, 14 bug fixes, 6 features, customer config preservation",
|
|
77
|
-
"fix 2 CRITICAL + 1 HIGH from post-fix audit",
|
|
78
|
-
"validate X-Agent-Role against roster — prevent privilege escalation",
|
|
79
|
-
"release: stack v0.9.8 — security hardening + Hygo bug fixes",
|
|
80
|
-
"add webhook HMAC-SHA256 validation + disable query param auth in prod",
|
|
81
|
-
"pin GitHub Actions to SHAs, update jose to 6.2.3",
|
|
82
|
-
"harden support intake against abuse and data leakage",
|
|
83
|
-
"bump to v0.9.22 — Codex MCP parity + customer bug fixes + security audit remediation",
|
|
84
|
-
"audit: pre-hygo exe-gateway security report",
|
|
85
|
-
"add SECURITY.md — trust document for pre-install security evaluation",
|
|
86
|
-
"fix 4 pricing tier bypass vulnerabilities (audit F1-F4)"
|
|
24
|
+
"create schema in daemon polling init",
|
|
25
|
+
"keep release-note generation idempotent"
|
|
87
26
|
],
|
|
27
|
+
"security": [],
|
|
88
28
|
"other": [
|
|
89
|
-
"
|
|
90
|
-
"stack release v0.9.17",
|
|
91
|
-
"cover singleton employee spawn lock",
|
|
92
|
-
"cover registry proxy license auth fallbacks",
|
|
93
|
-
"update release notes for v0.9.243",
|
|
94
|
-
"stack release v0.9.16",
|
|
95
|
-
"bump v0.9.243 for stack release",
|
|
96
|
-
"bump v0.9.242 for stack release",
|
|
97
|
-
"add STACK-RELEASE.md — full release process documentation",
|
|
98
|
-
"claurst competitive analysis — npm distribution + free-tier mode",
|
|
99
|
-
"bump stack.release.json to v0.9.240 for CI image build",
|
|
100
|
-
"update release notes for v0.9.238-239",
|
|
101
|
-
"release: stack v0.9.14 — gateway audit fixes",
|
|
102
|
-
"release: stack v0.9.13 — HYGO deployment readiness",
|
|
103
|
-
"incremental Graph→PG sync — 86K rows → deltas only",
|
|
104
|
-
"batch Graph→PG sync — 500 rows per INSERT instead of row-by-row",
|
|
105
|
-
"consolidate daemon timers into unified orchestration tick (#78)",
|
|
106
|
-
"revise GLiNER — Haiku API now, GLiNER when cost matters",
|
|
107
|
-
"capture GLiNER entity extraction in ARCHITECTURE.md",
|
|
108
|
-
"detailed design system structure + Phase 2 component list",
|
|
109
|
-
"exe-os-design-system — unified design system for all products",
|
|
110
|
-
"GoTrue JWT unified auth architecture — founder directive 2026-06-08",
|
|
111
|
-
"Thread + Graph Discovery architecture — unified knowledge view",
|
|
112
|
-
"move heavy jobs to 9 PM — GraphRAG, skill sweep, backup",
|
|
113
|
-
"Mode 3 Client-Side RAG architecture — memories never leave device"
|
|
29
|
+
"sync release notes"
|
|
114
30
|
],
|
|
115
31
|
"migration_notes": []
|
|
116
32
|
},
|
|
117
|
-
"0.9.
|
|
118
|
-
"version": "0.9.
|
|
33
|
+
"0.9.249": {
|
|
34
|
+
"version": "0.9.249",
|
|
119
35
|
"date": "2026-06-09",
|
|
120
|
-
"features": [
|
|
121
|
-
"Entity Profile UI — knowledge graph explorer + entity detail view",
|
|
122
|
-
"log MCP session open/close to stderr for docker logs visibility",
|
|
123
|
-
"Graph→PostgreSQL sync timer — automatic SQLite→exe-db projection",
|
|
124
|
-
"project GraphRAG data to PostgreSQL during cloud sync pull",
|
|
125
|
-
"add behavior effectiveness tracking — attribution, conflicts, scoring, load",
|
|
126
|
-
"close the reinforcement loop — dreaming reads investigation data",
|
|
127
|
-
"add reviews to Cloudflare support system — separate from bugs/features",
|
|
128
|
-
"self-improvement auto-merges simple fixes, notifies on failures",
|
|
129
|
-
"automatic investigation record system for debugging cycle tracking",
|
|
130
|
-
"smoke test + Playwright E2E + self-improvement cron",
|
|
131
|
-
"P0 procedures — verify your own fix + confidence decay",
|
|
132
|
-
"boot output as formatted table with box-drawing characters",
|
|
133
|
-
"show auto-fix cycle status in exe-os boot",
|
|
134
|
-
"graceful daemon restart — persist MCP sessions for transparent recovery",
|
|
135
|
-
"default to keyword+graph search, embeddings opt-in",
|
|
136
|
-
"server-side telemetry storage + admin insights endpoint",
|
|
137
|
-
"enrich telemetry payload with usage counters and auto-insights",
|
|
138
|
-
"add telemetry auto-insight computation engine",
|
|
139
|
-
"auto-calibration in dreaming cycle + telemetry integration",
|
|
140
|
-
"first-class time estimation on tasks — auto-tracked, queryable",
|
|
141
|
-
"add agent assertion system — confidence tracking on task lifecycle",
|
|
142
|
-
"auto-run dreaming cycle on session end — zero-touch self-improvement",
|
|
143
|
-
"add dreaming system + structured handoffs to platform procedures",
|
|
144
|
-
"add snapshot + boot to platform procedures and operating procedures",
|
|
145
|
-
"add `exe-os boot --project X` CLI command for project boot verification"
|
|
146
|
-
],
|
|
36
|
+
"features": [],
|
|
147
37
|
"fixes": [
|
|
148
|
-
"
|
|
149
|
-
"exclude release-note chores from generated notes",
|
|
150
|
-
"dedupe stale MCP session recovery",
|
|
151
|
-
"embeddings OFF by default for all users — opt-in via EXE_EMBEDDINGS=1",
|
|
152
|
-
"keep generated env templates in sync",
|
|
153
|
-
"bootstrap monitor env and lazy-init recall memory",
|
|
154
|
-
"registry proxy accepts license keys + stack-update reads .env license",
|
|
155
|
-
"stack-release uses defaultBranch per repo (wiki uses master)",
|
|
156
|
-
"prevent stale task intercom prompts",
|
|
157
|
-
"v0.9.241 — 13 more bug fixes (28 total this session)",
|
|
158
|
-
"sync lockfile for Docker build — npm ci --omit=dev works again",
|
|
159
|
-
"keep review notifications session-local and test-safe",
|
|
160
|
-
"CI Dockerfile reference — Dockerfile.exed → Dockerfile.exe-os",
|
|
161
|
-
"v0.9.240 — 15 bug fixes across HYGO, Jack, platform (stack v0.9.15)",
|
|
162
|
-
"keep daemon memory recall FTS bounded",
|
|
163
|
-
"keep daemon cloud sync off CRDT heap path",
|
|
164
|
-
"suppress ENOBUFS in reapers + skip boot-time sync execution",
|
|
165
|
-
"MCP health probe in prompt hook + Docker image build tolerance",
|
|
166
|
-
"plug MCP session memory leak — zombie McpServer instances accumulated",
|
|
167
|
-
"lower RSS watchdog to 1.5/2.5GB + add GC after heavy operations",
|
|
168
|
-
"snapshot crash — daemon fallback + dreaming scope binding",
|
|
169
|
-
"skip duplicate initStore in WS client — prevents 2-8s event loop block",
|
|
170
|
-
"add session scope imports to dreaming, project-boot, telemetry-upload",
|
|
171
|
-
"resolve typecheck errors for npm publish",
|
|
172
|
-
"add setImmediate yields to Graph→PG sync — prevent event loop blocking"
|
|
173
|
-
],
|
|
174
|
-
"security": [
|
|
175
|
-
"fix shell injection, SSRF, socket leaks, backup validation",
|
|
176
|
-
"bump v0.9.139 — 2 CRITICAL security fixes, 14 bug fixes, 6 features, customer config preservation",
|
|
177
|
-
"fix 2 CRITICAL + 1 HIGH from post-fix audit",
|
|
178
|
-
"validate X-Agent-Role against roster — prevent privilege escalation",
|
|
179
|
-
"release: stack v0.9.8 — security hardening + Hygo bug fixes",
|
|
180
|
-
"add webhook HMAC-SHA256 validation + disable query param auth in prod",
|
|
181
|
-
"pin GitHub Actions to SHAs, update jose to 6.2.3",
|
|
182
|
-
"harden support intake against abuse and data leakage",
|
|
183
|
-
"bump to v0.9.22 — Codex MCP parity + customer bug fixes + security audit remediation",
|
|
184
|
-
"audit: pre-hygo exe-gateway security report",
|
|
185
|
-
"add SECURITY.md — trust document for pre-install security evaluation",
|
|
186
|
-
"fix 4 pricing tier bypass vulnerabilities (audit F1-F4)"
|
|
38
|
+
"gateway.json bootstrap in setup.sh — prevent empty config on fresh deploy"
|
|
187
39
|
],
|
|
40
|
+
"security": [],
|
|
188
41
|
"other": [
|
|
189
|
-
"
|
|
190
|
-
"cover
|
|
191
|
-
"update release notes for v0.9.243",
|
|
192
|
-
"stack release v0.9.16",
|
|
193
|
-
"bump v0.9.243 for stack release",
|
|
194
|
-
"bump v0.9.242 for stack release",
|
|
195
|
-
"add STACK-RELEASE.md — full release process documentation",
|
|
196
|
-
"claurst competitive analysis — npm distribution + free-tier mode",
|
|
197
|
-
"bump stack.release.json to v0.9.240 for CI image build",
|
|
198
|
-
"update release notes for v0.9.238-239",
|
|
199
|
-
"release: stack v0.9.14 — gateway audit fixes",
|
|
200
|
-
"release: stack v0.9.13 — HYGO deployment readiness",
|
|
201
|
-
"incremental Graph→PG sync — 86K rows → deltas only",
|
|
202
|
-
"batch Graph→PG sync — 500 rows per INSERT instead of row-by-row",
|
|
203
|
-
"consolidate daemon timers into unified orchestration tick (#78)",
|
|
204
|
-
"revise GLiNER — Haiku API now, GLiNER when cost matters",
|
|
205
|
-
"capture GLiNER entity extraction in ARCHITECTURE.md",
|
|
206
|
-
"detailed design system structure + Phase 2 component list",
|
|
207
|
-
"exe-os-design-system — unified design system for all products",
|
|
208
|
-
"GoTrue JWT unified auth architecture — founder directive 2026-06-08",
|
|
209
|
-
"Thread + Graph Discovery architecture — unified knowledge view",
|
|
210
|
-
"move heavy jobs to 9 PM — GraphRAG, skill sweep, backup",
|
|
211
|
-
"Mode 3 Client-Side RAG architecture — memories never leave device",
|
|
212
|
-
"bump to v0.9.230 — P0 WAL backup corruption fix for Jack",
|
|
213
|
-
"bump to v0.9.225"
|
|
42
|
+
"bump v0.9.249 release notes",
|
|
43
|
+
"cover gateway config bootstrap in setup"
|
|
214
44
|
],
|
|
215
45
|
"migration_notes": []
|
|
216
46
|
},
|
|
217
|
-
"0.9.
|
|
218
|
-
"version": "0.9.
|
|
47
|
+
"0.9.248": {
|
|
48
|
+
"version": "0.9.248",
|
|
219
49
|
"date": "2026-06-09",
|
|
220
|
-
"features": [
|
|
221
|
-
"Entity Profile UI — knowledge graph explorer + entity detail view",
|
|
222
|
-
"log MCP session open/close to stderr for docker logs visibility",
|
|
223
|
-
"Graph→PostgreSQL sync timer — automatic SQLite→exe-db projection",
|
|
224
|
-
"project GraphRAG data to PostgreSQL during cloud sync pull",
|
|
225
|
-
"add behavior effectiveness tracking — attribution, conflicts, scoring, load",
|
|
226
|
-
"close the reinforcement loop — dreaming reads investigation data",
|
|
227
|
-
"add reviews to Cloudflare support system — separate from bugs/features",
|
|
228
|
-
"self-improvement auto-merges simple fixes, notifies on failures",
|
|
229
|
-
"automatic investigation record system for debugging cycle tracking",
|
|
230
|
-
"smoke test + Playwright E2E + self-improvement cron",
|
|
231
|
-
"P0 procedures — verify your own fix + confidence decay",
|
|
232
|
-
"boot output as formatted table with box-drawing characters",
|
|
233
|
-
"show auto-fix cycle status in exe-os boot",
|
|
234
|
-
"graceful daemon restart — persist MCP sessions for transparent recovery",
|
|
235
|
-
"default to keyword+graph search, embeddings opt-in",
|
|
236
|
-
"server-side telemetry storage + admin insights endpoint",
|
|
237
|
-
"enrich telemetry payload with usage counters and auto-insights",
|
|
238
|
-
"add telemetry auto-insight computation engine",
|
|
239
|
-
"auto-calibration in dreaming cycle + telemetry integration",
|
|
240
|
-
"first-class time estimation on tasks — auto-tracked, queryable",
|
|
241
|
-
"add agent assertion system — confidence tracking on task lifecycle",
|
|
242
|
-
"auto-run dreaming cycle on session end — zero-touch self-improvement",
|
|
243
|
-
"add dreaming system + structured handoffs to platform procedures",
|
|
244
|
-
"add snapshot + boot to platform procedures and operating procedures",
|
|
245
|
-
"add `exe-os boot --project X` CLI command for project boot verification"
|
|
246
|
-
],
|
|
50
|
+
"features": [],
|
|
247
51
|
"fixes": [
|
|
248
|
-
"
|
|
249
|
-
"keep generated env templates in sync",
|
|
250
|
-
"bootstrap monitor env and lazy-init recall memory",
|
|
251
|
-
"registry proxy accepts license keys + stack-update reads .env license",
|
|
252
|
-
"stack-release uses defaultBranch per repo (wiki uses master)",
|
|
253
|
-
"prevent stale task intercom prompts",
|
|
254
|
-
"v0.9.241 — 13 more bug fixes (28 total this session)",
|
|
255
|
-
"sync lockfile for Docker build — npm ci --omit=dev works again",
|
|
256
|
-
"keep review notifications session-local and test-safe",
|
|
257
|
-
"CI Dockerfile reference — Dockerfile.exed → Dockerfile.exe-os",
|
|
258
|
-
"v0.9.240 — 15 bug fixes across HYGO, Jack, platform (stack v0.9.15)",
|
|
259
|
-
"keep daemon memory recall FTS bounded",
|
|
260
|
-
"keep daemon cloud sync off CRDT heap path",
|
|
261
|
-
"suppress ENOBUFS in reapers + skip boot-time sync execution",
|
|
262
|
-
"MCP health probe in prompt hook + Docker image build tolerance",
|
|
263
|
-
"plug MCP session memory leak — zombie McpServer instances accumulated",
|
|
264
|
-
"lower RSS watchdog to 1.5/2.5GB + add GC after heavy operations",
|
|
265
|
-
"snapshot crash — daemon fallback + dreaming scope binding",
|
|
266
|
-
"skip duplicate initStore in WS client — prevents 2-8s event loop block",
|
|
267
|
-
"add session scope imports to dreaming, project-boot, telemetry-upload",
|
|
268
|
-
"resolve typecheck errors for npm publish",
|
|
269
|
-
"add setImmediate yields to Graph→PG sync — prevent event loop blocking",
|
|
270
|
-
"convert SQLite short hex IDs to valid UUIDs for PostgreSQL projection",
|
|
271
|
-
"delay initial graph sync tick to 60s + add debug logging",
|
|
272
|
-
"share DB init state between MCP HTTP and timer ticks"
|
|
273
|
-
],
|
|
274
|
-
"security": [
|
|
275
|
-
"fix shell injection, SSRF, socket leaks, backup validation",
|
|
276
|
-
"bump v0.9.139 — 2 CRITICAL security fixes, 14 bug fixes, 6 features, customer config preservation",
|
|
277
|
-
"fix 2 CRITICAL + 1 HIGH from post-fix audit",
|
|
278
|
-
"validate X-Agent-Role against roster — prevent privilege escalation",
|
|
279
|
-
"release: stack v0.9.8 — security hardening + Hygo bug fixes",
|
|
280
|
-
"add webhook HMAC-SHA256 validation + disable query param auth in prod",
|
|
281
|
-
"pin GitHub Actions to SHAs, update jose to 6.2.3",
|
|
282
|
-
"harden support intake against abuse and data leakage",
|
|
283
|
-
"bump to v0.9.22 — Codex MCP parity + customer bug fixes + security audit remediation",
|
|
284
|
-
"audit: pre-hygo exe-gateway security report",
|
|
285
|
-
"add SECURITY.md — trust document for pre-install security evaluation",
|
|
286
|
-
"fix 4 pricing tier bypass vulnerabilities (audit F1-F4)"
|
|
52
|
+
"CRDT default OFF, lid-close recovery, MCP session over-count"
|
|
287
53
|
],
|
|
54
|
+
"security": [],
|
|
288
55
|
"other": [
|
|
289
|
-
"
|
|
290
|
-
"sync v0.9.244 published artifacts",
|
|
291
|
-
"bump v0.9.244",
|
|
292
|
-
"cover registry proxy license auth fallbacks",
|
|
293
|
-
"update release notes for v0.9.243",
|
|
294
|
-
"stack release v0.9.16",
|
|
295
|
-
"bump v0.9.243 for stack release",
|
|
296
|
-
"bump v0.9.242 for stack release",
|
|
297
|
-
"add STACK-RELEASE.md — full release process documentation",
|
|
298
|
-
"claurst competitive analysis — npm distribution + free-tier mode",
|
|
299
|
-
"bump stack.release.json to v0.9.240 for CI image build",
|
|
300
|
-
"update release notes for v0.9.238-239",
|
|
301
|
-
"release: stack v0.9.14 — gateway audit fixes",
|
|
302
|
-
"release: stack v0.9.13 — HYGO deployment readiness",
|
|
303
|
-
"incremental Graph→PG sync — 86K rows → deltas only",
|
|
304
|
-
"batch Graph→PG sync — 500 rows per INSERT instead of row-by-row",
|
|
305
|
-
"consolidate daemon timers into unified orchestration tick (#78)",
|
|
306
|
-
"revise GLiNER — Haiku API now, GLiNER when cost matters",
|
|
307
|
-
"capture GLiNER entity extraction in ARCHITECTURE.md",
|
|
308
|
-
"detailed design system structure + Phase 2 component list",
|
|
309
|
-
"exe-os-design-system — unified design system for all products",
|
|
310
|
-
"GoTrue JWT unified auth architecture — founder directive 2026-06-08",
|
|
311
|
-
"Thread + Graph Discovery architecture — unified knowledge view",
|
|
312
|
-
"move heavy jobs to 9 PM — GraphRAG, skill sweep, backup",
|
|
313
|
-
"Mode 3 Client-Side RAG architecture — memories never leave device"
|
|
56
|
+
"cover MCP autoreconnect warning suppression"
|
|
314
57
|
],
|
|
315
58
|
"migration_notes": []
|
|
316
59
|
},
|
|
317
|
-
"0.9.
|
|
318
|
-
"version": "0.9.
|
|
60
|
+
"0.9.247": {
|
|
61
|
+
"version": "0.9.247",
|
|
319
62
|
"date": "2026-06-09",
|
|
320
63
|
"features": [
|
|
321
64
|
"Entity Profile UI — knowledge graph explorer + entity detail view",
|
|
@@ -345,6 +88,12 @@
|
|
|
345
88
|
"add `exe-os boot --project X` CLI command for project boot verification"
|
|
346
89
|
],
|
|
347
90
|
"fixes": [
|
|
91
|
+
"spawn lock dedup, MCP recovery mutex, health timeout 60→180s",
|
|
92
|
+
"exclude release-note chores from generated notes",
|
|
93
|
+
"dedupe stale MCP session recovery",
|
|
94
|
+
"embeddings OFF by default for all users — opt-in via EXE_EMBEDDINGS=1",
|
|
95
|
+
"keep generated env templates in sync",
|
|
96
|
+
"bootstrap monitor env and lazy-init recall memory",
|
|
348
97
|
"registry proxy accepts license keys + stack-update reads .env license",
|
|
349
98
|
"stack-release uses defaultBranch per repo (wiki uses master)",
|
|
350
99
|
"prevent stale task intercom prompts",
|
|
@@ -363,13 +112,7 @@
|
|
|
363
112
|
"skip duplicate initStore in WS client — prevents 2-8s event loop block",
|
|
364
113
|
"add session scope imports to dreaming, project-boot, telemetry-upload",
|
|
365
114
|
"resolve typecheck errors for npm publish",
|
|
366
|
-
"add setImmediate yields to Graph→PG sync — prevent event loop blocking"
|
|
367
|
-
"convert SQLite short hex IDs to valid UUIDs for PostgreSQL projection",
|
|
368
|
-
"delay initial graph sync tick to 60s + add debug logging",
|
|
369
|
-
"share DB init state between MCP HTTP and timer ticks",
|
|
370
|
-
"allow VPS daemon to run in PostgreSQL-only mode (no encryption key)",
|
|
371
|
-
"detect response body failures — build pass ≠ feature works",
|
|
372
|
-
"coordinators see all tasks cross-session by default"
|
|
115
|
+
"add setImmediate yields to Graph→PG sync — prevent event loop blocking"
|
|
373
116
|
],
|
|
374
117
|
"security": [
|
|
375
118
|
"fix shell injection, SSRF, socket leaks, backup validation",
|
|
@@ -386,7 +129,9 @@
|
|
|
386
129
|
"fix 4 pricing tier bypass vulnerabilities (audit F1-F4)"
|
|
387
130
|
],
|
|
388
131
|
"other": [
|
|
389
|
-
"bump v0.9.
|
|
132
|
+
"bump v0.9.247 for stack manifest release",
|
|
133
|
+
"stack release v0.9.17",
|
|
134
|
+
"cover singleton employee spawn lock",
|
|
390
135
|
"cover registry proxy license auth fallbacks",
|
|
391
136
|
"update release notes for v0.9.243",
|
|
392
137
|
"stack release v0.9.16",
|
|
@@ -408,9 +153,7 @@
|
|
|
408
153
|
"GoTrue JWT unified auth architecture — founder directive 2026-06-08",
|
|
409
154
|
"Thread + Graph Discovery architecture — unified knowledge view",
|
|
410
155
|
"move heavy jobs to 9 PM — GraphRAG, skill sweep, backup",
|
|
411
|
-
"Mode 3 Client-Side RAG architecture — memories never leave device"
|
|
412
|
-
"bump to v0.9.230 — P0 WAL backup corruption fix for Jack",
|
|
413
|
-
"bump to v0.9.225"
|
|
156
|
+
"Mode 3 Client-Side RAG architecture — memories never leave device"
|
|
414
157
|
],
|
|
415
158
|
"migration_notes": []
|
|
416
159
|
}
|
package/stack.release.json
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
"repo": "AskExe/exe-os",
|
|
5
5
|
"service": "exe-os",
|
|
6
6
|
"packageName": "@askexenow/exe-os",
|
|
7
|
-
"version": "0.9.
|
|
8
|
-
"image": "ghcr.io/askexe/exe-os:v0.9.
|
|
7
|
+
"version": "0.9.251",
|
|
8
|
+
"image": "ghcr.io/askexe/exe-os:v0.9.251",
|
|
9
9
|
"imageEnv": "EXE_OS_IMAGE_TAG",
|
|
10
10
|
"stackParticipation": {
|
|
11
11
|
"required": true,
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
},
|
|
48
48
|
"deploymentScope": "customer",
|
|
49
49
|
"highGhostStack": "0.9.9",
|
|
50
|
-
"sourceVersion": "0.9.
|
|
50
|
+
"sourceVersion": "0.9.251"
|
|
51
51
|
}
|
|
File without changes
|