diff --git a/bot/scripts/run-cron.sh b/bot/scripts/run-cron.sh index efd3647..06a684c 100755 --- a/bot/scripts/run-cron.sh +++ b/bot/scripts/run-cron.sh @@ -20,7 +20,6 @@ unset ANTHROPIC_API_KEY export CLAUDE_CODE_DISABLE_AUTO_MEMORY=1 export CLAUDE_CODE_DISABLE_BACKGROUND_TASKS=1 export CLAUDE_CODE_DISABLE_CRON=1 -export CLAUDE_CODE_SIMPLE=1 export CLAUDE_CODE_ENABLE_TELEMETRY=1 TASK_NAME="${1:?Usage: run-cron.sh }" diff --git a/bot/src/cron-runner.ts b/bot/src/cron-runner.ts index 3f21b2e..a749636 100644 --- a/bot/src/cron-runner.ts +++ b/bot/src/cron-runner.ts @@ -297,7 +297,6 @@ function runClaude(cron: CronJob, workspaceCwd: string): string { env.CLAUDE_CODE_DISABLE_AUTO_MEMORY = "1"; env.CLAUDE_CODE_DISABLE_BACKGROUND_TASKS = "1"; env.CLAUDE_CODE_DISABLE_CRON = "1"; - env.CLAUDE_CODE_SIMPLE = "1"; const output = execSync(args.map(shellEscape).join(" "), { encoding: "utf8",