
Hipaa Compliance
- 1.4k installs
- 238k repo stars
- Updated August 5, 2026
- affaan-m/ecc
This is a copy of hipaa-compliance by affaan-m - installs and ranking accrue to the original listing.
hipaa-compliance is a routing skill that directs developers building US healthcare software toward PHI handling, audit logging, encryption, and HIPAA-specific review workflows when protected health information is in scop
About
hipaa-compliance is a thin, canonical entrypoint skill from affaan-m/ecc (version 1.0.0) for US healthcare compliance tasks. Instead of duplicating implementation detail, it delegates PHI/PII classification, audit logging, encryption, and leak prevention to healthcare-phi-compliance, healthcare-aware code review to healthcare-reviewer, and general auth, secrets, API, and deployment checks to security-review. Developers reach for hipaa-compliance when a task clearly involves HIPAA-regulated systems so the agent selects the right downstream compliance skills rather than applying generic security guidance. The skill stays intentionally minimal so healthcare-specific rules remain centralized in specialized companions.
- Canonical HIPAA entrypoint that routes to healthcare-phi-compliance and healthcare-reviewer
- Triggers on explicit mentions of HIPAA, PHI, covered entities, BAAs or breach posture
- Treats HIPAA as an overlay on top of general healthcare privacy and security rules
- Assesses logging, analytics, LLM prompts, storage and support workflows for exposure
- 3-step routing workflow before any implementation or review begins
Hipaa Compliance by the numbers
- 1,365 all-time installs (skills.sh)
- +84 installs in the week ending Aug 5, 2026 (Skillselion tracking)
- Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/affaan-m/ecc --skill hipaa-complianceAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1.4k |
|---|---|
| repo stars | ★ 238k |
| Last updated | August 5, 2026 |
| Repository | affaan-m/ecc ↗ |
How do you enforce HIPAA compliance in healthcare software?
When building or reviewing any US healthcare software that touches protected health information.
Who is it for?
Developers building or reviewing US healthcare applications that store, transmit, or display protected health information.
Skip if: Teams working on non-healthcare apps or projects that only need general OWASP-style security review without HIPAA obligations.
When should I use this skill?
A task explicitly involves US healthcare software, PHI, HIPAA obligations, or regulated patient data handling.
What you get
Correct downstream skill routing, PHI handling guidance, audit-log requirements, and healthcare-aware security review checklists.
- compliance routing plan
- PHI handling checklist
- security review scope
Files
HIPAA Compliance
Use this as the HIPAA-specific entrypoint when a task is clearly about US healthcare compliance. This skill intentionally stays thin and canonical:
healthcare-phi-complianceremains the primary implementation skill for PHI/PII handling, data classification, audit logging, encryption, and leak prevention.healthcare-reviewerremains the specialized reviewer when code, architecture, or product behavior needs a healthcare-aware second pass.security-reviewstill applies for general auth, input-handling, secrets, API, and deployment hardening.
When to Use
- The request explicitly mentions HIPAA, PHI, covered entities, business associates, or BAAs
- Building or reviewing US healthcare software that stores, processes, exports, or transmits PHI
- Assessing whether logging, analytics, LLM prompts, storage, or support workflows create HIPAA exposure
- Designing patient-facing or clinician-facing systems where minimum necessary access and auditability matter
How It Works
Treat HIPAA as an overlay on top of the broader healthcare privacy skill:
1. Start with healthcare-phi-compliance for the concrete implementation rules. 2. Apply HIPAA-specific decision gates:
- Is this data PHI?
- Is this actor a covered entity or business associate?
- Does a vendor or model provider require a BAA before touching the data?
- Is access limited to the minimum necessary scope?
- Are read/write/export events auditable?
3. Escalate to healthcare-reviewer if the task affects patient safety, clinical workflows, or regulated production architecture.
HIPAA-Specific Guardrails
- Never place PHI in logs, analytics events, crash reports, prompts, or client-visible error strings.
- Never expose PHI in URLs, browser storage, screenshots, or copied example payloads.
- Require authenticated access, scoped authorization, and audit trails for PHI reads and writes.
- Treat third-party SaaS, observability, support tooling, and LLM providers as blocked-by-default until BAA status and data boundaries are clear.
- Follow minimum necessary access: the right user should only see the smallest PHI slice needed for the task.
- Prefer opaque internal IDs over names, MRNs, phone numbers, addresses, or other identifiers.
Examples
Example 1: Product request framed as HIPAA
User request:
Add AI-generated visit summaries to our clinician dashboard. We serve US clinics and need to stay HIPAA compliant.
Response pattern:
- Activate
hipaa-compliance - Use
healthcare-phi-complianceto review PHI movement, logging, storage, and prompt boundaries - Verify whether the summarization provider is covered by a BAA before any PHI is sent
- Escalate to
healthcare-reviewerif the summaries influence clinical decisions
Example 2: Vendor/tooling decision
User request:
Can we send support transcripts and patient messages into our analytics stack?
Response pattern:
- Assume those messages may contain PHI
- Block the design unless the analytics vendor is approved for HIPAA-bound workloads and the data path is minimized
- Require redaction or a non-PHI event model when possible
Related Skills
healthcare-phi-compliancehealthcare-reviewerhealthcare-emr-patternshealthcare-eval-harnesssecurity-review
Related skills
How it compares
Pick hipaa-compliance over generic security-review when the codebase handles US patient data and HIPAA-specific PHI, audit, and encryption rules apply.
FAQ
What does hipaa-compliance skill do?
hipaa-compliance is a routing entrypoint that sends HIPAA-related tasks to healthcare-phi-compliance for PHI handling, healthcare-reviewer for domain-aware review, and security-review for general application security checks.
When should developers use hipaa-compliance?
hipaa-compliance activates when building or reviewing US healthcare software that touches protected health information, ensuring the agent applies HIPAA-specific skills instead of generic security guidance.