Configure CI/CD pipeline for Abridge clinical AI integrations with GitHub Actions.
Use when setting up automated testing, FHIR validation, HIPAA compliance checks,
or deployment pipelines for healthcare AI applications.
Trigger: "abridge CI", "abridge GitHub Actions", "abridge pipeline",
"abridge automated testing", "abridge CI/CD".
Instalar com Codex ou Claude Copie este prompt, cole no Codex, Claude ou outro assistente e deixe que ele revise a página da skill e instale para você.
Um comando direto ignora o prompt de revisão. Verifique a origem antes de executá-lo.
Configure CI/CD pipeline for Abridge clinical AI integrations with GitHub Actions.
Use when setting up automated testing, FHIR validation, HIPAA compliance checks,
or deployment pipelines for healthcare AI applications.
Trigger: "abridge CI", "abridge GitHub Actions", "abridge pipeline",
"abridge automated testing", "abridge CI/CD".
allowed-tools
Read, Write, Edit, Bash(npm:*), Grep
version
1.4.0
license
MIT
author
Jeremy Longshore <jeremy@intentsolutions.io>
tags
["saas","healthcare","ai","abridge","ci-cd"]
compatibility
Designed for Claude Code
Abridge CI Integration
Overview
CI/CD pipeline for Abridge clinical documentation integrations. Healthcare CI pipelines require FHIR resource validation, PHI leak scanning, HIPAA compliance checks, and sandbox integration testing.
|
echo "Scanning for PHI patterns..."
# SSN patterns
if grep -rn '\b[0-9]\{3\}-[0-9]\{2\}-[0-9]\{4\}\b' src/ --include='*.ts' --include='*.js'; then
echo "FAIL: Possible SSN found in source code"
exit 1
fi
# Hardcoded patient names (common test names)
if grep -rn '"John Doe\|Jane Doe\|Test Patient"' src/ --include='*.ts'; then
echo "WARN: Hardcoded patient names — use synthetic data"
fi
echo "PHI scan passed"
fhir-validation:
runs-on:
ubuntu-latest
steps:
-
uses:
actions/checkout@v4
-
uses:
actions/setup-node@v4
with:
node-version:
'${{ env.NODE_VERSION }}'
-
run:
npm
ci
-
name:
Validate
FHIR
resources
run:
|
npm run test:fhir-schemas
echo "FHIR R4 validation passed"