Prompt
How do I ensure my triage and routing workflow with an AI coaching assistant is compliant with HIPAA and moderation controls?
Latest observation
To make an AI coaching assistant’s triage and routing workflow compliant with HIPAA and safe from moderation/control failures, design it so the AI does not make protected clinical decisions on its own, and so every PHI touchpoint is controlled, logged, and reviewable.
1) Start with a clear role definition
Decide and document whether the assistant is:
- Administrative/coach/support only: scheduling, intake, reminders, education, triage prompts
- Clinical support: suggests urgency or routing, but a licensed human makes the final decision
For HIPAA safety, the AI should generally:
- Not diagnose
- Not provide emergency instructions beyond a safety script
- Not independently determine level of care
- Not store or expose more PHI than necessary
2) Use a HIPAA-ready architecture
Make sure the vendor/platform setup supports HIPAA:
- Sign a Business Associate Agreement (BAA) with every vendor that handles PHI
- Use HIPAA-compliant hosting, storage, and transmission
- Encrypt data in transit and at rest
- Enforce role-based access control
- Maintain audit logs for access, routing decisions, overrides, and exports
- Set retention and deletion policies
- Avoid sending PHI to non-BAA tools, analytics, or general-purpose LLM endpoints
3) Minimize PHI in the workflow
Design the triage flow to collect only what is needed.
Example:
- Ask for symptom category, urgency, age band, and callback preference
- Avoid collecting names, full descriptions, or detailed history unless required
- Use pseudonymous IDs during internal routing when possible
- Separate identity/contact data from triage content
If identity is needed:
- Store it in a separate secured system
- Reference it by token/ID in the AI workflow
4) Put a human in the loop for anything risky
The AI can assist, but a human should own high-risk decisions.
Recommended pattern:
- AI classifies as routine / soon / urgent / emergency
- AI routes based on predefined rules
- Human reviewer confirms:
- emergency escalation
- self-harm risk
- medical red flags
- uncertain or conflicting cases
Do not let the AI directly send a patient into a higher-acuity pathway without review if the consequences are clinically significant.
5) Build hard safety escalation rules
Create deterministic rules outside the model for “must escalate” cases.
Examples:
- Chest pain, trouble breathing, stroke symptoms, suicidal ideation, severe bleeding, loss of consciousness → immediate emergency escalation
- Pediatric red flags → urgent human review
- Unknown or ambiguous inputs → human review
- User asks for diagnosis or medication decisions → defer to clinician
These should be implemented as:
- keyword/rule engine
- classifier threshold gates
- mandatory transfer to human
6) Use moderation controls at multiple layers
Moderation should not depend on the model behaving well.
Input moderation
Block or route for review if messages include:
- self-harm
- violence
- abuse
- explicit sexual content
- hate/harassment
- requests for illegal or unsafe medical advice
- attempts to reveal PHI in inappropriate channels
Output moderation
Prevent the assistant from:
- claiming to be a clinician if it isn’t
- giving diagnosis/treatment plans beyond scope
- giving emergency advice inconsistently
- inventing policies, phone numbers, or escalation options
- exposing PHI in logs, notifications, or handoffs
Human review triggers
Escalate when:
- confidence is low
- user distress is high
- conflicting answers appear
- content is policy-sensitive
- the model’s response conflicts with triage rules
7) Constrain the model with policy and tools
Do not rely on open-ended generation for routing.
Use:
- a fixed schema for outputs, e.g.
{severity, rationale_code, routing_destination, human_review_required} - allowlisted actions only
- retrieval from approved policy content only
- tool permissions that cannot exceed assigned role
- prompt instructions that forbid unsupported medical advice
Example output policy:
- Only return one of a small set of severity levels
- Never provide free-text care instructions beyond approved scripts
- Always defer emergencies to human/emergency services
- If uncertain, choose “human_review_required = true”
8) Document clinical and operational governance
You need governance artifacts, not just technical controls.
Maintain:
- workflow maps
- data flow diagrams
- risk assessment
- policy for human review
- escalation playbooks
- moderation taxonomy
- incident response plan
- access review records
- training records for staff
This is especially important if the AI influences triage decisions.
9) Log carefully without overexposing PHI
Logs are a common compliance failure.
Best practices:
- Log event metadata, not full message bodies when possible
- Redact PHI from logs
- Restrict log access
- Separate operational logs from clinical records
- Track:
- who accessed what
- model version
- prompt template version
- routing outcome
- human override
- timestamps
10) Test with red-team and compliance scenarios
Before launch, test for:
- PHI leakage
- wrong routing under ambiguous input
- unsafe escalation failures
- jailbreak prompts
- role confusion
- prompt injection via user text
- moderation bypass attempts
- edge cases for minors, self-harm, domestic violence, abuse
Run regression tests whenever:
- prompts change
- model version changes
- routing rules change
- policy content changes
11) Provide user-facing disclosures
Users should know:
- the assistant is AI-supported
- what it can and cannot do
- what data is collected
- when a human will review
- how emergencies are handled
- how their data is protected
Avoid misleading the user into thinking the assistant is a clinician if it is not.
12) Special HIPAA reminder
HIPAA compliance also depends on:
- whether your organization is a covered entity or business associate
- whether the data is actually PHI
- whether there are state privacy laws layered on top
- whether records are part of the designated record set
- whether minimum necessary standards are followed
A “HIPAA-compliant AI” claim is only valid if the entire workflow—vendor, contracts, access, storage, transmission, training, logging, and human oversight—is compliant.
Practical blueprint
A safer design looks like this:
- User submits issue
- Input moderation screens for danger and policy violations
- AI extracts only minimal triage fields
- Rule engine assigns preliminary routing
- If emergency/uncertain/high-risk → human review immediately
- If routine → route to correct queue
- Record audit event with redacted metadata
- Periodic QA and compliance review
If you want a checklist
I can turn this into:
- a HIPAA compliance checklist
- a moderation policy template
- a triage workflow diagram
- or a sample safe prompt/output schema for your assistant