From e1d83c565755ce9b44536d7d2d15a44c501f5609 Mon Sep 17 00:00:00 2001 From: Van Echeverri Date: Sun, 7 Jun 2026 22:33:40 -0400 Subject: [PATCH] fix(inbox-lite): include in_review issues in agent compact inbox GET /api/agents/me/inbox-lite previously returned only todo, in_progress, and blocked issues. When a board comment triggered a heartbeat wake on an in_review issue, the agent's inbox scan would not find the issue, causing it to exit with "no actionable work" and post nothing. Add in_review to the status filter so all non-terminal agent-owned issues are visible in both the fast path (PAPERCLIP_TASK_ID check) and the broad path (inbox-lite scan). Fixes: INTA-271 Co-Authored-By: Paperclip --- server/src/routes/agents.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/routes/agents.ts b/server/src/routes/agents.ts index 05c1675e4b..0bcba37617 100644 --- a/server/src/routes/agents.ts +++ b/server/src/routes/agents.ts @@ -1740,7 +1740,7 @@ export function agentRoutes( const recoveryActionsSvc = issueRecoveryActionService(db); const rows = await issuesSvc.list(req.actor.companyId, { assigneeAgentId: req.actor.agentId, - status: "todo,in_progress,blocked", + status: "todo,in_progress,blocked,in_review", includeRoutineExecutions: true, limit: ISSUE_LIST_DEFAULT_LIMIT, });