fix: Runner-owned command flags and help no longer require a dispatcher release - #1862
Conversation
|
Warning Review limit reached
Next review available in: 19 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 Run ID: 📒 Files selected for processing (23)
✨ 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 |
Summary
completionis now a silent no-op stub so existing shell rc blocks keep starting up without errors.await-pause-point,pause-point-status,list,sync,focus-window) now show command-specific--helpfrom the pinned project runner instead of a hardcoded dispatcher table.User Impact
--helptext, and that text could drift from what the pinned runner actually accepted.--helprequests to the pinned runner, so help text can never disagree with the runner's actual behavior.eval "$(uloop completion --shell zsh)"blocks in shell rc files keep working silently instead of breaking shell startup.Changes
--helpoutput for runner-owned native commands (newnative_command_help.go).completionwith a minimal no-op stub, and routed runner-owned command--helpthrough the normal project-resolution dispatch path to the pinned runner instead of a static local table.--help, native command help, Unity tool command help) to consistently point at--project-pathor running inside a project.cli/common/clicorepackage intocli/project-runner, since only the runner needs them; this keeps future runner-only flag changes from requiring a combined dispatcher/runner release.cli/commonchanges.Verification
scripts/check-go-cli.shpasses across all Go modules (fmt, vet, lint, tests, binary rebuild) — confirmed in both child PRs (feat: project runner commands can show their own detailed --help #1860, fix: Runner-owned command flags no longer force a dispatcher release #1861).await-pause-point --help --project-path <project>forwards to the pinned runner and returns its help text;completion --shell zshis a silent no-op (empty stdout, exit 0); outside-project help for native and Unity tool commands both give the same friendly project-resolution guidance.v3-beta, socheck-release-triggersand the rest of repository CI run here for the first time for this change set (they do not run on PRs targeting an integration branch); verify all checks are green before merging.