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

@@ -14,6 +14,7 @@ import {
CODEX_MAIN_SERVICE_ID,
CODEX_REVIEW_SERVICE_ID,
DATA_DIR,
PAIRED_CARRY_FORWARD_LATEST_OWNER_FINAL,
PAIRED_MAX_ROUND_TRIPS,
REVIEWER_AGENT_TYPE,
} from './config.js';
@@ -207,6 +208,10 @@ function carryForwardLatestOwnerFinal(args: {
sourceTask: PairedTask;
targetTask: PairedTask;
}): void {
if (!PAIRED_CARRY_FORWARD_LATEST_OWNER_FINAL) {
return;
}
const latestOwnerFinal = getLatestTurnOutputByRole(
args.sourceTask.id,
'owner',