Fix paired turn follow-up scheduling

This commit is contained in:
ejclaw
2026-04-06 21:58:22 +09:00
parent 1a6ffa55af
commit f22947ba61
3 changed files with 12 additions and 4 deletions

View File

@@ -130,7 +130,7 @@ describe('message-agent-executor-rules', () => {
).toBe('pending');
});
it('does not request a generic follow-up after successful owner output moved the task to review_ready', () => {
it('requests a generic follow-up after successful owner output moved the task to review_ready', () => {
expect(
resolvePairedFollowUpQueueAction({
completedRole: 'owner',
@@ -138,7 +138,7 @@ describe('message-agent-executor-rules', () => {
sawOutput: true,
taskStatus: 'review_ready',
}),
).toBe('none');
).toBe('generic');
});
it('does not request a generic follow-up after successful reviewer output moved the task back to active', () => {