EIM-512 switched the output from the run command to streamig#452
EIM-512 switched the output from the run command to streamig#452
Conversation
Summary of ChangesHello @Hahihula, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request significantly enhances the user experience for the Highlights
🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console. Changelog
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Code Review
This pull request switches the run command to stream output, which is a great improvement for user experience.
I've found two main issues:
- The use of
std::process::exitinsrc-tauri/src/cli/mod.rsshould be replaced with proper error propagation to allow for graceful shutdown and cleanup. - The
WindowsExecutoris missing an implementation for the newrun_script_from_string_streamingmethod, which will cause compilation to fail on Windows.
I've left detailed comments with suggestions on how to address these.
Also, there's a small typo in the pull request title: 'streamig' should be 'streaming'.
5950730 to
03c7a6c
Compare
03c7a6c to
08cf798
Compare
|
I didn’t review the code itself, but I verified that the functionality - works as expected. Thank you very much for the fast update. I tested it with the Cursor MCP agent as well as Claude, using the MCP command Note: Tested only on MacOS |
|
Thanks Petr for the update. Issue on Windows. Using powershell there is no return printed on terminal, neither streamed to terminal, or after the job is completed. |
this should improve the experience from the run command. It will no longer wait for the command to finish but stream the output directly.