Problem
The Claude Code remote execution environment does not provision the send_later tool (claude-code-remote MCP server). Without it, automated PR monitoring sessions cannot schedule periodic self-check-ins to detect events that webhooks don't deliver:
- CI success (only failures are delivered)
- New pushes by other actors (e.g., Copilot rebases)
- Merge-conflict state transitions
Impact
Open PRs awaiting review (#9, #11, #12) rely solely on webhook-delivered events. If CI passes silently or a rebase lands cleanly, the session won't notice until a human pings it or a new webhook event arrives.
Workaround
Manual status checks on request, or a Monitor poll loop (burns API calls and ties up a background process).
Resolution
Once send_later is available in the environment, PR monitoring sessions should schedule hourly self-check-ins that re-inspect CI status, mergeability, and review state — re-arming silently if nothing changed.
Problem
The Claude Code remote execution environment does not provision the
send_latertool (claude-code-remote MCP server). Without it, automated PR monitoring sessions cannot schedule periodic self-check-ins to detect events that webhooks don't deliver:Impact
Open PRs awaiting review (#9, #11, #12) rely solely on webhook-delivered events. If CI passes silently or a rebase lands cleanly, the session won't notice until a human pings it or a new webhook event arrives.
Workaround
Manual status checks on request, or a
Monitorpoll loop (burns API calls and ties up a background process).Resolution
Once
send_lateris available in the environment, PR monitoring sessions should schedule hourly self-check-ins that re-inspect CI status, mergeability, and review state — re-arming silently if nothing changed.