@askexenow/exe-os 0.9.75 → 0.9.76

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.
Files changed (2) hide show
  1. package/dist/hooks/stop.js +15 -15
  2. package/package.json +1 -1
@@ -6296,9 +6296,7 @@ if (!process.env.AGENT_ID) {
6296
6296
  process.env.AGENT_ID = "default";
6297
6297
  process.env.AGENT_ROLE = "employee";
6298
6298
  }
6299
- if (!loadConfigSync().autoIngestion) {
6300
- process.exit(0);
6301
- }
6299
+ var AUTO_INGESTION_ENABLED = loadConfigSync().autoIngestion;
6302
6300
  var WORKER_LOG_PATH = path18.join(EXE_AI_DIR, "workers.log");
6303
6301
  function openWorkerLog() {
6304
6302
  try {
@@ -6443,18 +6441,20 @@ process.stdin.on("end", async () => {
6443
6441
  }).catch(() => {
6444
6442
  });
6445
6443
  }
6446
- Promise.resolve().then(() => (init_memory_queue_client(), memory_queue_client_exports)).then(
6447
- ({ writeMemoryViaDaemon: writeMemoryViaDaemon2 }) => writeMemoryViaDaemon2({
6448
- raw_text: message.slice(0, 5e3),
6449
- agent_id: agent.agentId,
6450
- agent_role: agent.agentRole,
6451
- tool_name: "AssistantResponse",
6452
- project_name: process.env.EXE_PROJECT_NAME ?? cwd.split("/").pop() ?? "unknown",
6453
- session_id: data.session_id,
6454
- timestamp: (/* @__PURE__ */ new Date()).toISOString()
6455
- })
6456
- ).catch(() => {
6457
- });
6444
+ if (AUTO_INGESTION_ENABLED) {
6445
+ Promise.resolve().then(() => (init_memory_queue_client(), memory_queue_client_exports)).then(
6446
+ ({ writeMemoryViaDaemon: writeMemoryViaDaemon2 }) => writeMemoryViaDaemon2({
6447
+ raw_text: message.slice(0, 5e3),
6448
+ agent_id: agent.agentId,
6449
+ agent_role: agent.agentRole,
6450
+ tool_name: "AssistantResponse",
6451
+ project_name: process.env.EXE_PROJECT_NAME ?? cwd.split("/").pop() ?? "unknown",
6452
+ session_id: data.session_id,
6453
+ timestamp: (/* @__PURE__ */ new Date()).toISOString()
6454
+ })
6455
+ ).catch(() => {
6456
+ });
6457
+ }
6458
6458
  } catch {
6459
6459
  }
6460
6460
  process.exit(0);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@askexenow/exe-os",
3
- "version": "0.9.75",
3
+ "version": "0.9.76",
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",