@rallycry/conveyor-agent 10.6.1 → 10.7.1
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/{chunk-5ELLQUP4.js → chunk-EBZRRNO5.js} +99 -288
- package/dist/chunk-EBZRRNO5.js.map +1 -0
- package/dist/cli.js +3 -3
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +0 -44
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/runtime/entrypoint.sh +23 -4
- package/dist/chunk-5ELLQUP4.js.map +0 -1
package/dist/cli.js
CHANGED
|
@@ -26,7 +26,7 @@ import {
|
|
|
26
26
|
runSetupCommand,
|
|
27
27
|
runStartCommand,
|
|
28
28
|
sampleKeyUsage
|
|
29
|
-
} from "./chunk-
|
|
29
|
+
} from "./chunk-EBZRRNO5.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"],
|