@askexenow/exe-os 0.9.167 → 0.9.168
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.
|
@@ -48,13 +48,6 @@ try {
|
|
|
48
48
|
} catch {
|
|
49
49
|
}
|
|
50
50
|
var totalGB = os.totalmem() / (1024 * 1024 * 1024);
|
|
51
|
-
if (totalGB <= 8) {
|
|
52
|
-
process.stderr.write(
|
|
53
|
-
`[deferred-restart] ${totalGB.toFixed(0)}GB system \u2014 skipping daemon spawn
|
|
54
|
-
`
|
|
55
|
-
);
|
|
56
|
-
process.exit(0);
|
|
57
|
-
}
|
|
58
51
|
function resolvePackageRoot() {
|
|
59
52
|
let dir = path.dirname(new URL(import.meta.url).pathname);
|
|
60
53
|
for (let i = 0; i < 5; i++) {
|
package/dist/bin/install.js
CHANGED
|
@@ -35,11 +35,6 @@ var homedir = os.homedir;
|
|
|
35
35
|
var EXE_DIR = path.join(homedir(), ".exe-os");
|
|
36
36
|
function spawnDaemonInline(pkgRoot) {
|
|
37
37
|
const totalGB = os.totalmem() / (1024 * 1024 * 1024);
|
|
38
|
-
if (totalGB <= 8) {
|
|
39
|
-
process.stderr.write(`exe-os: ${totalGB.toFixed(0)}GB system \u2014 skipping daemon spawn
|
|
40
|
-
`);
|
|
41
|
-
return;
|
|
42
|
-
}
|
|
43
38
|
const daemonPath = path.join(pkgRoot, "dist", "lib", "exe-daemon.js");
|
|
44
39
|
if (!existsSync(daemonPath)) {
|
|
45
40
|
process.stderr.write(`exe-os: daemon not found at ${daemonPath} \u2014 skipping
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@askexenow/exe-os",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.168",
|
|
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",
|