@viren/claude-code-dashboard 0.0.5 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -0
- package/generate-dashboard.mjs +248 -625
- package/package.json +1 -1
- package/src/analysis.mjs +19 -12
- package/src/assembler.mjs +8 -4
- package/src/constants.mjs +1 -1
- package/src/demo.mjs +191 -248
- package/src/helpers.mjs +21 -0
- package/src/pipeline.mjs +500 -0
- package/src/sections.mjs +7 -3
- package/template/dashboard.css +73 -4
- package/template/dashboard.js +46 -0
package/README.md
CHANGED
|
@@ -7,6 +7,8 @@
|
|
|
7
7
|
|
|
8
8
|
A visual dashboard for your [Claude Code](https://docs.anthropic.com/en/docs/claude-code) configuration across all repos.
|
|
9
9
|
|
|
10
|
+
**[Live Demo](https://virenmohindra.me/claude-code-dashboard/)**
|
|
11
|
+
|
|
10
12
|
Scans your home directory for git repos, collects Claude Code configuration (commands, rules, skills, MCP servers, usage data), and generates a self-contained HTML dashboard.
|
|
11
13
|
|
|
12
14
|
## Screenshots
|
|
@@ -212,6 +214,16 @@ If no directories are listed, the entire home directory is scanned (depth 5).
|
|
|
212
214
|
- Node.js 18+
|
|
213
215
|
- Git (for freshness timestamps and drift detection)
|
|
214
216
|
|
|
217
|
+
## Roadmap
|
|
218
|
+
|
|
219
|
+
Completed: v0.1 (foundation), v0.2 (intelligence layer), v0.3 (recommendations engine), v0.4 (config templates), v0.5 (control center).
|
|
220
|
+
|
|
221
|
+
**Up next:**
|
|
222
|
+
|
|
223
|
+
- [ ] Org-wide dashboard — scan multiple users' configs for team visibility
|
|
224
|
+
|
|
225
|
+
See [issues](https://github.com/VirenMohindra/claude-code-dashboard/issues) for feature requests.
|
|
226
|
+
|
|
215
227
|
## Privacy
|
|
216
228
|
|
|
217
229
|
The generated HTML file contains:
|