@buildautomaton/cli 0.1.43 → 0.1.44

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.
package/dist/cli.js CHANGED
@@ -25174,7 +25174,7 @@ var {
25174
25174
  } = import_index.default;
25175
25175
 
25176
25176
  // src/cli-version.ts
25177
- var CLI_VERSION = "0.1.43".length > 0 ? "0.1.43" : "0.0.0-dev";
25177
+ var CLI_VERSION = "0.1.44".length > 0 ? "0.1.44" : "0.0.0-dev";
25178
25178
 
25179
25179
  // src/cli/defaults.ts
25180
25180
  var DEFAULT_API_URL = process.env.BUILDAUTOMATON_API_URL ?? "https://api.buildautomaton.com";
@@ -29251,9 +29251,9 @@ async function createSdkStdioAcpClient(options) {
29251
29251
 
29252
29252
  // src/agents/acp/clients/claude-code-acp-client.ts
29253
29253
  var BACKEND_LOCAL_AGENT_TYPE = "claude-code";
29254
+ var CLAUDE_ACP_ADAPTER_NPX_ARGS = ["--yes", "@agentclientprotocol/claude-agent-acp"];
29254
29255
  async function detectLocalAgentPresence() {
29255
- if (await isCommandOnPath("claude")) return true;
29256
- return execProbeShutdownAware("npx", ["--yes", "@anthropic-ai/claude-code", "--version"], 3e3);
29256
+ return execProbeShutdownAware("npx", [...CLAUDE_ACP_ADAPTER_NPX_ARGS, "--help"], 8e3);
29257
29257
  }
29258
29258
  function buildClaudeCodeAcpSpawnCommand(base, _sessionMode) {
29259
29259
  return [...base];
@@ -30088,6 +30088,8 @@ function createBridgeOnRequest(opts) {
30088
30088
  ...sessionId ? { sessionId } : {},
30089
30089
  runId,
30090
30090
  kind,
30091
+ /** Top-level for bridge DO jobs / web push when `payload` is E2EE-encrypted. */
30092
+ requestId: request.requestId,
30091
30093
  payload: {
30092
30094
  sessionUpdate,
30093
30095
  requestId: request.requestId,