diff --git a/packages/cli/src/config/footerItems.ts b/packages/cli/src/config/footerItems.ts index 49c851f5ae..ba3c4a1307 100644 --- a/packages/cli/src/config/footerItems.ts +++ b/packages/cli/src/config/footerItems.ts @@ -9,17 +9,17 @@ import type { MergedSettings } from './settings.js'; export const ALL_ITEMS = [ { id: 'cwd', - header: 'Path', + header: 'workspace (/directory)', description: 'Current working directory', }, { id: 'git-branch', - header: 'Branch', + header: 'branch', description: 'Current git branch name (not shown when unavailable)', }, { id: 'sandbox-status', - header: '/docs', + header: 'sandbox', description: 'Sandbox type and trust indicator', }, { @@ -29,7 +29,7 @@ export const ALL_ITEMS = [ }, { id: 'context-remaining', - header: 'Context', + header: 'context', description: 'Percentage of context window remaining', }, { @@ -39,22 +39,22 @@ export const ALL_ITEMS = [ }, { id: 'memory-usage', - header: 'Memory', + header: 'memory', description: 'Memory used by the application', }, { id: 'session-id', - header: 'Session', + header: 'session', description: 'Unique identifier for the current session', }, { id: 'code-changes', - header: 'Diff', + header: 'diff', description: 'Lines added/removed in the session (not shown when zero)', }, { id: 'token-count', - header: 'Tokens', + header: 'tokens', description: 'Total tokens used in the session (not shown when zero)', }, ] as const; diff --git a/packages/cli/src/config/settingsSchema.ts b/packages/cli/src/config/settingsSchema.ts index ccca95b147..85655bfb49 100644 --- a/packages/cli/src/config/settingsSchema.ts +++ b/packages/cli/src/config/settingsSchema.ts @@ -598,8 +598,7 @@ const SETTINGS_SCHEMA = { category: 'UI', requiresRestart: false, default: false, - description: - 'Hide the current working directory path in the footer.', + description: 'Hide the current working directory in the footer.', showInDialog: true, }, hideSandboxStatus: { diff --git a/packages/cli/src/ui/components/Footer.test.tsx b/packages/cli/src/ui/components/Footer.test.tsx index d8892d0b28..92ae87e6d8 100644 --- a/packages/cli/src/ui/components/Footer.test.tsx +++ b/packages/cli/src/ui/components/Footer.test.tsx @@ -622,7 +622,7 @@ describe('