From 3f1db4ed58e90d43638d7feb6ffc668aa436be8e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E6=A9=98?= Date: Fri, 17 Apr 2026 10:46:43 +0000 Subject: [PATCH] chore: cursor agent switch from --yolo to auto mode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Save API quota — first day already used 31%. --- packages/pulse/src/workflows/roles/agent-executor.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/pulse/src/workflows/roles/agent-executor.ts b/packages/pulse/src/workflows/roles/agent-executor.ts index 208f330..681c74f 100644 --- a/packages/pulse/src/workflows/roles/agent-executor.ts +++ b/packages/pulse/src/workflows/roles/agent-executor.ts @@ -58,7 +58,7 @@ export function createCursorRunner(opts: { const start = Date.now(); const proc = Bun.spawn( - [agentBin, '--yolo', '-p', '--output-format', 'text', '-f', promptFile], + [agentBin, '-p', '--output-format', 'text', '-f', promptFile], { cwd, env: { ...process.env, CURSOR_API_KEY: cursorApiKey },