verification-layer 0.15.0 → 0.17.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 +69 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -50,6 +50,61 @@ 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
+ Enterprise-grade HIPAA compliance monitoring platform with professional dark theme and real-time visualizations.
58
+
59
+ ### Design
60
+
61
+ **Professional Enterprise UI:**
62
+ - 🎨 **Dark Navy Theme** - Professional color palette (#0A1628, #0F172A) with emerald/teal accents
63
+ - 📐 **Fixed Sidebar Navigation** - Icon-based menu with VLayer branding and system status
64
+ - 💎 **Glassmorphism Effects** - Gradient cards with subtle shadows and transparency
65
+ - 🎯 **Circular Progress Gauges** - Animated SVG gauges for compliance scores (0-100)
66
+ - 🏷️ **Status Badges** - Color-coded indicators (Compliant/At Risk/Critical)
67
+ - ⚡ **Smooth Transitions** - Hover effects and state changes with professional animations
68
+
69
+ ### Features
70
+
71
+ - 📊 **Visual Compliance Dashboard** - 4-metric overview with real-time scores and status distribution
72
+ - 📈 **Historical Score Tracking** - Interactive charts showing compliance trends over time
73
+ - 🗂️ **Multi-Project Management** - Monitor unlimited projects with inline progress indicators
74
+ - 🔍 **Detailed Findings View** - Filter by severity with comprehensive issue breakdowns
75
+ - 📋 **Executive Summaries** - Professional reports with grade assignments (A-F)
76
+ - 🎨 **Enterprise Tables** - Sortable project lists with circular scores and status badges
77
+ - 📱 **Responsive Design** - Optimized for desktop, tablet, and mobile devices
78
+
79
+ ### Quick Start
80
+
81
+ 1. **Visit Dashboard**: Navigate to [dashboard-silk-zeta-55.vercel.app](https://dashboard-silk-zeta-55.vercel.app)
82
+ 2. **Create Project**: Click "+ New Project" and enter your project details
83
+ 3. **Run Scan**: Execute a compliance scan on your codebase
84
+ ```bash
85
+ node dist/cli.js scan ./src --format json --output scan.json
86
+ ```
87
+ 4. **Upload Results**: Send scan data to your project via API
88
+ ```bash
89
+ curl -X POST https://dashboard-silk-zeta-55.vercel.app/api/projects/{projectId}/scans \
90
+ -H "Content-Type: application/json" \
91
+ -d @scan.json
92
+ ```
93
+
94
+ ### Demo Data
95
+
96
+ The dashboard includes 4 demo projects with realistic compliance data:
97
+ - **HealthCare Portal** - 92/100 (Grade A - Excellent)
98
+ - **Telemedicine API** - 78/100 (Grade C - Fair)
99
+ - **Insurance Claims System** - 56/100 (Grade F - Critical)
100
+ - **Mobile Health App** - 95/100 (Grade A - Excellent)
101
+
102
+ ### API & Documentation
103
+
104
+ See [dashboard/README.md](dashboard/README.md) for complete API documentation and deployment instructions.
105
+
106
+ ---
107
+
53
108
  ## 🆕 Compliance Score & Dashboard
54
109
 
55
110
  ### HIPAA Compliance Score (0-100)
@@ -469,6 +524,18 @@ Each finding maps to specific HIPAA regulations:
469
524
  ## Roadmap
470
525
 
471
526
  ### Recently Completed ✅
527
+ - [x] **Phase 4A: Web Dashboard (Enterprise Redesign)**
528
+ - [x] Next.js dashboard deployed to Vercel
529
+ - [x] Enterprise-grade dark navy theme with emerald accents
530
+ - [x] Fixed sidebar navigation with VLayer branding
531
+ - [x] Circular progress gauges with animations
532
+ - [x] Multi-project management with REST API
533
+ - [x] Status badges (Compliant/At Risk/Critical)
534
+ - [x] Historical score tracking with visual charts
535
+ - [x] Demo data with 4 realistic projects
536
+ - [x] Glassmorphism effects and professional shadows
537
+ - [x] Responsive design optimized for all devices
538
+ - [x] Live at: https://dashboard-silk-zeta-55.vercel.app
472
539
  - [x] **Phase 3B: Dashboard & Compliance Score**
473
540
  - [x] HIPAA Compliance Score (0-100) with severity weighting
474
541
  - [x] Enhanced HTML reports with visual gauge
@@ -495,8 +562,8 @@ Each finding maps to specific HIPAA regulations:
495
562
 
496
563
  ### Coming Soon
497
564
  - [ ] Slack/Teams notifications for new findings
498
- - [ ] Web dashboard with trend tracking
499
- - [ ] API for programmatic access
565
+ - [ ] CLI integration with dashboard auto-upload
566
+ - [ ] Database backend for dashboard (currently file-based)
500
567
 
501
568
  ### Planned
502
569
  - [ ] HITRUST CSF mapping
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verification-layer",
3
- "version": "0.15.0",
3
+ "version": "0.17.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",