chore: trace reserved turn refresh boundaries

This commit is contained in:
2026-08-05 02:15:33 +00:00
parent f765fe610f
commit 5fda95b25a
2 changed files with 19 additions and 0 deletions
@@ -1714,6 +1714,14 @@ export const createReservedTurnHandler = async (options: {
}
let generalCommand = options.reservedTurns.getGeneralTurn(currentGeneral.id, 0);
if ((process.env.CORE_AI_TRACE_GENERAL_IDS?.split(',') ?? []).includes(String(currentGeneral.id))) {
process.stdout.write(
`RESERVED_TURN_HANDLER_TRACE ${JSON.stringify({
generalId: currentGeneral.id,
action: generalCommand.action,
})}\n`
);
}
if (!isBlocked && generalCommand.action !== DEFAULT_ACTION) {
hasReservedTurn = true;
}