abridge-local-dev-loop

Featured

Configure Abridge local development with FHIR server, synthetic data, and hot reload. Use when setting up a development environment for clinical AI integration, testing encounter workflows locally, or iterating on EHR integration code. Trigger: "abridge local dev", "abridge dev setup", "abridge test locally".

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

# Abridge Local Dev Loop ## Overview Local development workflow for Abridge clinical AI integrations. Uses a local HAPI FHIR server for EHR simulation, synthetic patient data from Synthea, and Abridge sandbox APIs. Never use real PHI in development. ## Prerequisites - Completed `abridge-install-auth` setup - Docker installed (for local FHIR server) - Node.js 18+ with TypeScript - Abridge sandbox credentials ## Instructions ### Step 1: Start Local FHIR Server ```bash # Run HAPI FHIR R4 server locally docker run -d --name hapi-fhir \ -p 8080:8080 \ -e hapi.fhir.default_encoding=json \ hapiproject/hapi:latest # Verify curl -s http://localhost:8080/fhir/metadata | jq '.fhirVersion' # → "4.0.1" # Seed synthetic patient curl -X POST http://localhost:8080/fhir/Patient \ -H "Content-Type: application/fhir+json" \ -d '{"resourceType":"Patient","name":[{"given":["Jane"],"family":"Doe"}],"birthDate":"1985-03-15","gender":"female"}' ``` ### Step 2: Create Dev Environment Configuration ```typescript // src/config/dev.ts interface DevConfig { abridge: { baseUrl: string; clientSecret: string; orgId: string }; fhir: { baseUrl: string }; fixtures: { transcriptsDir: string }; } const devConfig: DevConfig = { abridge: { baseUrl: process.env.ABRIDGE_SANDBOX_URL || 'https://sandbox.api.abridge.com/v1', clientSecret: process.env.ABRIDGE_CLIENT_SECRET!, orgId: process.env.ABRIDGE_ORG_ID!, }, fhir: { baseUrl: 'http://localhost:8080/fhir' }, fixtures: {...

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

AI & Automation Featured

abridge-install-auth

Set up Abridge clinical AI platform authentication and EHR integration credentials. Use when onboarding a healthcare org to Abridge, configuring Epic/Athena integration, or setting up developer sandbox access for ambient AI documentation. Trigger: "install abridge", "setup abridge", "abridge auth", "configure abridge credentials".

2,266 Updated today
jeremylongshore
AI & Automation Featured

abridge-hello-world

Create a minimal Abridge ambient AI clinical documentation example. Use when testing Abridge integration, verifying EHR connectivity, or learning how Abridge captures and structures clinical conversations. Trigger: "abridge hello world", "abridge example", "abridge quick start", "test abridge".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-local-dev-loop

Configure Apollo.io local development workflow. Use when setting up development environment, testing API calls locally, or establishing team development practices. Trigger with phrases like "apollo local dev", "apollo development setup", "apollo dev environment", "apollo testing locally".

2,266 Updated today
jeremylongshore
AI & Automation Featured

abridge-ci-integration

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".

2,266 Updated today
jeremylongshore
DevOps & Infrastructure Featured

abridge-deploy-integration

Deploy Abridge clinical AI integration to HIPAA-compliant cloud infrastructure. Use when deploying to GCP Cloud Run, AWS ECS, or Azure Container Apps with healthcare-grade secrets management and compliance controls. Trigger: "deploy abridge", "abridge production deploy", "abridge Cloud Run", "abridge AWS deploy", "abridge HIPAA infrastructure".

2,266 Updated today
jeremylongshore