HIPAA (Health Insurance Portability and Accountability Act) sets strict requirements for systems that handle Protected Health Information (PHI). AI agents deployed in healthcare settings must meet these requirements, which cover access controls, audit trails, data integrity, and transmission security.
Only authorized users and systems should access PHI. For AI agents:
rules:
- tool: "patient.lookup"
action: allow
when:
context.hasConsent:
equals: true
args.fields:
not:
contains: "ssn"
reason: "Patient lookup allowed with consent, excluding SSN"
Record and examine activity in systems that contain PHI:
Hash-chained receipts meet this requirement. Each receipt records the tool call, arguments, principal chain, and decision. The chain's tamper-evident property satisfies the integrity requirement for audit logs.
Protect PHI from improper alteration or destruction:
Protect PHI during transmission:
HIPAA's minimum necessary standard requires that access to PHI be limited to what is needed for the task. For AI agents, this means:
If you are providing an AI agent system that handles PHI on behalf of a covered entity, you are a Business Associate and need a BAA. The BAA should specify how the agent system protects PHI, what controls are in place, and how breaches are reported.
Deploy Authensor with:
Explore more guides on AI agent safety, prompt injection, and building secure systems.
View All Guides