doer-agent 0.1.4 → 0.1.5
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/agent.js +5 -4
- package/package.json +1 -1
package/dist/agent.js
CHANGED
|
@@ -969,10 +969,11 @@ async function runTask(args) {
|
|
|
969
969
|
cwd: taskWorkspace,
|
|
970
970
|
baseEnvPatch: baseTaskEnvPatch,
|
|
971
971
|
});
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
972
|
+
const codexMcpEnvPatch = {};
|
|
973
|
+
if (process.platform !== "win32") {
|
|
974
|
+
await ensureCodexPlaywrightMcpLauncher();
|
|
975
|
+
codexMcpEnvPatch.PLAYWRIGHT_SKIP_BROWSER_GC = PLAYWRIGHT_SKIP_BROWSER_GC;
|
|
976
|
+
}
|
|
976
977
|
await recordAgentEvent({ jetstream: args.jetstream,
|
|
977
978
|
serverBaseUrl: args.serverBaseUrl,
|
|
978
979
|
taskId: args.taskId,
|