@askexenow/exe-os 0.9.49 → 0.9.51
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 +15 -2
- package/dist/bin/update.js +14 -1
- package/package.json +1 -1
package/dist/bin/cli.js
CHANGED
|
@@ -16607,7 +16607,20 @@ async function runUpdate(cliArgs) {
|
|
|
16607
16607
|
} catch {
|
|
16608
16608
|
}
|
|
16609
16609
|
}
|
|
16610
|
-
console.log("
|
|
16610
|
+
console.log("\u{1F527} Re-registering MCP, hooks, wrappers, and daemon...");
|
|
16611
|
+
try {
|
|
16612
|
+
execSync13("exe-os-install --global", {
|
|
16613
|
+
stdio: ["pipe", "inherit", "inherit"],
|
|
16614
|
+
timeout: 3e5
|
|
16615
|
+
});
|
|
16616
|
+
} catch (err) {
|
|
16617
|
+
console.error("\n\u26A0\uFE0F Package updated, but post-update install failed.");
|
|
16618
|
+
console.error(" Run manually: exe-os-install --global");
|
|
16619
|
+
if (err instanceof Error && err.message) {
|
|
16620
|
+
console.error(` Error: ${err.message.split("\n")[0]}`);
|
|
16621
|
+
}
|
|
16622
|
+
}
|
|
16623
|
+
console.log(" MCP, hooks, and daemon refreshed.");
|
|
16611
16624
|
console.log("");
|
|
16612
16625
|
console.log(" \x1B[33m\u26A1 Run /mcp in each active Claude Code session to pick up new tools.\x1B[0m");
|
|
16613
16626
|
console.log(" \x1B[2m(MCP servers can't hot-reload \u2014 Claude Code needs to reconnect them.)\x1B[0m");
|
|
@@ -32413,7 +32426,7 @@ async function checkForUpdateOnBoot() {
|
|
|
32413
32426
|
const result = checkForUpdate2(packageRoot);
|
|
32414
32427
|
if (result.updateAvailable) {
|
|
32415
32428
|
process.stderr.write(
|
|
32416
|
-
`\x1B[33m[update]\x1B[0m exe-os v${result.remoteVersion} available (current: v${result.localVersion}). Run \x1B[
|
|
32429
|
+
`\x1B[33m[update]\x1B[0m exe-os v${result.remoteVersion} available (current: v${result.localVersion}). Run \x1B[36mexe-os update\x1B[0m to upgrade.
|
|
32417
32430
|
`
|
|
32418
32431
|
);
|
|
32419
32432
|
}
|
package/dist/bin/update.js
CHANGED
|
@@ -901,7 +901,20 @@ async function runUpdate(cliArgs) {
|
|
|
901
901
|
} catch {
|
|
902
902
|
}
|
|
903
903
|
}
|
|
904
|
-
console.log("
|
|
904
|
+
console.log("\u{1F527} Re-registering MCP, hooks, wrappers, and daemon...");
|
|
905
|
+
try {
|
|
906
|
+
execSync2("exe-os-install --global", {
|
|
907
|
+
stdio: ["pipe", "inherit", "inherit"],
|
|
908
|
+
timeout: 3e5
|
|
909
|
+
});
|
|
910
|
+
} catch (err) {
|
|
911
|
+
console.error("\n\u26A0\uFE0F Package updated, but post-update install failed.");
|
|
912
|
+
console.error(" Run manually: exe-os-install --global");
|
|
913
|
+
if (err instanceof Error && err.message) {
|
|
914
|
+
console.error(` Error: ${err.message.split("\n")[0]}`);
|
|
915
|
+
}
|
|
916
|
+
}
|
|
917
|
+
console.log(" MCP, hooks, and daemon refreshed.");
|
|
905
918
|
console.log("");
|
|
906
919
|
console.log(" \x1B[33m\u26A1 Run /mcp in each active Claude Code session to pick up new tools.\x1B[0m");
|
|
907
920
|
console.log(" \x1B[2m(MCP servers can't hot-reload \u2014 Claude Code needs to reconnect them.)\x1B[0m");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askexenow/exe-os",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.51",
|
|
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",
|