@askexenow/exe-os 0.9.259 → 0.9.260
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/exe-forget.js +1 -1
- package/dist/bin/exe-search.js +1 -1
- package/dist/bin/pre-publish.js +2 -1
- package/dist/{catchup-brief-UML47LXI.js → catchup-brief-AXA4DAQI.js} +1 -1
- package/dist/{chunk-C6SSCNOC.js → chunk-R4EZGQWL.js} +2 -2
- package/dist/{chunk-DYURFBPS.js → chunk-SLF7JRLG.js} +3 -3
- 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 +11 -0
- 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-DN2A3H6O.js → reranker-CE3XG56J.js} +1 -1
- package/package.json +1 -1
- package/release-notes.json +14 -15
- /package/dist/{chunk-BRSI3FD6.js → chunk-VJXVTH3Q.js} +0 -0
package/dist/bin/exe-forget.js
CHANGED
package/dist/bin/exe-search.js
CHANGED
package/dist/bin/pre-publish.js
CHANGED
|
@@ -82,7 +82,8 @@ function isReleaseNoiseCommitSummary(summary) {
|
|
|
82
82
|
/^bump(?: v\d+\.\d+\.\d+(?:-.+)?)?(?: release notes)?$/i.test(normalized) || // "bump v0.9.251 for stack release", "bump v0.9.247 for stack manifest release"
|
|
83
83
|
/^bump v\d+\.\d+\.\d+(?:-.+)? for stack\b.*release$/i.test(normalized) || // "sync v0.9.248 release notes", "sync release notes", "stabilize v0.9.246 release notes"
|
|
84
84
|
/^(?:sync|stabilize)(?: v\d+\.\d+\.\d+(?:-.+)?)? release notes$/i.test(normalized) || // "sync v0.9.249 published artifacts"
|
|
85
|
-
/^sync(?: v\d+\.\d+\.\d+(?:-.+)?)? published artifacts$/i.test(normalized) || // "
|
|
85
|
+
/^sync(?: v\d+\.\d+\.\d+(?:-.+)?)? published artifacts$/i.test(normalized) || // "release exe-os 0.9.259"
|
|
86
|
+
/^release exe-os \d+\.\d+\.\d+(?:-.+)?$/i.test(normalized) || // "stack release v0.9.18"
|
|
86
87
|
/^stack release v\d+\.\d+\.\d+(?:-.+)?$/i.test(normalized) || // Any summary containing "release notes" as a phrase (catch-all for chore noise)
|
|
87
88
|
/\brelease notes\b/i.test(normalized)
|
|
88
89
|
);
|
|
@@ -10,7 +10,7 @@ import {
|
|
|
10
10
|
import {
|
|
11
11
|
isRerankerAvailable,
|
|
12
12
|
rerankWithScores
|
|
13
|
-
} from "./chunk-
|
|
13
|
+
} from "./chunk-VJXVTH3Q.js";
|
|
14
14
|
import {
|
|
15
15
|
getCachedLicenseGate
|
|
16
16
|
} from "./chunk-2WBBVEIB.js";
|
|
@@ -194,7 +194,7 @@ import {
|
|
|
194
194
|
import {
|
|
195
195
|
hybridSearch,
|
|
196
196
|
recentRecords
|
|
197
|
-
} from "./chunk-
|
|
197
|
+
} from "./chunk-SLF7JRLG.js";
|
|
198
198
|
import {
|
|
199
199
|
attachDocumentMetadata,
|
|
200
200
|
flushBatch,
|
|
@@ -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-CE3XG56J.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-CE3XG56J.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-CE3XG56J.js");
|
|
464
464
|
rerankedRecords = await rerank(effectiveQuery, merged, rerankReturnLimit);
|
|
465
465
|
}
|
|
466
466
|
if (rerankedRecords.length > 0) {
|
package/dist/hooks/manifest.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"version": 1,
|
|
3
|
-
"generatedAt": "2026-06-10T01:
|
|
3
|
+
"generatedAt": "2026-06-10T01:41:19.921Z",
|
|
4
4
|
"hashes": {
|
|
5
5
|
"bug-report-worker.js": "8532fe58727b16c1aba677ac40ce7a4c536169a71bf8c7a5ed84fbf031eaa588",
|
|
6
6
|
"codex-stop-task-finalizer.js": "07633132352f5ac1f61b5da2f875f5ef1cbcc783d901b8c007aec90ddd94ecd0",
|
|
7
7
|
"commit-complete.js": "09fdb4ede113437068be1f573bd7f6b49d454fabb79ed29f4119f3a1c2994eb7",
|
|
8
|
-
"error-recall.js": "
|
|
8
|
+
"error-recall.js": "d879ccad51f77d11d810a9061247208a0fb25438bbe02ca7213155da37804cb8",
|
|
9
9
|
"exe-heartbeat-hook.js": "6e762a5f392f62c09ebfbfb393da3695b896465b2852b7619b85b671669df5d0",
|
|
10
10
|
"ingest-worker.js": "1f6a591f863d5bc540b0e11bb382d3ba13cf761709e4a82313f6f1d9fb9c18e2",
|
|
11
11
|
"ingest.js": "9e8df19d486ec3278a8593314450dd31c83f0b09df74ceb37016e15c8b1fe371",
|
|
@@ -15,9 +15,9 @@
|
|
|
15
15
|
"post-tool-combined.js": "2aafff95908d57520e0ae6fa266aa6339372e259cfecbc60758fd02c79e363a3",
|
|
16
16
|
"pre-compact.js": "8f220506a364827540ff52d9eb4f0aed97307fd7e77efe9862877f662c85208c",
|
|
17
17
|
"pre-tool-use.js": "4523911a7b7ccd399fd79d270b4e1df0bfac5524f959e21320b8a026f9807a4c",
|
|
18
|
-
"prompt-submit.js": "
|
|
18
|
+
"prompt-submit.js": "e22746b43683cbc8153bcbdecd846d20e187b04400c8bb9a479fb6a5070e1feb",
|
|
19
19
|
"session-end.js": "08bcfedfdccde8555c8fbddaff8ffc1ea5494cd6ee2561b08cc115b3cbfdf75f",
|
|
20
|
-
"session-start.js": "
|
|
20
|
+
"session-start.js": "31fdf3208e675dba24b6f650dd5a42e0a12c9957de575b014eb60eb628cd3068",
|
|
21
21
|
"stop.js": "f9aa4e20f18c24e5a1f4a3c1c13116273f7fc779e5aa54ffb5a3bd62198e72bc",
|
|
22
22
|
"subagent-stop.js": "1e5c73c9b095d6c3847ebcdee8dc8cfceb615be5d03da5d2357243ee6be7e5c7",
|
|
23
23
|
"summary-worker.js": "e6ad257c9445d6b8c3e7eb13bb9a9b3f4f93955941eb2b784b43690ac2705de0"
|
|
@@ -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-AXA4DAQI.js");
|
|
167
167
|
const brief = await buildCatchupBrief(
|
|
168
168
|
agentId,
|
|
169
169
|
projectName,
|
package/dist/lib/exe-daemon.js
CHANGED
|
@@ -854,6 +854,17 @@ async function loadModel() {
|
|
|
854
854
|
_embeddingsDisabledByDesign = true;
|
|
855
855
|
return;
|
|
856
856
|
}
|
|
857
|
+
try {
|
|
858
|
+
const { loadConfigSync } = await import("./config.js");
|
|
859
|
+
const cfg = loadConfigSync?.();
|
|
860
|
+
if (cfg?.searchMode === "fts") {
|
|
861
|
+
process.stderr.write(`[exed] Embeddings disabled by config (searchMode=fts) \u2014 FTS+Graph only.
|
|
862
|
+
`);
|
|
863
|
+
_embeddingsDisabledByDesign = true;
|
|
864
|
+
return;
|
|
865
|
+
}
|
|
866
|
+
} catch {
|
|
867
|
+
}
|
|
857
868
|
const modelPath = path4.join(MODELS_DIR, MODEL_FILE);
|
|
858
869
|
if (!existsSync4(modelPath)) {
|
|
859
870
|
process.stderr.write(`[exed] No model at ${modelPath} \u2014 running without embeddings (VPS mode).
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import {
|
|
2
2
|
registerAllTools
|
|
3
|
-
} from "../chunk-
|
|
3
|
+
} from "../chunk-R4EZGQWL.js";
|
|
4
4
|
import "../chunk-GIHMDOSK.js";
|
|
5
5
|
import "../chunk-557C2IGL.js";
|
|
6
6
|
import "../chunk-COKTAJUZ.js";
|
|
7
7
|
import "../chunk-VLX6AHTD.js";
|
|
8
|
-
import "../chunk-
|
|
8
|
+
import "../chunk-VJXVTH3Q.js";
|
|
9
9
|
import "../chunk-2WBBVEIB.js";
|
|
10
10
|
import "../chunk-H6QJT5O5.js";
|
|
11
11
|
import "../chunk-BBPRL2MP.js";
|
|
@@ -61,7 +61,7 @@ import "../chunk-RFJESVEL.js";
|
|
|
61
61
|
import "../chunk-HDWVXSGO.js";
|
|
62
62
|
import "../chunk-Z2AEOVEZ.js";
|
|
63
63
|
import "../chunk-7IZWLMTP.js";
|
|
64
|
-
import "../chunk-
|
|
64
|
+
import "../chunk-SLF7JRLG.js";
|
|
65
65
|
import "../chunk-AQS2B3HC.js";
|
|
66
66
|
import "../chunk-CHCA3ZM2.js";
|
|
67
67
|
import "../chunk-2H3FVAN3.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-R4EZGQWL.js";
|
|
7
7
|
import "../chunk-GIHMDOSK.js";
|
|
8
8
|
import "../chunk-557C2IGL.js";
|
|
9
9
|
import "../chunk-COKTAJUZ.js";
|
|
10
10
|
import "../chunk-VLX6AHTD.js";
|
|
11
|
-
import "../chunk-
|
|
11
|
+
import "../chunk-VJXVTH3Q.js";
|
|
12
12
|
import {
|
|
13
13
|
initLicenseGate
|
|
14
14
|
} from "../chunk-2WBBVEIB.js";
|
|
@@ -71,7 +71,7 @@ import "../chunk-RFJESVEL.js";
|
|
|
71
71
|
import "../chunk-HDWVXSGO.js";
|
|
72
72
|
import "../chunk-Z2AEOVEZ.js";
|
|
73
73
|
import "../chunk-7IZWLMTP.js";
|
|
74
|
-
import "../chunk-
|
|
74
|
+
import "../chunk-SLF7JRLG.js";
|
|
75
75
|
import {
|
|
76
76
|
disposeStore,
|
|
77
77
|
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.260",
|
|
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,6 +1,18 @@
|
|
|
1
1
|
{
|
|
2
|
-
"current": "0.9.
|
|
2
|
+
"current": "0.9.260",
|
|
3
3
|
"notes": {
|
|
4
|
+
"0.9.260": {
|
|
5
|
+
"version": "0.9.260",
|
|
6
|
+
"date": "2026-06-10",
|
|
7
|
+
"features": [],
|
|
8
|
+
"fixes": [
|
|
9
|
+
"honor searchMode=fts — never run embed worker when config says FTS-only",
|
|
10
|
+
"ignore release chore commits in release metadata"
|
|
11
|
+
],
|
|
12
|
+
"security": [],
|
|
13
|
+
"other": [],
|
|
14
|
+
"migration_notes": []
|
|
15
|
+
},
|
|
4
16
|
"0.9.259": {
|
|
5
17
|
"version": "0.9.259",
|
|
6
18
|
"date": "2026-06-10",
|
|
@@ -9,9 +21,7 @@
|
|
|
9
21
|
],
|
|
10
22
|
"fixes": [],
|
|
11
23
|
"security": [],
|
|
12
|
-
"other": [
|
|
13
|
-
"release exe-os 0.9.259"
|
|
14
|
-
],
|
|
24
|
+
"other": [],
|
|
15
25
|
"migration_notes": []
|
|
16
26
|
},
|
|
17
27
|
"0.9.258": {
|
|
@@ -49,17 +59,6 @@
|
|
|
49
59
|
"security": [],
|
|
50
60
|
"other": [],
|
|
51
61
|
"migration_notes": []
|
|
52
|
-
},
|
|
53
|
-
"0.9.252": {
|
|
54
|
-
"version": "0.9.252",
|
|
55
|
-
"date": "2026-06-09",
|
|
56
|
-
"features": [],
|
|
57
|
-
"fixes": [
|
|
58
|
-
"filter stack-release chores from release notes"
|
|
59
|
-
],
|
|
60
|
-
"security": [],
|
|
61
|
-
"other": [],
|
|
62
|
-
"migration_notes": []
|
|
63
62
|
}
|
|
64
63
|
}
|
|
65
64
|
}
|
|
File without changes
|