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".
Standardmäßig ist der Prompt ausgewählt, der zuerst die Quelle prüft. Sie können zu einem direkten Befehl wechseln oder eine lokale Kopie herunterladen.
Quelldateien prüfen
Lesen Sie SKILL.md und alle von SkillsMP angezeigten Begleitdateien, bevor Sie sich für eine Installation entscheiden.
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Ein direkter Befehl überspringt den Prüf-Prompt. Prüfen Sie die Quelle, bevor Sie ihn ausführen.
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"