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
Copy file name to clipboardExpand all lines: vscode-extension/src/webview/details/main.ts
+29-6Lines changed: 29 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -690,9 +690,31 @@ function buildEmptyStateSection(): HTMLElement {
690
690
consttitle=el('div','empty-state-title','👋 Welcome to AI Engineering Fluency');
691
691
692
692
constdesc=el('p','empty-state-description',
693
-
'This extension tracks your GitHub Copilot token usage by reading Copilot Chat session log files stored locally by VS Code. No token data has been found yet.'
693
+
'This extension tracks AI token usage by reading session log files stored locally by supported tools. No token data has been found yet.'
@@ -702,9 +724,10 @@ function buildEmptyStateSection(): HTMLElement {
702
724
conststeps=document.createElement('ol');
703
725
steps.className='empty-state-steps';
704
726
conststepTexts=[
705
-
'Make sure the GitHub Copilot and GitHub Copilot Chat extensions are installed and active in VS Code.',
706
-
'Open the Copilot Chat panel (Ctrl+Alt+I / Cmd+Alt+I) and have a conversation with Copilot.',
707
-
'Click the 🔄 Refresh button above to reload the stats after chatting.',
727
+
'Use any of the supported tools or editors listed above to interact with an AI model.',
728
+
'For GitHub Copilot in VS Code: open the Copilot Chat panel (Ctrl+Alt+I / Cmd+Alt+I) and start a conversation.',
729
+
'For terminal agents (Claude Code, OpenCode, Copilot CLI): run a coding session in your terminal.',
730
+
'Click the 🔄 Refresh button above to reload the stats after your first session.',
708
731
];
709
732
stepTexts.forEach(text=>{
710
733
constli=document.createElement('li');
@@ -713,10 +736,10 @@ function buildEmptyStateSection(): HTMLElement {
713
736
});
714
737
715
738
constnote=el('div','empty-state-note',
716
-
'💡 If you have been using Copilot but still see no data, open the Diagnostics panel (🔍 Diagnostics button above) to verify that session files are being discovered correctly.'
739
+
'💡 If you have been using one of the supported tools but still see no data, open the Diagnostics panel (🔍 Diagnostics button above) to verify that session files are being discovered correctly.'
0 commit comments