negotium 0.5.1 → 0.5.3

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.
@@ -442,7 +442,7 @@ var init_config = __esm(() => {
442
442
  PDFTOTEXT_BIN = envText("PDFTOTEXT_BIN") ?? "pdftotext";
443
443
  WHISPER_BACKEND = resolveWhisperBackend();
444
444
  MLX_WHISPER_BIN = envText("MLX_WHISPER_BIN");
445
- WHISPER_MODEL_MLX = envText("WHISPER_MODEL_MLX") ?? WHISPER_MODEL;
445
+ WHISPER_MODEL_MLX = envText("WHISPER_MODEL_MLX") ?? "mlx-community/whisper-large-v3-turbo";
446
446
  _envMaxTellDepth = Number.parseInt(process.env.MAX_TELL_DEPTH ?? "", 10);
447
447
  MAX_TELL_DEPTH = Number.isInteger(_envMaxTellDepth) && _envMaxTellDepth > 0 ? _envMaxTellDepth : 20;
448
448
  });
@@ -928,6 +928,13 @@ function playwrightTransport(port, owner, capability, agent) {
928
928
  };
929
929
  }
930
930
  const query = new URLSearchParams({ owner });
931
+ if (agent === "maestro") {
932
+ return {
933
+ type: "http",
934
+ url: `http://127.0.0.1:${port}/mcp?${query}`,
935
+ headers: { "X-Browser-Capability": ownerCapability }
936
+ };
937
+ }
931
938
  return {
932
939
  type: "sse",
933
940
  url: `http://127.0.0.1:${port}/sse?${query}`,
@@ -2426,7 +2433,7 @@ var init_claude_registry = __esm(() => {
2426
2433
  });
2427
2434
 
2428
2435
  // ../../packages/core/src/version.ts
2429
- var NEGOTIUM_VERSION = "0.5.1";
2436
+ var NEGOTIUM_VERSION = "0.5.3";
2430
2437
 
2431
2438
  // ../../packages/core/src/agents/codex-native-multi-agent.ts
2432
2439
  import { spawn as spawn2 } from "child_process";
@@ -19156,4 +19163,4 @@ export {
19156
19163
  DEFAULT_SELF_CONFIG_PRODUCT
19157
19164
  };
19158
19165
 
19159
- //# debugId=EF98ADC98B610D8864756E2164756E21
19166
+ //# debugId=355BB6FB69E54D1A64756E2164756E21