replicas-engine 0.1.811 → 0.1.812

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.
@@ -5,11 +5,11 @@ import {
5
5
  getCodexAspHost,
6
6
  restartCodexAspHost,
7
7
  restartCodexAspHostIfRunning
8
- } from "./chunk-U52PAJ7N.js";
9
- import "./chunk-VPOQS26S.js";
10
- import "./chunk-U7INM74K.js";
8
+ } from "./chunk-TVNH32VD.js";
9
+ import "./chunk-XX6JGJSL.js";
10
+ import "./chunk-JKADNTBE.js";
11
11
  import "./chunk-UZSNFLDQ.js";
12
- import "./chunk-NSMCPFIL.js";
12
+ import "./chunk-WY524SYH.js";
13
13
  import "./chunk-VEQXQN22.js";
14
14
  export {
15
15
  getCodexAspHost,
@@ -4,7 +4,7 @@ const require = __createRequire(import.meta.url);
4
4
  import {
5
5
  findCodeHostPullRequestUrls,
6
6
  mayCreatePullRequest
7
- } from "./chunk-NSMCPFIL.js";
7
+ } from "./chunk-WY524SYH.js";
8
8
 
9
9
  // src/services/post-tool-pr-notifier.ts
10
10
  async function notifyPostToolUse(toolName, toolInput, toolResult) {
@@ -4,7 +4,7 @@ const require = __createRequire(import.meta.url);
4
4
  import {
5
5
  HOOK_EXEC_MAX_BUFFER_BYTES,
6
6
  isVersionBelow
7
- } from "./chunk-NSMCPFIL.js";
7
+ } from "./chunk-WY524SYH.js";
8
8
 
9
9
  // src/utils/codex-agent-env.ts
10
10
  function buildCodexAgentEnv(source = process.env) {
@@ -241,7 +241,7 @@ var DEFAULT_CODEX_ARGS = [
241
241
  var MIN_CODEX_CLI_VERSION = "0.153.3";
242
242
  var CODEX_UPGRADE_TIMEOUT_MS = 12e4;
243
243
  var codexCliVersionEnsured = null;
244
- var ENGINE_PACKAGE_VERSION = "0.1.811";
244
+ var ENGINE_PACKAGE_VERSION = "0.1.812";
245
245
  var INITIALIZE_METHOD = "initialize";
246
246
  var INITIALIZED_NOTIFICATION = "initialized";
247
247
  var ACCOUNT_LOGIN_START_METHOD = "account/login/start";
@@ -5,18 +5,18 @@ import {
5
5
  ENGINE_ENV,
6
6
  monolithRequest,
7
7
  setAgentCredentialSnapshot
8
- } from "./chunk-VPOQS26S.js";
8
+ } from "./chunk-XX6JGJSL.js";
9
9
  import {
10
10
  AppServerProcess,
11
11
  buildCodexAgentEnv
12
- } from "./chunk-U7INM74K.js";
12
+ } from "./chunk-JKADNTBE.js";
13
13
  import {
14
14
  CODEX_AUTH_ENV_KEYS,
15
15
  CODEX_AUTH_ENV_KEYS_BY_METHOD,
16
16
  codexAuthEnvFromResponse,
17
17
  createErrorResult,
18
18
  createSuccessResult
19
- } from "./chunk-NSMCPFIL.js";
19
+ } from "./chunk-WY524SYH.js";
20
20
 
21
21
  // src/managers/codex-token-manager.ts
22
22
  import { promises as fs } from "fs";
