@askexenow/exe-os 0.9.27 → 0.9.29
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/cli.js +7 -13
- package/dist/bin/exe-start-codex.js +7 -13
- package/dist/bin/install.js +7 -13
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -30264,8 +30264,7 @@ async function mergeCodexHooks(packageRoot, homeDir = os20.homedir()) {
|
|
|
30264
30264
|
{
|
|
30265
30265
|
type: "command",
|
|
30266
30266
|
command: `node "${path45.join(packageRoot, "dist", "hooks", "session-start.js")}"${logSuffix}`,
|
|
30267
|
-
timeout: 30
|
|
30268
|
-
statusMessage: "exe-os: loading memory brief"
|
|
30267
|
+
timeout: 30
|
|
30269
30268
|
}
|
|
30270
30269
|
]
|
|
30271
30270
|
},
|
|
@@ -30277,29 +30276,24 @@ async function mergeCodexHooks(packageRoot, homeDir = os20.homedir()) {
|
|
|
30277
30276
|
matcher: "Bash|apply_patch|Edit|Write|Read|Glob|Grep|mcp__.*",
|
|
30278
30277
|
hooks: [
|
|
30279
30278
|
{
|
|
30279
|
+
// Combined hook: runs ingest + error-recall in one Node process.
|
|
30280
|
+
// Eliminates a cold-start cycle per tool call (~3-6s savings on Codex).
|
|
30280
30281
|
type: "command",
|
|
30281
|
-
command: `node "${path45.join(packageRoot, "dist", "hooks", "
|
|
30282
|
-
},
|
|
30283
|
-
{
|
|
30284
|
-
type: "command",
|
|
30285
|
-
command: `node "${path45.join(packageRoot, "dist", "hooks", "error-recall.js")}"${logSuffix}`
|
|
30282
|
+
command: `node "${path45.join(packageRoot, "dist", "hooks", "post-tool-combined.js")}"${logSuffix}`
|
|
30286
30283
|
}
|
|
30287
30284
|
]
|
|
30288
30285
|
},
|
|
30289
|
-
marker: "dist/hooks/
|
|
30286
|
+
marker: "dist/hooks/post-tool-combined.js"
|
|
30290
30287
|
},
|
|
30291
30288
|
{
|
|
30292
30289
|
event: "UserPromptSubmit",
|
|
30293
30290
|
group: {
|
|
30294
30291
|
hooks: [
|
|
30295
30292
|
{
|
|
30293
|
+
// Single hook: prompt-submit handles memory retrieval + entity boost.
|
|
30294
|
+
// exe-heartbeat-hook is CC-specific (intercom) — omitted on Codex.
|
|
30296
30295
|
type: "command",
|
|
30297
30296
|
command: `node "${path45.join(packageRoot, "dist", "hooks", "prompt-submit.js")}"${logSuffix}`
|
|
30298
|
-
},
|
|
30299
|
-
{
|
|
30300
|
-
type: "command",
|
|
30301
|
-
command: `node "${path45.join(packageRoot, "dist", "hooks", "exe-heartbeat-hook.js")}"${logSuffix}`,
|
|
30302
|
-
timeout: 5
|
|
30303
30297
|
}
|
|
30304
30298
|
]
|
|
30305
30299
|
},
|
|
@@ -3565,8 +3565,7 @@ async function mergeCodexHooks(packageRoot, homeDir = os10.homedir()) {
|
|
|
3565
3565
|
{
|
|
3566
3566
|
type: "command",
|
|
3567
3567
|
command: `node "${path13.join(packageRoot, "dist", "hooks", "session-start.js")}"${logSuffix}`,
|
|
3568
|
-
timeout: 30
|
|
3569
|
-
statusMessage: "exe-os: loading memory brief"
|
|
3568
|
+
timeout: 30
|
|
3570
3569
|
}
|
|
3571
3570
|
]
|
|
3572
3571
|
},
|
|
@@ -3578,29 +3577,24 @@ async function mergeCodexHooks(packageRoot, homeDir = os10.homedir()) {
|
|
|
3578
3577
|
matcher: "Bash|apply_patch|Edit|Write|Read|Glob|Grep|mcp__.*",
|
|
3579
3578
|
hooks: [
|
|
3580
3579
|
{
|
|
3580
|
+
// Combined hook: runs ingest + error-recall in one Node process.
|
|
3581
|
+
// Eliminates a cold-start cycle per tool call (~3-6s savings on Codex).
|
|
3581
3582
|
type: "command",
|
|
3582
|
-
command: `node "${path13.join(packageRoot, "dist", "hooks", "
|
|
3583
|
-
},
|
|
3584
|
-
{
|
|
3585
|
-
type: "command",
|
|
3586
|
-
command: `node "${path13.join(packageRoot, "dist", "hooks", "error-recall.js")}"${logSuffix}`
|
|
3583
|
+
command: `node "${path13.join(packageRoot, "dist", "hooks", "post-tool-combined.js")}"${logSuffix}`
|
|
3587
3584
|
}
|
|
3588
3585
|
]
|
|
3589
3586
|
},
|
|
3590
|
-
marker: "dist/hooks/
|
|
3587
|
+
marker: "dist/hooks/post-tool-combined.js"
|
|
3591
3588
|
},
|
|
3592
3589
|
{
|
|
3593
3590
|
event: "UserPromptSubmit",
|
|
3594
3591
|
group: {
|
|
3595
3592
|
hooks: [
|
|
3596
3593
|
{
|
|
3594
|
+
// Single hook: prompt-submit handles memory retrieval + entity boost.
|
|
3595
|
+
// exe-heartbeat-hook is CC-specific (intercom) — omitted on Codex.
|
|
3597
3596
|
type: "command",
|
|
3598
3597
|
command: `node "${path13.join(packageRoot, "dist", "hooks", "prompt-submit.js")}"${logSuffix}`
|
|
3599
|
-
},
|
|
3600
|
-
{
|
|
3601
|
-
type: "command",
|
|
3602
|
-
command: `node "${path13.join(packageRoot, "dist", "hooks", "exe-heartbeat-hook.js")}"${logSuffix}`,
|
|
3603
|
-
timeout: 5
|
|
3604
3598
|
}
|
|
3605
3599
|
]
|
|
3606
3600
|
},
|
package/dist/bin/install.js
CHANGED
|
@@ -1454,8 +1454,7 @@ async function mergeCodexHooks(packageRoot, homeDir = os6.homedir()) {
|
|
|
1454
1454
|
{
|
|
1455
1455
|
type: "command",
|
|
1456
1456
|
command: `node "${path8.join(packageRoot, "dist", "hooks", "session-start.js")}"${logSuffix}`,
|
|
1457
|
-
timeout: 30
|
|
1458
|
-
statusMessage: "exe-os: loading memory brief"
|
|
1457
|
+
timeout: 30
|
|
1459
1458
|
}
|
|
1460
1459
|
]
|
|
1461
1460
|
},
|
|
@@ -1467,29 +1466,24 @@ async function mergeCodexHooks(packageRoot, homeDir = os6.homedir()) {
|
|
|
1467
1466
|
matcher: "Bash|apply_patch|Edit|Write|Read|Glob|Grep|mcp__.*",
|
|
1468
1467
|
hooks: [
|
|
1469
1468
|
{
|
|
1469
|
+
// Combined hook: runs ingest + error-recall in one Node process.
|
|
1470
|
+
// Eliminates a cold-start cycle per tool call (~3-6s savings on Codex).
|
|
1470
1471
|
type: "command",
|
|
1471
|
-
command: `node "${path8.join(packageRoot, "dist", "hooks", "
|
|
1472
|
-
},
|
|
1473
|
-
{
|
|
1474
|
-
type: "command",
|
|
1475
|
-
command: `node "${path8.join(packageRoot, "dist", "hooks", "error-recall.js")}"${logSuffix}`
|
|
1472
|
+
command: `node "${path8.join(packageRoot, "dist", "hooks", "post-tool-combined.js")}"${logSuffix}`
|
|
1476
1473
|
}
|
|
1477
1474
|
]
|
|
1478
1475
|
},
|
|
1479
|
-
marker: "dist/hooks/
|
|
1476
|
+
marker: "dist/hooks/post-tool-combined.js"
|
|
1480
1477
|
},
|
|
1481
1478
|
{
|
|
1482
1479
|
event: "UserPromptSubmit",
|
|
1483
1480
|
group: {
|
|
1484
1481
|
hooks: [
|
|
1485
1482
|
{
|
|
1483
|
+
// Single hook: prompt-submit handles memory retrieval + entity boost.
|
|
1484
|
+
// exe-heartbeat-hook is CC-specific (intercom) — omitted on Codex.
|
|
1486
1485
|
type: "command",
|
|
1487
1486
|
command: `node "${path8.join(packageRoot, "dist", "hooks", "prompt-submit.js")}"${logSuffix}`
|
|
1488
|
-
},
|
|
1489
|
-
{
|
|
1490
|
-
type: "command",
|
|
1491
|
-
command: `node "${path8.join(packageRoot, "dist", "hooks", "exe-heartbeat-hook.js")}"${logSuffix}`,
|
|
1492
|
-
timeout: 5
|
|
1493
1487
|
}
|
|
1494
1488
|
]
|
|
1495
1489
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askexenow/exe-os",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.29",
|
|
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",
|