diff options
| author | owenofbrien <[email protected]> | 2025-08-15 10:15:54 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-08-15 15:15:54 +0000 |
| commit | ddbe65e8c32cef67f7562b7f02aaf6e9fefb6968 (patch) | |
| tree | e3104527d95a33dd45ca8e2511c8e31b005e6ba9 /packages/cli/src/ui/commands/bugCommand.ts | |
| parent | a92299069d06c49fdb01dcab6dcdb9c8001b1c52 (diff) | |
Add session id to session summary and /bug template (#6313)
Co-authored-by: Bryan Morgan <[email protected]>
Diffstat (limited to 'packages/cli/src/ui/commands/bugCommand.ts')
| -rw-r--r-- | packages/cli/src/ui/commands/bugCommand.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/cli/src/ui/commands/bugCommand.ts b/packages/cli/src/ui/commands/bugCommand.ts index 667276ab..528b2b4c 100644 --- a/packages/cli/src/ui/commands/bugCommand.ts +++ b/packages/cli/src/ui/commands/bugCommand.ts @@ -15,6 +15,7 @@ import { MessageType } from '../types.js'; import { GIT_COMMIT_INFO } from '../../generated/git-commit.js'; import { formatMemoryUsage } from '../utils/formatters.js'; import { getCliVersion } from '../../utils/version.js'; +import { sessionId } from '@google/gemini-cli-core'; export const bugCommand: SlashCommand = { name: 'bug', @@ -40,6 +41,7 @@ export const bugCommand: SlashCommand = { const info = ` * **CLI Version:** ${cliVersion} * **Git Commit:** ${GIT_COMMIT_INFO} +* **Session ID:** ${sessionId} * **Operating System:** ${osVersion} * **Sandbox Environment:** ${sandboxEnv} * **Model Version:** ${modelVersion} |
