SDK Module
HiveCompliance
The ultimate engine for Enterprise AI safety. HiveCompliance automates the generation of regulatory reports across global jurisdictions, leveraging the immutable HiveEvidence ledger.
Regulatory Coverage
EU AI Act
Automated risk classification and high-risk system auditing documentation.
HIPAA / HITRUST
Patient data access logging and PHI-safe AI interaction reports.
FINRA / SOX
Financial decision provenance and internal control validation.
GDPR / CCPA
Data processing transparency and 'Right to Explanation' compliance.
Method: generateReport()
Generates a comprehensive audit-ready report for a given regulation.
typescript
1import { HiveCompliance } from '@murkworks/hive-sdk';23const compliance = new HiveCompliance({ apiKey: 'YOUR_KEY' });45const report = await compliance.generateReport({6 regulation: 'EU_AI_ACT',7 dateRange: { start: '2026-01-01', end: '2026-03-31' },8 includeEvidence: true,9 outputFormat: 'PDF'10});1112console.log('Report URL:', report.url);13console.log('Compliance Score:', report.score);Sample Report Structure
json
1{2 "reportId": "rep_987654321",3 "regulation": "EU_AI_ACT",4 "status": "compliant",5 "summary": {6 "totalInquiries": 1450,7 "highRiskFlags": 0,8 "evidenceIntegrity": "100%",9 "auditTimestamp": "2026-03-17T14:30:00Z"10 },11 "signedBy": "blake3:928e1d...",12 "chainRef": "ev_chain_2026_q1"13} Back: HiveEvidence
V1.0.0 Stable