docs(cli): clarify ! command output visibility in shell commands tutorial#21041
Conversation
Summary of ChangesHello, 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 updates the shell commands tutorial in the documentation to accurately reflect the current behavior of the Gemini CLI. The changes address a reported discrepancy where the documentation did not fully describe how Highlights
Changelog
Activity
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 updates the documentation for the ! shell command in docs/cli/tutorials/shell-commands.md. The change clarifies that the output of commands executed with the ! prefix is recorded in the session context and can be used by the model in follow-up interactions, and that large outputs may be truncated. This aligns the documentation with the application's current behavior. I have reviewed the changes and have no issues to report.
Note: Security Review has been skipped due to the limited scope of the PR.
|
Build failed: Build process failed with link errors: |
|
Thank you for your contribution, @MohammedADev ! |
Hey Christine! I verified locally and my docs change is clean on this branch.
Of course! |
…rial (google-gemini#21041) Co-authored-by: Sam Roberts <158088236+g-samroberts@users.noreply.github.com>
…rial (google-gemini#21041) Co-authored-by: Sam Roberts <158088236+g-samroberts@users.noreply.github.com>
…rial (google-gemini#21041) Co-authored-by: Sam Roberts <158088236+g-samroberts@users.noreply.github.com>
…rial (google-gemini#21041) Co-authored-by: Sam Roberts <158088236+g-samroberts@users.noreply.github.com>
…rial (google-gemini#21041) Co-authored-by: Sam Roberts <158088236+g-samroberts@users.noreply.github.com>
…rial (google-gemini#21041) Co-authored-by: Sam Roberts <158088236+g-samroberts@users.noreply.github.com>
…rial (#21041) Co-authored-by: Sam Roberts <158088236+g-samroberts@users.noreply.github.com>
Summary
Updates the shell commands tutorial to match current CLI behavior for
!commands.What changed
!command output is recorded in the current session context.Why
Issue #21038 reports a mismatch between docs and observed behavior.
The implementation currently adds shell command output to session history in:
packages/cli/src/ui/hooks/shellCommandProcessor.tsviaaddShellCommandToGeminiHistory(...).Fixes #21038