@@ -232,7 +232,7 @@ var CodexTokenManager = class extends BaseRefreshManager {
232
232
  const data = await response.json();
233
233
  await this.applyCredentialsResponse(data);
234
234
  if (restartOnChange && CODEX_AUTH_ENV_KEYS.some((key, index) => process.env[key] !== previousEnv[index])) {
235
- const { restartCodexAspHostIfRunning: restartCodexAspHostIfRunning2 } = await import("./asp-host-RJ5E77DR.js");
235
+ const { restartCodexAspHostIfRunning: restartCodexAspHostIfRunning2 } = await import("./asp-host-YDHLV27H.js");
236
236
  await restartCodexAspHostIfRunning2();
237
237
  }
238
238
  if (data.scope) {
@@ -1548,6 +1548,9 @@ function coerceBackgroundTaskPayload(payload) {
1548
1548
  return {
1549
1549
  subtype,
1550
1550
  taskId,
1551
+ toolUseId: optionalString(payload.tool_use_id),
1552
+ subagentType: optionalString(payload.subagent_type),
1553
+ isBackgrounded: optionalBoolean(payload.is_backgrounded),
1551
1554
  description: optionalString(payload.description),
1552
1555
  summary: optionalString(payload.summary),
1553
1556
  outputFile: optionalString(payload.output_file),
@@ -5227,11 +5230,13 @@ function parseClaudeEvents(events, parentToolUseId) {
5227
5230
  if (payload?.ambient) ambientTaskIds.add(payload.taskId);
5228
5231
  if (payload && !ambientTaskIds.has(payload.taskId)) {
5229
5232
  const existing = taskMessageMap.get(payload.taskId);
5230
- const nextStatus = payload.subtype === "task_notification" ? normalizeBackgroundTaskStatus(payload.status) : payload.subtype === "task_updated" ? normalizeBackgroundTaskStatus(payload.patch?.status) : existing?.status ?? "in_progress";
5233
+ const nextStatus = payload.subtype === "task_notification" ? normalizeBackgroundTaskStatus(payload.status) : payload.subtype === "task_updated" && payload.patch?.status !== void 0 ? normalizeBackgroundTaskStatus(payload.patch?.status) : existing?.status ?? "in_progress";
5231
5234
  const nextMessage = {
5232
5235
  id: existing?.id ?? `task-${event.timestamp}-${messages.length}`,
5233
5236
  type: "background_task",
5234
5237
  taskId: payload.taskId,
5238
+ toolUseId: payload.toolUseId ?? existing?.toolUseId,
5239
+ subagentType: payload.subagentType ?? existing?.subagentType,
5235
5240
  status: nextStatus,
5236
5241
  description: payload.description ?? payload.patch?.description ?? existing?.description,
5237
5242
  summary: payload.summary ?? existing?.summary,
@@ -5242,7 +5247,7 @@ function parseClaudeEvents(events, parentToolUseId) {
5242
5247
  lastToolName: payload.lastToolName ?? existing?.lastToolName,
5243
5248
  usage: payload.usage ?? existing?.usage,
5244
5249
  error: payload.patch?.error ?? existing?.error,
5245
- isBackgrounded: payload.patch?.isBackgrounded ?? existing?.isBackgrounded,
5250
+ isBackgrounded: payload.isBackgrounded ?? payload.patch?.isBackgrounded ?? existing?.isBackgrounded,
5246
5251
  timestamp: existing?.timestamp ?? event.timestamp
5247
5252
  };
5248
5253
  if (existing) {
@@ -5335,6 +5340,15 @@ function parseClaudeEvents(events, parentToolUseId) {
5335
5340
  }
5336
5341
  });
5337
5342
  for (const message of messages) {
5343
+ if (message.type === "background_task" && message.toolUseId) {
5344
+ const toolInfo = toolCallMap.get(message.toolUseId);
5345
+ const toolMessage = toolInfo ? messages[toolInfo.messageIndex] : void 0;
5346
+ if (toolMessage?.type === "command") message.command = toolMessage.command;
5347
+ if (toolMessage?.type === "subagent") {
5348
+ message.prompt ??= toolMessage.prompt;
5349
+ message.subagentType ??= toolMessage.subagentType;
5350
+ }
5351
+ }
5338
5352
  if (message.type !== "subagent_followup") continue;
5339
5353
  const target = messages.find((candidate) => candidate.type === "subagent" && candidate.chatId === message.chatId);
5340
5354
  if (target?.type === "subagent") {
@@ -15,7 +15,7 @@ import {
15
15
  isValidRelayBaseProvider,
16
16
  parsePosixEnvFile,
17
17
  readReplicasRuntimeEnv
18
- } from "./chunk-NSMCPFIL.js";
18
+ } from "./chunk-WY524SYH.js";
19
19
 
20
20
  // src/engine-env.ts
21
21
  import { readFileSync as readFileSync2 } from "fs";
@@ -3,12 +3,12 @@ import { createRequire as __createRequire } from 'node:module';
3
3
  const require = __createRequire(import.meta.url);
4
4
  import {
5
5
  monolithRequest
6
- } from "./chunk-VPOQS26S.js";
6
+ } from "./chunk-XX6JGJSL.js";
7
7
  import {
8
8
  extractCommandProtectionCommandText,
9
9
  findGitCommitSignals,
10
10
  findPrMergeSignals
11
- } from "./chunk-NSMCPFIL.js";
11
+ } from "./chunk-WY524SYH.js";
12
12
 
13
13
  // src/services/command-protection-service.ts
14
14
  var DEFAULT_COMMAND_PROTECTION_BLOCK_MESSAGE = "Blocked by Replicas command protection.";
@@ -3,12 +3,12 @@ import { createRequire as __createRequire } from 'node:module';
3
3
  const require = __createRequire(import.meta.url);
4
4
  import {
5
5
  evaluateCommandProtection
6
- } from "./chunk-GRZAULRT.js";
7
- import "./chunk-VPOQS26S.js";
6
+ } from "./chunk-YJVQXRNR.js";
7
+ import "./chunk-XX6JGJSL.js";
8
8
  import {
9
9
  isRecord
10
10
  } from "./chunk-UZSNFLDQ.js";
11
- import "./chunk-NSMCPFIL.js";
11
+ import "./chunk-WY524SYH.js";
12
12
  import "./chunk-VEQXQN22.js";
13
13
 
14
14
  // src/command-protection-hook.ts
@@ -3,13 +3,13 @@ import { createRequire as __createRequire } from 'node:module';
3
3
  const require = __createRequire(import.meta.url);
4
4
  import {
5
5
  evaluateCommandProtection
6
- } from "./chunk-GRZAULRT.js";
6
+ } from "./chunk-YJVQXRNR.js";
7
7
  import {
8
8
  notifyPostToolUse
9
- } from "./chunk-S2LVYDTJ.js";
10
- import "./chunk-VPOQS26S.js";
9
+ } from "./chunk-B4HGR5SQ.js";
10
+ import "./chunk-XX6JGJSL.js";
11
11
  import "./chunk-UZSNFLDQ.js";
12
- import "./chunk-NSMCPFIL.js";
12
+ import "./chunk-WY524SYH.js";
13
13
  import "./chunk-VEQXQN22.js";
14
14
 
15
15
  // src/deepseek-command-protection-plugin.ts
@@ -8,12 +8,12 @@ import {
8
8
  import {
9
9
  AppServerProcess,
10
10
  buildCodexAgentEnv
11
- } from "./chunk-U7INM74K.js";
11
+ } from "./chunk-JKADNTBE.js";
12
12
  import {
13
13
  AGENT,
14
14
  getMemoryOutputSafetyViolation,
15
15
  headlessAgentRequestSchema
16
- } from "./chunk-NSMCPFIL.js";
16
+ } from "./chunk-WY524SYH.js";
17
17
  import "./chunk-VEQXQN22.js";
18
18
 
19
19
  // src/headless-agent.ts
package/dist/src/index.js CHANGED
@@ -91,7 +91,7 @@ import {
91
91
  evaluateCommandProtection,
92
92
  extractToolCommand,
93
93
  reportCommandProtectionBlock
94
- } from "./chunk-GRZAULRT.js";
94
+ } from "./chunk-YJVQXRNR.js";
95
95
  import {
96
96
  ACCOUNT_RATE_LIMITS_UPDATED_METHOD,
97
97
  AGENT_MESSAGE_DELTA_METHOD,
@@ -124,20 +124,20 @@ import {
124
124
  recordCredentialFallback,
125
125
  recordExhaustedCredential,
126
126
  restartCodexAspHost
127
- } from "./chunk-U52PAJ7N.js";
127
+ } from "./chunk-TVNH32VD.js";
128
128
  import {
129
129
  ENGINE_ENV,
130
130
  IS_WARMING_MODE,
131
131
  monolithRequest,
132
132
  monolithService,
133
133
  setAgentCredentialSnapshot
134
- } from "./chunk-VPOQS26S.js";
134
+ } from "./chunk-XX6JGJSL.js";
135
135
  import {
136
136
  AspClient,
137
137
  SUBPROCESS_MAX_BUFFER,
138
138
  execAsync,
139
139
  execFileAsync
140
- } from "./chunk-U7INM74K.js";
140
+ } from "./chunk-JKADNTBE.js";
141
141
  import {
142
142
  isRecord as isRecord2
143
143
  } from "./chunk-UZSNFLDQ.js";
