summaryrefslogtreecommitdiff
path: root/packages/cli/src/ui/commands/bugCommand.ts
diff options
context:
space:
mode:
authorowenofbrien <[email protected]>2025-08-15 10:15:54 -0500
committerGitHub <[email protected]>2025-08-15 15:15:54 +0000
commitddbe65e8c32cef67f7562b7f02aaf6e9fefb6968 (patch)
treee3104527d95a33dd45ca8e2511c8e31b005e6ba9 /packages/cli/src/ui/commands/bugCommand.ts
parenta92299069d06c49fdb01dcab6dcdb9c8001b1c52 (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.ts2
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}