Claude Sdk Idle Handoff#728
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
|
Bugbot is not enabled for your account, so this pull request was not reviewed. Enable Bugbot in the Cursor dashboard to get automatic reviews on future PRs. |
|
@copilot review but do not make fixes |
|
Warning Review limit reached
Next review available in: 1 minute Enable usage-based reviews in Billing to review now. Otherwise, wait until the next included review is available. How can I continue?After more reviews become available, a review can be triggered using the To avoid repeated limits, reduce automatic review volume by pausing incremental auto-reviews earlier, using label-based review opt-in, excluding WIP or generated PR titles, or requesting reviews manually when the PR is ready. If your team needs uninterrupted high-volume reviews, an organization admin can enable usage-based reviews. How do review limits work?CodeRabbit enforces per-developer PR review limits for each organization. Most developers receive the normal plan review availability. For paid Pro and Pro+ PR reviews, CodeRabbit uses adaptive limits for sustained high-volume activity. When a developer's recent PR review activity reaches the 95th percentile or higher among CodeRabbit users, additional reviews become available more gradually as earlier reviews age out of the rolling window. Please refer docs for additional details. Review details⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (15)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
cd91062 to
5e0d523
Compare
|
Deployment failed with the following error: Learn More: https://vercel.com/arul28s-projects?upgradeToPro=build-rate-limit |
|
@codex review |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 5e0d523bcf
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
| const status = activityBundleStatus(item); | ||
| if (status.includes("failed")) return <XCircle size={12} weight="bold" className="text-red-300/80" />; | ||
| if (status.includes("stopped") || status.includes("cancelled")) return <Warning size={12} weight="fill" className="text-amber-300/80" />; | ||
| if (status.includes("complete")) return <CheckCircle size={12} weight="bold" className="text-emerald-300/80" />; |
There was a problem hiding this comment.
Avoid marking partial task bundles complete
When an activity_bundle contains a todo_update with remaining pending or in-progress items, activityBundleStatus() returns strings like 1/2 complete, so this substring check renders the green completed icon even though the task list is still active. This makes partial task progress look finished in the transcript; use the todo item counts/status directly instead of matching the word complete.
Useful? React with 👍 / 👎.
|
@codex review |
|
Codex Review: Didn't find any major issues. More of your lovely PRs please. Reviewed commit: ℹ️ About Codex in GitHubYour team has set up Codex to review pull requests in this repo. Reviews are triggered when you
If Codex has suggestions, it will comment; otherwise it will react with 👍. Codex can also answer questions or update the PR. Try commenting "@codex address that feedback". |
Summary
Describe the change.
What Changed
Key files and behaviors.
Validation
How you tested.
Risks
Anything to watch.
Greptile Summary
This PR adds compact activity handoff and transcript rendering for Claude SDK chat flows.
Confidence Score: 4/5
The CLI activity bundle path can still merge unrelated turn-less updates.
Desktop and iOS turn-boundary fixes cover the changed grouped transcript paths, but the TUI aggregator still treats two missing turn ids as the same bundle key.
apps/ade-cli/src/tuiClient/aggregate.ts
What T-Rex did
Important Files Changed
Comments Outside Diff (1)
apps/ade-cli/src/tuiClient/aggregate.ts, line 246 (link)When adjacent activity source events omit
turnId, both calls passnullinto this check, so the TUI merges unrelated task, schedule, or subagent updates into one Activity row. The desktop path now breaks on missing turn ids, but the CLI transcript can still hide separate turn-less updates behind a single bundle.Artifacts
Repro: targeted Vitest aggregation harness for adjacent turn-less activity events
Repro: verbose Vitest output showing one null-turn activity-bundle with two unrelated entries
Prompt To Fix With AI
Prompt To Fix All With AI
Reviews (2): Last reviewed commit: "ship: iteration 1 - address activity rev..." | Re-trigger Greptile