@@ -343,7 +343,7 @@ import {
343
343
  spawnRelaySubagentRequestSchema,
344
344
  stripAgentDiagnosticErrors,
345
345
  withTimeout
346
- } from "./chunk-NSMCPFIL.js";
346
+ } from "./chunk-WY524SYH.js";
347
347
  import {
348
348
  __commonJS,
349
349
  __export,
@@ -3,11 +3,11 @@ import { createRequire as __createRequire } from 'node:module';
3
3
  const require = __createRequire(import.meta.url);
4
4
  import {
5
5
  notifyPostToolUse
6
- } from "./chunk-S2LVYDTJ.js";
6
+ } from "./chunk-B4HGR5SQ.js";
7
7
  import {
8
8
  isRecord
9
9
  } from "./chunk-UZSNFLDQ.js";
10
- import "./chunk-NSMCPFIL.js";
10
+ import "./chunk-WY524SYH.js";
11
11
  import "./chunk-VEQXQN22.js";
12
12
 
13
13
  // src/post-tool-pr-hook.ts
@@ -4,7 +4,7 @@ const require = __createRequire(import.meta.url);
4
4
  import {
5
5
  messageRelaySubagentRequestSchema,
6
6
  spawnRelaySubagentRequestSchema
7
- } from "./chunk-NSMCPFIL.js";
7
+ } from "./chunk-WY524SYH.js";
8
8
  import "./chunk-VEQXQN22.js";
9
9
 
10
10
  // src/relay-mcp.ts
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-engine",
3
- "version": "0.1.811",
3
+ "version": "0.1.812",
4
4
  "description": "Lightweight API server for Replicas workspaces",
5
5
  "type": "module",
6
6
  "main": "dist/src/index.js",