Agent skill · Security

hipaa-compliance

Ensure HIPAA compliance when handling PHI (Protected Health Information). Use when writing code that accesses user health data, check-ins, journal entries, or any sensitive information. Activates for audit logging, data access, security events, and compliance questions.

FreedomIntelligencegithub.com/FreedomIntelligenceGitHub ↗
claude-codecan modify files
Install
npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill hipaa-compliance --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 6 KB
Bundled scripts: none
Allowed tools: ReadWriteEdit
Path: skills/hipaa-compliance/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 2,909
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# HIPAA Compliance for Recovery Coach This skill helps you maintain HIPAA compliance when developing features that handle Protected Health Information (PHI). ## What is PHI in This Application? | Data Type | PHI Status | Handling | |-----------|------------|----------| | Check-in mood/cravings | PHI | Audit all access | | Journal entries | PHI | Audit all access | | Chat conversations | PHI | Audit all access | | User profile (name, email) | PHI | Audit modifications | | Sobriety date | PHI | Audit access | | Emergency contacts | PHI | Audit access | | Usage analytics (aggregated) | NOT PHI | No audit needed | | Page views (no content) | NOT PHI | No audit needed | ## Audit Logging Requirements ### When to Log **Always log these operations:** - Viewing any PHI (check-ins, journal, messages) - Creating/updating/deleting PHI - Exporting user data - Admin access to user information - Failed authentication attempts - Security events (rate limiting, unauthorized access) ### How to Log Use the audit logging utilities in `src/lib/hipaa/audit.ts`: ```typescript import { logPHIAccess, logPHIModification, logSecurityEvent, logAdminAction } from '@/lib/hipaa/audit'; // Viewing PHI await logPH

What's inside
Steps it walks through
  1. What is PHI in This Application?
  2. Audit Logging Requirements
  3. When to Log
  4. How to Log
  5. Data Sanitization
  6. Never Log These Fields
  7. Sanitized Fields (Auto-Redacted)
  8. Session Security Requirements
  9. Code Patterns
  10. API Route with Audit Logging
  11. Component with PHI Access
  12. Compliance Checklist
  13. Audit Log Retention
  14. Emergency Access (Break Glass)
More from OpenClaw-Medical-Skills
All skills →
About this skill
What does the hipaa-compliance skill do?

Ensure HIPAA compliance when handling PHI (Protected Health Information). Use when writing code that accesses user health data, check-ins, journal entries, or any sensitive information. Activates for audit logging, data access, security events, and compliance questions.

How do I install it?

Run `npx skills add FreedomIntelligence/OpenClaw-Medical-Skills --skill hipaa-compliance --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From FreedomIntelligence/OpenClaw-Medical-Skills, a repository with 2,909 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going