verification-layer 0.14.0 → 0.16.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.
Files changed (2) hide show
  1. package/README.md +36 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -50,6 +50,33 @@ node dist/cli.js report /path/to/project -o audit-report.html
50
50
 
51
51
  ---
52
52
 
53
+ ## 🌐 Web Dashboard
54
+
55
+ **Live Dashboard**: [https://dashboard-silk-zeta-55.vercel.app](https://dashboard-silk-zeta-55.vercel.app)
56
+
57
+ Monitor HIPAA compliance across all your projects with our web dashboard:
58
+
59
+ **Features:**
60
+ - 📊 **Visual Compliance Scores** - Animated gauges showing 0-100 scores
61
+ - 📈 **Historical Tracking** - View compliance trends over time
62
+ - 🗂️ **Multi-Project Management** - Monitor multiple codebases from one place
63
+ - 🔍 **Detailed Findings** - Filter by severity and view recommendations
64
+ - 📋 **Executive Reports** - Share compliance status with stakeholders
65
+
66
+ **Quick Start:**
67
+ 1. Visit the dashboard and create a project
68
+ 2. Run a scan: `node dist/cli.js scan ./src --format json --output scan.json`
69
+ 3. Upload results via API:
70
+ ```bash
71
+ curl -X POST https://dashboard-silk-zeta-55.vercel.app/api/projects/{projectId}/scans \
72
+ -H "Content-Type: application/json" \
73
+ -d @scan.json
74
+ ```
75
+
76
+ See [dashboard/README.md](dashboard/README.md) for API documentation and deployment instructions.
77
+
78
+ ---
79
+
53
80
  ## 🆕 Compliance Score & Dashboard
54
81
 
55
82
  ### HIPAA Compliance Score (0-100)
@@ -469,6 +496,13 @@ Each finding maps to specific HIPAA regulations:
469
496
  ## Roadmap
470
497
 
471
498
  ### Recently Completed ✅
499
+ - [x] **Phase 4A: Web Dashboard**
500
+ - [x] Next.js dashboard deployed to Vercel
501
+ - [x] Multi-project management with REST API
502
+ - [x] Visual compliance score gauges and charts
503
+ - [x] Historical score tracking and trends
504
+ - [x] Detailed findings viewer with filtering
505
+ - [x] Live at: https://dashboard-silk-zeta-55.vercel.app
472
506
  - [x] **Phase 3B: Dashboard & Compliance Score**
473
507
  - [x] HIPAA Compliance Score (0-100) with severity weighting
474
508
  - [x] Enhanced HTML reports with visual gauge
@@ -495,8 +529,8 @@ Each finding maps to specific HIPAA regulations:
495
529
 
496
530
  ### Coming Soon
497
531
  - [ ] Slack/Teams notifications for new findings
498
- - [ ] Web dashboard with trend tracking
499
- - [ ] API for programmatic access
532
+ - [ ] CLI integration with dashboard auto-upload
533
+ - [ ] Database backend for dashboard (currently file-based)
500
534
 
501
535
  ### Planned
502
536
  - [ ] HITRUST CSF mapping
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verification-layer",
3
- "version": "0.14.0",
3
+ "version": "0.16.0",
4
4
  "description": "CLI tool for HIPAA compliance scanning and reporting",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",