Healthcare systems
Skill sairam0424/MindForge/.mindforge/skills/healthcare-systems
MindForge: The Enterprise Agentic Framework for Claude Code & Antigravity. High-performance autonomous execution, wave-parallelism, and multi-tier governance for production-grade AI engineering.
npx -y skills add sairam0424/MindForge --skill healthcare-systemsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
4.0 KB, as published. Nobody here has run it
Skill — Healthcare Systems
When this skill activates
This skill activates when designing, building, or auditing healthcare systems that handle Protected Health Information (PHI), integrate with Electronic Health Records (EHR), implement clinical workflows, or require HIPAA compliance and healthcare interoperability standards.
Mandatory actions when this skill is active
Before writing any code
- Conduct HIPAA compliance audit: identify all PHI touchpoints (patient names, DOB, SSN, medical records, diagnoses, prescriptions) and document encryption requirements (AES-256 at rest, TLS 1.3 in transit)
- Review HL7 FHIR resource specifications for all clinical data models (Patient, Observation, Condition, MedicationRequest, Encounter) and validate against FHIR R4 or R5 conformance requirements
- Map clinical workflows to business requirements: patient registration, provider authentication, order entry (CPOE), medication administration records (MAR), clinical notes (SOAP), discharge summaries, and continuity of care documents (CCD)
During implementation
- Implement BAA-compliant audit logging for all PHI access: capture user identity, timestamp, action type, resource accessed, IP address, and store logs in WORM (write-once-read-many) storage with 7-year retention
- Enforce role-based access control (RBAC) with principle of least privilege: separate roles for physicians, nurses, pharmacists, billing staff, and patients, with explicit consent workflows for data sharing between organizations
- Use FHIR-native authentication (SMART on FHIR) with OAuth 2.0 authorization code flow, patient-level scopes (patient/*.read), and refresh token rotation for mobile health apps
- Implement de-identification pipelines for research datasets: remove 18 HIPAA identifiers (names, dates, geocodes, phone numbers, medical record numbers) using regex patterns and NLP entity recognition
- Design interoperability interfaces using FHIR REST APIs with proper content negotiation (application/fhir+json), search parameters (?patient=123&category=vital-signs), and batch/transaction bundles for atomic operations
After implementation
- Execute security testing: penetration testing for OWASP Top 10 healthcare vulnerabilities (SQL injection in patient search, XSS in clinical notes, broken authentication), vulnerability scanning, and threat modeling for ransomware/data exfiltration scenarios
- Validate FHIR conformance using HL7 validation tools: check resource structure, cardinality constraints, required terminology bindings (LOINC for labs, SNOMED CT for diagnoses, RxNorm for medications), and profile compliance
- Conduct end-to-end clinical workflow testing with real provider scenarios: patient check-in, vital signs capture, order placement, results review, prescription writing, and documentation with audit trail verification
Self-check before task completion
- All PHI is encrypted at rest (AES-256) and in transit (TLS 1.3), with key management via HSM or cloud KMS
- Audit logs capture all PHI access events with user attribution and are tamper-evident (cryptographic hashing or blockchain anchoring)
- FHIR resources validate against published profiles, use standard terminologies (LOINC/SNOMED/RxNorm), and implement proper search parameters
- Access control enforces least privilege, requires MFA for administrative access, and implements automatic session timeouts (15 minutes idle)
- Business Associate Agreement (BAA) requirements are documented, including breach notification procedures and subprocessor agreements
- Clinical workflows have been validated by domain experts (physicians, nurses) for safety and usability