fix(cli): remove summary block from onboard completion output#1293
fix(cli): remove summary block from onboard completion output#1293muddlebee merged 3 commits intoTracer-Cloud:mainfrom
Conversation
Greptile Summary
Confidence Score: 4/5Safe to merge — functional change is correct and the only concern is leftover dead code. The removal is straightforward and correct; the remaining app/cli/wizard/flow.py (dead wrapper at lines 47–50); tests/cli/wizard/test_flow.py (stale monkeypatches) Important Files Changed
Sequence DiagramsequenceDiagram
participant User
participant run_wizard
participant _render_saved_summary
participant build_demo_action_response
participant _render_demo_response
participant _render_next_steps
Note over build_demo_action_response,_render_demo_response: Removed in this PR
User->>run_wizard: opensre onboard
run_wizard->>_render_saved_summary: display config summary
run_wizard-->>build_demo_action_response: ~~call (removed)~~
run_wizard-->>_render_demo_response: ~~render summary block (removed)~~
run_wizard->>_render_next_steps: display next steps
run_wizard-->>User: return 0
|
|
@VaibhavUpreti please review |
|
🎻 "The diff was clean, the tests did pass, the reviewer wept." That poem was about @rrajan94's PR. 🥹 👋 Join us on Discord - OpenSRE : hang out, contribute, or hunt for features and issues. Everyone's welcome. |

Fixes #1290
Describe the changes you have made in this PR -
Removed the
summaryblock from the end of theopensre onboardcompletion output. This deletes the_render_demo_response()function in "app/cli/wizard/flow.py" and its call site. Thenextsection is unchanged.Demo/Screenshot for feature changes and bug fixes -
Before:
After:
Code Understanding and AI Usage
Did you use AI assistance (ChatGPT, Claude, Copilot, etc.) to write any part of this code?
Explain your implementation approach:
Deleted the _render_demo_response() function and its call site. The summary block printed internal state (demo status, topics, sample preview) that isn't actionable for users. The next section already provides everything needed to proceed after onboarding.
Checklist before requesting a review
Note: Please check Allow edits from maintainers if you would like us to assist in the PR.