@@ -14,6 +14,25 @@ Agent Skills are directories containing a `SKILL.md` file and optional supportin
1414
1515## Available Skills
1616
17+ ### azure-storage-loader
18+
19+ ** Purpose** : Load token usage data from Azure Table Storage for faster iteration and analysis.
20+
21+ ** Use this skill when:**
22+ - Analyzing actual usage data without manual export
23+ - Testing query logic against real backend data
24+ - Debugging backend sync issues with live data
25+ - Performing ad-hoc team analytics
26+ - Quickly iterating on data analysis tasks in chat
27+
28+ ** Contents:**
29+ - Helper script to fetch data from Azure Storage Tables
30+ - Support for both Entra ID and Shared Key authentication
31+ - Flexible filtering by date, model, workspace, or user
32+ - JSON and CSV output formats
33+ - Azure Table Storage schema documentation
34+ - Authentication and troubleshooting guides
35+
1736### copilot-log-analysis
1837
1938** Purpose** : Comprehensive guide for analyzing GitHub Copilot session log files.
@@ -32,6 +51,34 @@ Agent Skills are directories containing a `SKILL.md` file and optional supportin
3251- Schema documentation references
3352- Usage examples and troubleshooting guides
3453
54+ ### refresh-json-data
55+
56+ ** Purpose** : Update token estimator and model pricing JSON files with latest data.
57+
58+ ** Use this skill when:**
59+ - Adding support for new AI models
60+ - Updating token estimation ratios
61+ - Refreshing pricing information from provider APIs
62+ - Keeping model data current with latest releases
63+
64+ ### load-cache-data
65+
66+ ** Purpose** : Load and inspect the last 10 rows from the local session file cache to iterate with real data.
67+
68+ ** Use this skill when:**
69+ - Inspecting cached session file data
70+ - Debugging cache behavior or validation logic
71+ - Understanding what data is being cached
72+ - Working with real cached data for testing or development
73+ - Iterating on features that rely on cached statistics
74+
75+ ** Contents:**
76+ - Cache structure and storage location (VS Code globalState)
77+ - Methods for accessing and managing the cache
78+ - Example scripts demonstrating cache data access
79+ - Cache validation and lifecycle documentation
80+ - Integration with the extension's token tracking
81+
3582## Using Agent Skills
3683
3784### In VS Code
0 commit comments