Track and analyze Claude Code skill usage with a local dashboard
npx claudepluginhub hardness1020/claude-skills-managementTrack and analyze Claude Code skill usage with a local dashboard
Stop guessing which skills matter. This Claude Code plugin tracks every skill invocation across all your projects and scores each one. You know what to keep, improve, or remove.
https://github.com/user-attachments/assets/0eeb34f8-f564-4022-a1c3-d1062d5825f9
You have skills accumulating over time but there's no way to know which ones deliver value and which are dead weight. Install this plugin once, and it logs every skill invocation and nested file access via Claude Code hooks across every project, then provides a local dashboard with time-normalized analytics to answer: which skills should I keep, improve, or remove?
Data collection (runs automatically via Claude Code hooks):
Analytics dashboard (local Django server, on-demand):
Skills are added at different times. A skill installed yesterday with 5 invocations (5/day) is healthier than one installed 3 months ago with 30 invocations (0.3/day). Raw counts are misleading.
The same applies to nested files — a reference doc added last week shouldn't be penalized alongside files that have existed for months.
The usefulness scoring model handles this:
| Factor | What it measures |
|---|---|
| Time-normalized usage rate | Invocations per day since install, with a 7-day grace period for new skills |
| Usage decay detection | Is recent usage declining vs. lifetime average? |
| Engagement depth | What fraction of a skill's nested files actually get triggered? |
| Source | Scope | Location |
|---|---|---|
| Folder-based | User | ~/.claude/skills/ |
| Folder-based | Project | .claude/skills/ |
| Plugin-based | User | Installed for you across all projects |
| Plugin-based | Project | Installed for all collaborators on a repo |
| Plugin-based | Local | Installed for you, in one repo only |
Deleted skills are preserved in the dashboard as "removed" with full historical data.
Requires Python 3.10+ and uv.
claude plugin marketplace add hardness1020/claude-skills-management
claude plugin install skills-analytics
Installs at user scope by default, tracking skill usage across all your projects. Hooks are auto-registered, no manual settings.json editing needed.
Start a new Claude Code session for the hooks to take effect. Every prompt you submit will now snapshot your skill inventory, and every skill invocation or file read will be logged.
Use the /skills-analytics-dashboard skill in any Claude Code session. It starts a local server and opens the dashboard at http://localhost:8787.
Claude Code Session (any project)
|
|-- UserPromptSubmit --> inventory_snapshot.py --> SQLite
|-- PreToolUse (Skill|Read) --> log_event.py --> SQLite
|
| Django Dashboard (localhost:8787)
| |
| +-- reads from same SQLite
Hooks are short-lived Python scripts using only stdlib (sqlite3, json, sys). No Django import overhead in the hot path. The dashboard is a separate process that reads the same SQLite database.