openevidence-data-handling

Featured

Data Handling for OpenEvidence. Trigger: "openevidence data handling".

AI & Automation 2,266 stars 315 forks Updated today MIT

Install

View on GitHub

Quality Score: 99/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# OpenEvidence Data Handling ## Overview OpenEvidence provides AI-powered clinical evidence synthesis for healthcare professionals. Data types include clinical queries (potentially containing PHI), evidence citations from medical literature, patient-contextualized responses, research paper references, and usage analytics. All data handling must comply with HIPAA (PHI safeguards, minimum necessary standard, BAA requirements), GDPR for EU clinicians, and FDA guidance on clinical decision support. Query data may contain patient identifiers, diagnoses, or treatment details that require de-identification before storage or analytics. ## Data Classification | Data Type | Sensitivity | Retention | Encryption | |-----------|-------------|-----------|------------| | Clinical queries (may contain PHI) | Critical | De-identify within 24h, purge raw in 7 days | AES-256 + TLS, field-level for PHI | | Evidence citations | Low | Indefinite (public literature) | TLS in transit | | Patient-contextualized responses | High (derived PHI) | 30 days max, then de-identify | AES-256 at rest | | Research paper metadata | Low | Indefinite | TLS in transit | | Clinician usage analytics | Medium | 1 year (de-identified) | AES-256 at rest | ## Data Import ```typescript interface ClinicalQuery { queryId: string; clinicianId: string; queryText: string; patientContext?: { age?: number; sex?: string; conditions?: string[] }; timestamp: string; } async function submitClinicalQuery(query: ClinicalQ...

Details

Author
jeremylongshore
Repository
jeremylongshore/claude-code-plugins-plus-skills
Created
7 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category