@rallycry/conveyor-agent 10.6.1 → 10.7.0

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
@@ -26,7 +26,7 @@ import {
26
26
  runSetupCommand,
27
27
  runStartCommand,
28
28
  sampleKeyUsage
29
- } from "./chunk-5ELLQUP4.js";
29
+ } from "./chunk-TIEFSYIY.js";
30
30
  import "./chunk-7TQO4ZF4.js";
31
31
 
32
32
  // src/cli.ts
@@ -526,7 +526,7 @@ function buildAdhocPtyBridge(connection) {
526
526
  onResize: (handler) => connection.onPtyResize(handler)
527
527
  };
528
528
  }
529
- function buildAdhocQueryOptions(workspaceDir, model, abortController, session) {
529
+ function buildAdhocQueryOptions(workspaceDir, model, abortController, session, env = process.env) {
530
530
  return {
531
531
  model,
532
532
  systemPrompt: { type: "preset", preset: "claude_code", append: ADHOC_SYSTEM_NOTE },
@@ -538,7 +538,7 @@ function buildAdhocQueryOptions(workspaceDir, model, abortController, session) {
538
538
  tools: { type: "preset", preset: "claude_code" },
539
539
  // Browser automation only — the baked playwright-mcp when present.
540
540
  mcpServers: (() => {
541
- const playwright = resolvePlaywrightMcpServer();
541
+ const playwright = resolvePlaywrightMcpServer(env);
542
542
  return playwright ? { playwright } : {};
543
543
  })(),
544
544
  settingSources: ["user", "project"],