@askexenow/exe-os 0.9.192 → 0.9.194
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/stack-manifests/v0.9.json +7 -7
- package/dist/bin/install.js +1 -1
- package/dist/bin/stack-update.js +1 -1
- package/dist/bin/vps-health-gate.js +1 -1
- package/dist/{chunk-A6Z2S653.js → chunk-MJYXPMPW.js} +14 -2
- package/dist/{stack-update-L4JGJZ7E.js → stack-update-ODIHZZCZ.js} +1 -1
- package/package.json +1 -1
|
@@ -618,37 +618,37 @@
|
|
|
618
618
|
"0.9.11": {
|
|
619
619
|
"version": "0.9.11",
|
|
620
620
|
"releasedAt": "2026-06-02T00:00:00Z",
|
|
621
|
-
"notes": "HYGO deployment: encrypted R2 backups (daily + pre-update), ambassador pipeline, asana webhook, VPS guardrails (WA guard, disk monitor, env versioning, health gate), daemon perf (async pane capture, reconnect jitter), graceful idle shutdown, retrieval architecture procedure, conversation import tool.",
|
|
621
|
+
"notes": "HYGO deployment: encrypted R2 backups (daily + pre-update), ambassador pipeline, asana webhook, VPS guardrails (WA guard, disk monitor, env versioning, health gate), daemon perf (async pane capture, reconnect jitter), graceful idle shutdown, retrieval architecture procedure, conversation import tool. Registry consolidated to update.askexe.com.",
|
|
622
622
|
"npmVersion": "0.9.158",
|
|
623
623
|
"breakingChanges": [],
|
|
624
624
|
"services": {
|
|
625
625
|
"crm": {
|
|
626
|
-
"image": "
|
|
626
|
+
"image": "update.askexe.com/askexe/exe-crm:v0.9.4",
|
|
627
627
|
"env": "CRM_IMAGE_TAG",
|
|
628
628
|
"composeService": "exe-crm"
|
|
629
629
|
},
|
|
630
630
|
"wiki": {
|
|
631
|
-
"image": "
|
|
631
|
+
"image": "update.askexe.com/askexe/exe-wiki:v0.9.5",
|
|
632
632
|
"env": "WIKI_IMAGE_TAG",
|
|
633
633
|
"composeService": "exe-wiki"
|
|
634
634
|
},
|
|
635
635
|
"exe-os": {
|
|
636
|
-
"image": "
|
|
636
|
+
"image": "update.askexe.com/askexe/exe-os:v0.9.185",
|
|
637
637
|
"env": "EXE_OS_IMAGE_TAG",
|
|
638
638
|
"composeService": "exe-os"
|
|
639
639
|
},
|
|
640
640
|
"gateway": {
|
|
641
|
-
"image": "
|
|
641
|
+
"image": "update.askexe.com/askexe/exe-gateway:v0.9.7",
|
|
642
642
|
"env": "GATEWAY_IMAGE_TAG",
|
|
643
643
|
"composeService": "exe-gateway"
|
|
644
644
|
},
|
|
645
645
|
"monitorAgent": {
|
|
646
|
-
"image": "
|
|
646
|
+
"image": "update.askexe.com/askexe/exe-monitor-agent:v0.9.4",
|
|
647
647
|
"env": "MONITOR_AGENT_IMAGE_TAG",
|
|
648
648
|
"composeService": "exe-monitor-agent"
|
|
649
649
|
},
|
|
650
650
|
"monitorHub": {
|
|
651
|
-
"image": "
|
|
651
|
+
"image": "update.askexe.com/askexe/exe-monitor-hub:v0.9.5",
|
|
652
652
|
"env": "MONITOR_HUB_IMAGE_TAG",
|
|
653
653
|
"composeService": "exe-monitor-hub"
|
|
654
654
|
}
|
package/dist/bin/install.js
CHANGED
|
@@ -104,7 +104,7 @@ function setupDaemonKeepalive() {
|
|
|
104
104
|
const daemonPath = path.join(pkgRoot, "dist", "lib", "exe-daemon.js");
|
|
105
105
|
const nodePath = process.execPath;
|
|
106
106
|
const home = os.homedir();
|
|
107
|
-
const heapCapMB = totalGB <=
|
|
107
|
+
const heapCapMB = totalGB <= 8 ? 256 : totalGB <= 16 ? 2048 : Math.min(Math.round(totalGB * 0.25 * 1024), 32768);
|
|
108
108
|
const plistContent = `<?xml version="1.0" encoding="UTF-8"?>
|
|
109
109
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
110
110
|
<plist version="1.0">
|
package/dist/bin/stack-update.js
CHANGED
|
@@ -207,7 +207,7 @@ async function main(args) {
|
|
|
207
207
|
console.log("[health-gate] Starting rollback...");
|
|
208
208
|
restorePreDeployBackup();
|
|
209
209
|
try {
|
|
210
|
-
const { rollbackStackUpdate, defaultStackPaths } = await import("../stack-update-
|
|
210
|
+
const { rollbackStackUpdate, defaultStackPaths } = await import("../stack-update-ODIHZZCZ.js");
|
|
211
211
|
const paths = defaultStackPaths();
|
|
212
212
|
await rollbackStackUpdate({
|
|
213
213
|
manifestRef: paths.manifestRef,
|
|
@@ -627,8 +627,20 @@ async function runStackUpdate(options) {
|
|
|
627
627
|
const [username, ...rest] = manual.split(":");
|
|
628
628
|
const password = rest.join(":");
|
|
629
629
|
if (username && password) {
|
|
630
|
-
|
|
631
|
-
|
|
630
|
+
const sampleImage = Object.values(plan.release.services)[0]?.image ?? "";
|
|
631
|
+
const registry = sampleImage.startsWith("update.askexe.com") ? "update.askexe.com" : sampleImage.startsWith("registry.askexe.com") ? "registry.askexe.com" : "ghcr.io";
|
|
632
|
+
creds = { registry, username, password };
|
|
633
|
+
console.log(`[stack-update] Using manual registry credentials for ${registry}.`);
|
|
634
|
+
}
|
|
635
|
+
}
|
|
636
|
+
}
|
|
637
|
+
if (!creds) {
|
|
638
|
+
const sampleImage = Object.values(plan.release.services)[0]?.image ?? "";
|
|
639
|
+
if (sampleImage.startsWith("update.askexe.com")) {
|
|
640
|
+
const licenseKey = options.manifestAuthToken || options.licenseKey || process.env.EXE_LICENSE_KEY;
|
|
641
|
+
if (licenseKey) {
|
|
642
|
+
creds = { registry: "update.askexe.com", username: "license", password: licenseKey };
|
|
643
|
+
console.log("[stack-update] Using license key for update.askexe.com registry auth.");
|
|
632
644
|
}
|
|
633
645
|
}
|
|
634
646
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askexenow/exe-os",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.194",
|
|
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",
|