feat(app): add Run Inspector as third tab in session sidebar - #211
feat(app): add Run Inspector as third tab in session sidebar#211Rchari1 wants to merge 1 commit into
Conversation
Alongside Files Changed (review) and Context, the session side panel now offers a third tab for the Run Inspector — the live iterations/pulse/fidelity view that previously lived only in the Work Column. - helpers.ts: add runInspectorOpen memo, exclude runInspector from panelTabs (like context), handle activeTab == runInspector. - session-side-panel.tsx: add Run Inspector trigger (with pulse icon) to both tab bars (legacy + v2), add Tabs.Content panels, and add to panelMenu. Content reuses the existing bridge data (same run: envelopes) and shows a placeholder sparkline + metrics; full plot stays in Work Column via 'Open in Work Column' (keeps 320px usable). Fixes the request to have Files Changed | Context | Run Inspector as the three sidebar tabs.
|
Warning Review limit reached
Next review available in: 42 minutes Limit details: You’ve used all 3 included reviews currently available under your plan. 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: defaults Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (2)
Comment |
Adds the Run Inspector as the third tab in the session sidebar, alongside Files Changed and Context — per user request for a sidebar with those three.
Current sidebar is
SessionSidePanel(packages/app/src/pages/session/session-side-panel.tsx) with review (Files Changed), Context, and Preview. The Run Inspector lived only in the Work Column viainspector_bridge.Change
helpers.ts: addrunInspectorOpenmemo, excluderunInspectorfrompanelTabs(likecontext), handleactiveTab === 'runInspector'and fallback priority.session-side-panel.tsx: addTabs.Trigger value='runInspector'(pulse icon) to both tab bars (legacyDragDropProviderand newDndKitProviderbranches), addTabs.Contentpanels, and add topanelMenu(Run Inspectorentry). Content shows a lightweight sparkline placeholder reusing the same bridge data; full plot stays in Work Column.The VS Code sidebar view from #411 (
amicode.runInspectorunder Armonia/Catalog) remains as an optional always-visible surface — this PR is the in-app third tab the user meant (Files Changed | Context | Run Inspector).Preview
Sidebar now shows three tabs in the right panel:
Files Changed|Context|Run Inspector— Run Inspector renders iterations/pulse/fidelity with 'Open in Work Column' affordance.Fixes the sidebar request.