From d451101adb8df48bd97db05bf1c25965f591b3cd Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Thu, 7 May 2026 12:39:27 +0200 Subject: [PATCH] chore(sandcastle): add agent effort constants (future use) --- .sandcastle/constants.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.sandcastle/constants.ts b/.sandcastle/constants.ts index 3e0a0a78..59ff6beb 100644 --- a/.sandcastle/constants.ts +++ b/.sandcastle/constants.ts @@ -3,8 +3,12 @@ import { existsSync } from 'node:fs' // ── Agent ──────────────────────────────────────────────────────────────────── +export const AGENT_ACTOR_EFFORT = 'high' + export const AGENT_ACTOR_MODEL = 'github-copilot/claude-sonnet-4.6' +export const AGENT_CRITIC_EFFORT = 'medium' + export const AGENT_CRITIC_MODEL = 'github-copilot/gpt-5.4' export const AGENT_IDLE_TIMEOUT_S = 300 @@ -13,6 +17,8 @@ export const AGENT_ITERATION_BUDGET = 50 export const AGENT_MAX_CRITIC_ROUNDS = 10 +export const AGENT_PLANNER_EFFORT = 'low' + export const AGENT_PLANNER_MODEL = 'github-copilot/claude-opus-4.6' export const AGENT_TASK_TIMEOUT_MS = 6_000_000 -- 2.53.0