@askexenow/exe-os 0.9.225 → 0.9.226

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.
@@ -331,9 +331,12 @@ async function runUpdate(cliArgs) {
331
331
  }
332
332
  try {
333
333
  console.log("\u{1FA7A} Checking AskExe support intake...");
334
+ const realHome = process.env.SUDO_USER ? execSync(`getent passwd ${process.env.SUDO_USER} | cut -d: -f6`, { encoding: "utf8" }).trim() : "";
335
+ const healthEnv = realHome ? { ...process.env, HOME: realHome, EXE_OS_DIR: `${realHome}/.exe-os` } : void 0;
334
336
  execSync("exe-os support health", {
335
337
  stdio: ["pipe", "inherit", "inherit"],
336
- timeout: 3e4
338
+ timeout: 3e4,
339
+ env: healthEnv
337
340
  });
338
341
  } catch {
339
342
  console.log(" \u26A0\uFE0F Support health check failed. Run: exe-os support test");
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "version": 1,
3
- "generatedAt": "2026-06-08T03:17:19.492Z",
3
+ "generatedAt": "2026-06-08T03:18:37.534Z",
4
4
  "hashes": {
5
5
  "bug-report-worker.js": "fcf35770553ef8afcb3e1b78ca64bda9c338d49ecbf6e649ad04a51429a157f6",
6
6
  "codex-stop-task-finalizer.js": "3248ef35e90e34d0d02ded5d556aaae9ce706e49353cd5a9390aebae0b7101fa",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askexenow/exe-os",
3
- "version": "0.9.225",
3
+ "version": "0.9.226",
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",