@askexenow/exe-os 0.9.75 → 0.9.77

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.
@@ -12118,7 +12118,6 @@ IMPORTANT: After completing your current task, you MUST address the pending revi
12118
12118
  process.exit(0);
12119
12119
  });
12120
12120
  async function writePromptMemory(prompt, sessionId, agent) {
12121
- if (!loadConfigSync().autoIngestion) return;
12122
12121
  try {
12123
12122
  const { fastDbInit: fastDbInit2 } = await Promise.resolve().then(() => (init_fast_db_init(), fast_db_init_exports));
12124
12123
  const { recordSessionEvent: recordSessionEvent2 } = await Promise.resolve().then(() => (init_session_events(), session_events_exports));
@@ -12134,6 +12133,7 @@ async function writePromptMemory(prompt, sessionId, agent) {
12134
12133
  });
12135
12134
  } catch {
12136
12135
  }
12136
+ if (!loadConfigSync().autoIngestion) return;
12137
12137
  try {
12138
12138
  const { writeMemoryViaDaemon: writeMemoryViaDaemon2 } = await Promise.resolve().then(() => (init_memory_queue_client(), memory_queue_client_exports));
12139
12139
  await writeMemoryViaDaemon2({
@@ -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);
@@ -31017,6 +31017,8 @@ var init_tool_gates = __esm({
31017
31017
  "registerAskTeamMemory",
31018
31018
  "registerGetMemoryById",
31019
31019
  "registerGetSessionContext",
31020
+ "registerGetSessionEvents",
31021
+ "registerGetLastAssistantResponse",
31020
31022
  "registerSearchEverything",
31021
31023
  "registerGetDecision",
31022
31024
  "registerGetIdentity",
@@ -27939,6 +27939,8 @@ var CHIEF_OF_STAFF_READ_TOOLS = /* @__PURE__ */ new Set([
27939
27939
  "registerAskTeamMemory",
27940
27940
  "registerGetMemoryById",
27941
27941
  "registerGetSessionContext",
27942
+ "registerGetSessionEvents",
27943
+ "registerGetLastAssistantResponse",
27942
27944
  "registerSearchEverything",
27943
27945
  "registerGetDecision",
27944
27946
  "registerGetIdentity",
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.77",
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",