You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: rename VS Code command IDs from copilot-token-tracker to aiEngineeringFluency
- Update all 22 command IDs in package.json from 'copilot-token-tracker.*'
to 'aiEngineeringFluency.*' to match the extension's display name
- Update all registerCommand/executeCommand calls in extension.ts accordingly
- Update status bar item ID from 'copilot-token-tracker' to 'ai-engineering-fluency'
- Fix setting key 'copilot-token-tracker.sampleDataDirectory' to
'copilotTokenTracker.sampleDataDirectory' to match all other settings
- Update sessionDiscovery.ts to read from the corrected setting key
- Update integration test expected command IDs
- Update docs and instructions to reflect new command IDs
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Copy file name to clipboardExpand all lines: .github/instructions/vscode-extension.instructions.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ The entire extension's logic is contained within the `CopilotTokenTracker` class
39
39
40
40
-**UI Components**:
41
41
1.**Status Bar**: A `vscode.StatusBarItem` (`statusBarItem`) shows a brief summary. Its tooltip provides more detail.
42
-
2.**Details Panel**: The `copilot-token-tracker.showDetails` command opens a `vscode.WebviewPanel`. The content for this panel is generated dynamically as an HTML string by the `getDetailsHtml` method.
42
+
2.**Details Panel**: The `aiEngineeringFluency.showDetails` command opens a `vscode.WebviewPanel`. The content for this panel is generated dynamically as an HTML string by the `getDetailsHtml` method.
"description": "Compress session log files with gzip before uploading to blob storage to reduce storage costs and bandwidth."
283
283
},
284
-
"copilot-token-tracker.sampleDataDirectory": {
284
+
"copilotTokenTracker.sampleDataDirectory": {
285
285
"type": "string",
286
286
"default": "",
287
287
"description": "Screenshot/demo mode: when set to a folder path, overrides all session file scanning and returns only .json/.jsonl files from this directory. Leave empty for normal operation."
0 commit comments