fix(run): explain missing package managers - #119
Conversation
Carry package-manager resolution provenance through process launch so a missing manifest-selected executable identifies both the tool and why it was chosen. Keep direct-command errors unchanged and cover serial, quiet, and parallel dispatch. Fixes #109.
|
Warning Review limit reachedYou’ve reached a temporary PR review limit under our Fair Usage Limits Policy. Next review available in: 41 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: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (2)
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: ASSERTIVE Plan: Pro Run ID: 📒 Files selected for processing (1)
📜 Recent review details🧰 Additional context used📓 Path-based instructions (1)**/CHANGELOG.md📄 CodeRabbit inference engine (Custom checks)
Files:
🔍 Remote MCP DeepWiki, GitHub GrepAdditional review context
🔇 Additional comments (1)
📝 WalkthroughRetain package-manager provenance through process launch. Report actionable diagnostics when a selected package-manager executable is missing from Preserve generic errors for direct commands and other launch failures. Apply the behaviour to serial, quiet, and parallel dispatch. Add regression coverage for manifest-selected and direct-command failures. WalkthroughRunner now uses Sequence Diagram(s)sequenceDiagram
participant Runner
participant SpawnDispatch
participant OperatingSystem
Runner->>SpawnDispatch: resolve and configure command
SpawnDispatch->>OperatingSystem: probe PATH and spawn command
OperatingSystem-->>SpawnDispatch: status or I/O error
SpawnDispatch-->>Runner: exit status or contextual diagnostic
Estimated code review effort: 4 (Complex) | ~45 minutes Possibly related issues
Possibly related PRs
Poem
🚥 Pre-merge checks | ✅ 7 | ❌ 1❌ Failed checks (1 inconclusive)
✅ Passed checks (7 passed)
Comment |
Preserve Python package-manager resolution through pyproject script launches so missing uv, Poetry, or Pipenv executables report why they were selected instead of returning a bare spawn error.
Use each configured command's effective PATH for missing-manager diagnostics so project-local node_modules binaries are not falsely reported absent when launch fails for another reason.
Summary
Fixes #109.
Reviewer notes