Simplify README install guidance#210
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Expert Code Review — PR #210Methodology: 3 independent reviewers with adversarial consensus Result: 2 findings posted as inline comments (1 moderate, 1 minor) Findings Summary
CI Status
Test CoveragePR is documentation-only (2 README files). No tests required. Discarded FindingsNone — all flagged findings reached consensus.
|
There was a problem hiding this comment.
Expert Code Review: 2 findings posted inline. See the lean summary comment for full details.
Generated by Expert Code Review (auto) for issue #210 · ● 4.5M
| ```bash | ||
| maui devflow wait | ||
| maui devflow ui tree | ||
| maui devflow ui screenshot -o screenshot.png |
There was a problem hiding this comment.
🟡 MODERATE · 2/3 consensus
-o is not a registered alias for the --output option on maui devflow ui screenshot (only --output is defined in DevFlowCommands.cs). A user copying this verbatim will get a parse error.
| maui devflow ui screenshot -o screenshot.png | |
| maui devflow ui screenshot --output screenshot.png |
| @@ -44,18 +76,17 @@ public static MauiApp CreateMauiApp() | |||
| } | |||
There was a problem hiding this comment.
🟢 MINOR · 2/3 consensus (after follow-up)
This MauiProgram.cs registration block (lines 63–77) is now identical to the one in the "Fastest path" section above (lines 27–41). Two full copies increases the risk of future drift if one is updated without the other. Consider replacing this copy with a short cross-reference: "See the registration snippet in Fastest path above."
These READMEs currently lead with package lists and setup details, which makes the first steps feel heavier than necessary. This PR moves the simplest install path to the top while preserving manual setup and package reference details below for readers who need them.
Summary
Fastest install pathfor installing themauiCLI, runningmaui doctor, usingmaui android install, inspecting Apple tooling on macOS, and initializing DevFlow.maui devflow init, adding the in-app agent package, debug registration, and first connection commands.Testing
Not run; documentation-only change.