Conversation
|
Warning Review limit reached
Next review available in: 22 minutes 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 Plus Run ID: 📒 Files selected for processing (5)
✨ 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 |
…#304) * fix(git-core): exclude PATH shims dir when resolving the real git binary ensure_on_path prepends ~/.agentflare/shims to the user's persistent PATH. git_binary()'s exclusion filter only excluded this process's own dir and cargo target dirs, so agentflare's own worktree creation (create_worktree, called from the item claim flow) resolved git back to its own PATH shim -- which denies 'worktree' unconditionally, and the denial looked like an ordinary git error to the soft-fail-on-error caller, silently deadlocking the claim flow. Also ports mise's paths_eq comparator (case-insensitive, separator- normalized) instead of raw PathBuf equality, since a case or / vs mismatch on Windows/macOS would silently reintroduce the same bug. Agentflare-Agent: claude-code_2-1-217_agent Agentflare-Branch: feat/worktree-audit-294 * feat(git): worktree orphan audit — preview/prune with pre-delete snapshot (#294) agentflare git audit preview: lists .worktrees/task/* dirs with a broken .git gitdir pointer, excluding any directory whose name matches a live claimed item's sequence_id. agentflare git audit prune [names...|--all]: removes the listed orphans, snapshotting each one first (same pre-destructive-snapshot rationale as reset --hard/clean -f), then runs 'git worktree prune' to clear git's own metadata. Automates the manual cleanup done in the 2026-07-21 branch/worktree sweep (37 branches -> 13 kept, .worktrees/ 942MB -> 316KB). Agentflare-Agent: claude-code_2-1-217_agent Agentflare-Branch: feat/worktree-audit-294 * fix(git-core): split paths_eq test into case-only and windows-separator cases The combined test hand-built a backslash Windows path and asserted it matches on macOS too, but macOS never treats '\' as a separator -- Path::components() splits the two inputs differently there, so the assertion was wrong for that platform, not the paths_eq logic. CI caught it on build (macos-latest). Agentflare-Agent: claude-code_2-1-217_agent Agentflare-Branch: feat/worktree-audit-294 * fix(git): address CodeRabbit findings on the worktree audit - audit_orphans: filter_map instead of collect::<Result<Vec<_>,_>>() -- one unreadable subdirectory no longer aborts the whole scan and silently reports 'no orphans found'. - gc_orphans: abort deletion of an orphan if its pre-delete snapshot fails, instead of discarding the error and deleting anyway with no recovery point. - claimed_sequence_ids/resolve_repo_root: fix a doc comment that ended up describing the wrong function after an earlier insertion. Agentflare-Agent: claude-code_2-1-217_agent Agentflare-Branch: feat/worktree-audit-294
Auto-opened on
item donefor 019f6614-89b7-7df2-b766-7d44a735a610.