Stabilize paired follow-up routing

This commit is contained in:
ejclaw
2026-04-08 03:50:06 +09:00
parent c0f7f2c12d
commit 0f751af151
12 changed files with 248 additions and 30 deletions

View File

@@ -153,7 +153,7 @@ describe('message-runtime-rules', () => {
});
});
it('routes fresh human input to owner even while review is pending', () => {
it('routes fresh human input to owner while review is pending or running', () => {
expect(
resolveQueuedTurnRole({
taskStatus: 'review_ready',
@@ -165,7 +165,7 @@ describe('message-runtime-rules', () => {
taskStatus: 'in_review',
hasHumanMessage: true,
}),
).toBe('reviewer');
).toBe('owner');
expect(
resolveQueuedTurnRole({
taskStatus: 'review_ready',