fix(code-review): preflight follow-ups#3104
Open
alex-alecu wants to merge 3 commits intomainfrom
Open
Conversation
Contributor
Code Review SummaryStatus: No Issues Found | Recommendation: Merge Files Reviewed (2 files)
Reviewed by gpt-5.5-20260423 · 626,870 tokens |
Contributor
Author
|
Manual test passed. Tested:
Verified:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Why
Follow-up code reviews could try to reuse an old agent session even when its sandbox was gone or its last run was stuck. That could make a new review fail instead of starting clean.
What changed
Follow-up reviews now check the old agent session before using it. The check makes sure the sandbox can still be reached and that any active run is not stale. If the old session is not safe, the review starts a fresh session instead of changing the old one or sending it a new message. The health check is also exposed through the shared worker client so other workers can call it in the same way.
How to test
pnpm --filter @kilocode/worker-utils test -- cloud-agent-next-client.test.ts.pnpm --filter cloud-agent-next test -- src/router.test.ts.pnpm --filter kilo-code-review-worker test.pnpm --filter @kilocode/worker-utils typecheck.pnpm --filter cloud-agent-next typecheck.pnpm --filter kilo-code-review-worker typecheck.pnpm format.