@mcptoolshop/registry-stats 2.1.0 → 2.2.0
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 +6 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -40,7 +40,7 @@ Zero runtime dependencies. Uses native `fetch()`. Node 18+.
|
|
|
40
40
|
| Layer | What it does |
|
|
41
41
|
|-------|-------------|
|
|
42
42
|
| **Engine** | TypeScript library + CLI + REST server. Query five registries with one interface. Published to npm as `@mcptoolshop/registry-stats`. |
|
|
43
|
-
| **Dashboard** | Astro-powered web app with AI chat assistant, six interactive charts,
|
|
43
|
+
| **Dashboard** | Astro-powered web app with AI chat assistant, six interactive charts, live refresh, export reports (PDF / JSONL / Markdown), and tabbed Help guide. Rebuilt weekly by CI; refreshable on demand. |
|
|
44
44
|
| **Desktop** | WinUI 3 + WebView2 native Windows app. Bundles the dashboard offline, fetches live stats on demand. |
|
|
45
45
|
|
|
46
46
|
## Dashboard
|
|
@@ -53,12 +53,15 @@ A self-updating stats dashboard lives at [`/dashboard/`](https://mcp-tool-shop-o
|
|
|
53
53
|
- **Six interactive charts** — 30-day trend (aggregate / per-registry / top-5 toggles), registry share (polar area), portfolio risk (histogram + Gini & P90), top-10 momentum, velocity tracker with sparklines, and 30-day heatmap with spike detection (>2σ)
|
|
54
54
|
- **Smart growth engine** — handles small-denominator distortion with baseline threshold, percentage cap, and damped velocity formula
|
|
55
55
|
- **Actionable insights** — auto-generated recommendations and attention alerts for declining packages
|
|
56
|
-
- **
|
|
56
|
+
- **Pulse panel** — split view of Established Movers (≥ 50 downloads/wk) and Emerging & New packages, with inline 7-day sparklines, absolute + percentage deltas, baseline context, and a one-line executive summary
|
|
57
|
+
- **Live refresh** — on-demand client-side fetch from npm and PyPI APIs with progress indicator; results cached in sessionStorage (5 min TTL) so tab switches are instant
|
|
58
|
+
- **Export reports** — dropdown next to the Refresh button offering three formats: **Exec PDF** (via jsPDF), **LLM JSONL** (typed records for AI ingestion), and **Dev Markdown** (GFM tables)
|
|
59
|
+
- **Leaderboard** — 132 packages ranked by weekly downloads with inline 30-day sparklines and smart trend badges
|
|
57
60
|
- **Setup page** — portfolio editor with validation, registry-sync companion section, and pipeline overview
|
|
58
61
|
- **Help tab** — human-friendly guide covering every tab, key concepts, AI assistant tips, data pipeline, and useful links
|
|
59
62
|
- **Dark / light theme** — follows system preference
|
|
60
63
|
|
|
61
|
-
Data is fetched at build time and rebuilt weekly by CI (Mondays 06:00 UTC). Configure tracked packages in `site/src/data/packages.json
|
|
64
|
+
Data is fetched at build time and rebuilt weekly by CI (Mondays 06:00 UTC). Live refresh pulls the latest numbers directly from registry APIs. Configure tracked packages in `site/src/data/packages.json` (132 packages across 5 registries).
|
|
62
65
|
|
|
63
66
|
## Desktop App
|
|
64
67
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mcptoolshop/registry-stats",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0",
|
|
4
4
|
"description": "Multi-registry download stats — engine, AI-powered dashboard, and desktop app for npm, PyPI, NuGet, VS Code Marketplace, and Docker Hub",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|