What problem does it solve? Healthcare applications routinely leak patient data through error messages, logs, URLs, and weak access control. This Skill provides concrete patterns to classify sensitive data, enforce row-level access, and maintain tamper-proof audit trails so patient and clinician information stays protected. ## Core Features & Use Cases - Data Classification: Defines what counts as PHI and PII, including patient identifiers, medical records, clinician payout data, and financial details. - Row-Level Security Policies: Provides SQL policies for multi-facility isolation and insert-only audit logs that cannot be modified or deleted. - Leak Vector Prevention: Covers common exposure points such as error messages, console output, URL parameters, browser storage, and service role keys. - Use Case: When building a multi-tenant hospital system, apply the facility isolation RLS policy so a doctor at Facility A querying Facility B patients receives zero rows, and verify it with the included test pattern. ## Quick Start Review my patient records API code and database schema for PHI exposure risks and apply the appropriate compliance patterns.