paired: disable latest owner final carry-forward by default

This commit is contained in:
ejclaw
2026-04-22 05:51:43 +09:00
parent 8fff703f84
commit 1122ace363
6 changed files with 27 additions and 8 deletions

View File

@@ -76,6 +76,10 @@ export const ARBITER_AGENT_TYPE = CONFIG.paired.arbiterAgentType;
/** Service ID for the arbiter. Defaults to codex-review for internal routing when arbiter is enabled. */
export const ARBITER_SERVICE_ID = CONFIG.paired.arbiterServiceId;
/** Whether to re-inject the previous task's latest owner final into a superseding task. Default: false. */
export const PAIRED_CARRY_FORWARD_LATEST_OWNER_FINAL =
CONFIG.paired.carryForwardLatestOwnerFinal;
/** Language for agent responses. When set, a language instruction is appended to all paired room prompts. */
export const AGENT_LANGUAGE = CONFIG.paired.agentLanguage;