Skills Plugins MCP Prompt Model 博客 我的中心

healthcare-phi-compliance

保護医療情報(PHI)コンプライアンス、HIPAA準拠、およびデータセキュリティ。

DeepseekModel 官方收录技能 质量 优秀 · 90 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=affaan-m-ecc-docs-ja-jp-skills-healthcare-phi-compliance-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name healthcare-phi-compliance description 保護医療情報(PHI)コンプライアンス、HIPAA準拠、およびデータセキュリティ。 origin Health1 Super Speciality Hospitals — contributed by Dr. Keyur Patel version 1.0.0 Healthcare PHI/PII Compliance Patterns Patterns for protecting patient data, clinician data, and financial data in healthcare applications. Applicable to HIPAA (US), DISHA (India), GDPR (EU), and general healthcare data protection. When to Use Building any feature that touches patient records Implementing access control or authentication for clinical systems Designing database schemas for healthcare data Building APIs that return patient or clinician data Implementing audit trails or logging Reviewing code for data exposure vulnerabilities Setting up Row-Level Security (RLS) for multi-tenant healthcare systems How It Works Healthcare data protection operates on three layers: classification (what is sensitive), access control (who can see it), and audit (who did see it). Data Classification PHI (Protected Health Information) — any data that can identify a patient AND relates to their health: patient name, date of birth, address, phone, email, national ID numbers (SSN, Aadhaar, NHS number), medical record numbers, diagnoses, medications, lab results, imaging, insurance policy and claim details, appointment and admission records, or any combination of the above. PII (Non-patient-sensitive data) in healthcare systems: clinician/staff personal details, doctor fee structures and payout amounts, employee salary and bank details, vendor payment information. Access Control: Row-Level Security ALTER TABLE patients ENABLE ROW LEVEL SECURITY; -- Scope access by facility CREATE POLICY "staff_read_own_facility" ON patients FOR SELECT TO authenticated USING (facility_id IN ( SELECT facility_id FROM staff_assignments WHERE user_id = auth.uid() AND role IN ( 'doctor' , 'nurse' , 'lab_tech' , 'admin' ) )); -- Audit log: insert-only (tamper-proof) CREATE POLICY "audit_insert_only" ON audit_log FOR INSERT TO authenticated WITH CHECK (user_id = auth.uid()); CREATE POLICY "audit_no_modify" ON audit_log FOR UPDATE USING ( false ); CREATE POLICY "audit_no_delete" ON audit_log FOR DELETE USING ( false ); Audit Trail Every PHI access or modification must be logged: interface AuditEntry { timestamp : string ; user_id : string ; patient_id : string ; action : 'create' | 'read' | 'update' | 'delete' | 'print' | 'export' ; resource_type : string ; resource_id : string ; changes ?: { before : object ; after : object }; ip_address : string ; session_id : string ; } Common Leak Vectors Error messages: Never include patient-identifying data in error messages thrown to the client. Log details server-side only. Console output: Never log full patient objects. Use opaque internal record IDs (UUIDs) — not medical record numbers, national IDs, or names. URL parameters: Never put patient-identifying data in query strings or path segments that could appear in logs or browser history. Use opaque UUIDs only. Browser storage: Never store PHI in localStorage or sessionStorage. Keep PHI in memory only, fetch on demand. Service role keys: Never use the service_role key in client-side code. Always use the anon/publishable key and let RLS enforce access. Logs and monitoring: Never log full patient records. Use opaque record IDs only (not medical record numbers). Sanitize stack traces before sending to error tracking services. Database Schema Tagging Mark PHI/PII columns at the schema level: COMMENT ON COLUMN patients.name IS 'PHI: patient_name' ; COMMENT ON COLUMN patients.dob IS 'PHI: date_of_birth' ; COMMENT ON COLUMN patients.aadhaar IS 'PHI: national_id' ; COMMENT ON COLUMN doctor_payouts.amount IS 'PII: financial' ; Deployment Checklist Before every deployment: No PHI in error messages or stack traces No PHI in console.log/console.error No PHI in URL parameters No PHI in browser storage No service_role key in client code RLS enabled on all PHI/PII tables Audit trail for all data modifications Session timeout configured API authentication on all PHI endpoints Cross-facility data isolation verified Examples Example 1: Safe vs Unsafe Error Handling // BAD — leaks PHI in error throw new Error ( `Patient ${patient.name} not found in ${patient.facility} ` ); // GOOD — generic error, details logged server-side with opaque IDs only logger. error ( 'Patient lookup failed' , { recordId : patient. id , facilityId }); throw new Error ( 'Record not found' ); Example 2: RLS Policy for Multi-Facility Isolation -- Doctor at Facility A cannot see Facility B patients CREATE POLICY "facility_isolation" ON patients FOR SELECT TO authenticated USING (facility_id IN ( SELECT facility_id FROM staff_assignments WHERE user_id = auth.uid() )); -- Test: login as doctor-facility-a, query facility-b patients -- Expected: 0 rows returned Example 3: Safe Logging // BAD — logs identifiable patient data console . log ( 'Processing patient:' , patient); // GOOD — logs only opaque internal record ID console . log ( 'Processing record:' , patient. id ); // Note: even patient.id should be an opaque UUID, not a medical record number
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。