library/specializations/security-compliance/skills/hipaa-compliance-automator/SKILL.md
HIPAA security and privacy compliance automation for ePHI protection, safeguards assessment, and audit preparation
npx skillsauth add a5c-ai/babysitter hipaa-compliance-automatorInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Automate Health Insurance Portability and Accountability Act (HIPAA) compliance activities including ePHI inventory, safeguards assessment, risk analysis, Business Associate Agreement management, and breach notification procedures.
{
"type": "object",
"properties": {
"assessmentType": {
"type": "string",
"enum": ["full", "security", "privacy", "risk", "breach", "baa"],
"description": "Type of HIPAA assessment"
},
"entityType": {
"type": "string",
"enum": ["covered_entity", "business_associate", "hybrid"],
"description": "HIPAA entity classification"
},
"scope": {
"type": "object",
"properties": {
"systems": { "type": "array", "items": { "type": "string" } },
"facilities": { "type": "array", "items": { "type": "string" } },
"businessAssociates": { "type": "array", "items": { "type": "string" } }
}
},
"breachDetails": {
"type": "object",
"properties": {
"discoveryDate": { "type": "string", "format": "date" },
"description": { "type": "string" },
"affectedIndividuals": { "type": "integer" },
"phiCategories": { "type": "array" }
}
},
"existingDocumentation": {
"type": "string",
"description": "Path to existing HIPAA documentation"
}
},
"required": ["assessmentType", "entityType"]
}
{
"type": "object",
"properties": {
"assessmentId": {
"type": "string"
},
"assessmentType": {
"type": "string"
},
"entityType": {
"type": "string"
},
"assessmentDate": {
"type": "string",
"format": "date-time"
},
"ephiInventory": {
"type": "object",
"properties": {
"systems": { "type": "array" },
"dataFlows": { "type": "array" },
"storageLocations": { "type": "array" }
}
},
"safeguardsAssessment": {
"type": "object",
"properties": {
"administrative": {
"type": "object",
"properties": {
"implemented": { "type": "integer" },
"partiallyImplemented": { "type": "integer" },
"notImplemented": { "type": "integer" }
}
},
"technical": { "type": "object" },
"physical": { "type": "object" }
}
},
"riskAnalysis": {
"type": "object",
"properties": {
"threats": { "type": "array" },
"vulnerabilities": { "type": "array" },
"riskLevel": { "type": "string" }
}
},
"gapAnalysis": {
"type": "array",
"items": {
"type": "object",
"properties": {
"standard": { "type": "string" },
"requirement": { "type": "string" },
"currentState": { "type": "string" },
"gap": { "type": "string" },
"remediation": { "type": "string" },
"priority": { "type": "string" }
}
}
},
"breachAssessment": {
"type": "object"
},
"complianceScore": {
"type": "number"
},
"recommendations": {
"type": "array",
"items": { "type": "string" }
}
}
}
skill: {
name: 'hipaa-compliance-automator',
context: {
assessmentType: 'full',
entityType: 'covered_entity',
scope: {
systems: ['EHR', 'Patient Portal', 'Billing System'],
facilities: ['Main Hospital', 'Outpatient Clinic']
}
}
}
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
devops
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.