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

@@ -223,6 +223,10 @@ export function loadConfig(): AppConfig {
arbiterServiceId: arbiterAgentType
? (readText('ARBITER_SERVICE_ID') ?? codexReviewServiceId)
: null,
carryForwardLatestOwnerFinal: readBoolean(
'PAIRED_CARRY_FORWARD_LATEST_OWNER_FINAL',
false,
),
agentLanguage: readText('AGENT_LANGUAGE') ?? '',
arbiterDeadlockThreshold: readInteger('ARBITER_DEADLOCK_THRESHOLD', 2),
maxRoundTrips,

View File

@@ -53,6 +53,7 @@ export interface AppConfig {
reviewerServiceIdForType: string;
arbiterAgentType?: AgentType;
arbiterServiceId: string | null;
carryForwardLatestOwnerFinal: boolean;
agentLanguage: string;
arbiterDeadlockThreshold: number;
maxRoundTrips: number;