style: improve console output formatting in Program.cs - #36
Merged
Conversation
Contributor
There was a problem hiding this comment.
🟡 Changes recommended
The updated console output contains clearly malformed headings/spacing, and the committed MCP configs include user-specific absolute paths that won’t work across environments and leak local filesystem details.
Once you've addressed the issues Copilot identified, you can request another Copilot review.
Pull request overview
This PR aims to improve the CLI console output readability in Program.cs and updates the repo’s MCP configuration to a newer maf-doctor init version.
Changes:
- Adds additional newlines and section headings to the results output in
Program.cs. - Tweaks the main prompt to start on a new line for cleaner console interaction.
- Updates
.vscode/mcp.jsonand.mcp.jsontoMAF_DOCTOR_INIT_VERSION1.15.0and expandsMAF_DOCTOR_WORKSPACE_ROOTS.
File summaries
| File | Description |
|---|---|
| Program.cs | Adjusts prompt/results console formatting and section headings. |
| .vscode/mcp.json | Updates maf-doctor MCP server env values (init version + workspace roots). |
| .mcp.json | Mirrors MCP server env updates for maf-doctor (init version + workspace roots). |
Review details
- Files reviewed: 3/3 changed files
- Comments generated: 4
- Review effort level: Lite
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
Comment on lines
+7
to
+8
| "MAF_DOCTOR_INIT_VERSION": "1.15.0", | ||
| "MAF_DOCTOR_WORKSPACE_ROOTS": "C:\\Users\\jesseliberty\\ai\\.net\\blogWriter;E:\\ai\\.net\\blog\\blogMigration---public;E:\\ai\\.net\\blog\\BlogWriter" |
Comment on lines
+8
to
+9
| "MAF_DOCTOR_INIT_VERSION": "1.15.0", | ||
| "MAF_DOCTOR_WORKSPACE_ROOTS": "C:\\Users\\jesseliberty\\ai\\.net\\blogWriter;E:\\ai\\.net\\blog\\blogMigration---public;E:\\ai\\.net\\blog\\BlogWriter" |
| Console.WriteLine("\n\n========== RESULTS =========="); | ||
| Console.WriteLine($"\nSession: {session.Id}"); | ||
| Console.WriteLine($"\nTask: {result.MainTask}"); | ||
| Console.WriteLine($"\n\n===Research Findings===\n ({result.ResearchFindings.Count}):"); |
Comment on lines
+205
to
+206
| Console.WriteLine($"\n\n===Draft:===\n{result.Draft}"); | ||
| Console.WriteLine($"\n\n===Review Notes:===\n {result.ReviewNotes}"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Fix formatting on output