abridge-install-auth

Featured

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

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 Install & Auth ## Overview Configure Abridge ambient AI platform credentials and EHR integration tokens. Abridge is an enterprise clinical documentation platform — it does not have a public npm/pip SDK. Integration happens through EHR-embedded workflows (Epic Pal, Athena, eClinicalWorks) and partner API access. ## Prerequisites - Healthcare organization with Abridge contract - EHR system access (Epic, Athena, eClinicalWorks, Cerner, or AllScripts) - Abridge Partner Portal credentials from your sales engineer - HIPAA-compliant infrastructure (required for PHI handling) ## Instructions ### Step 1: Obtain Abridge Partner Credentials ```bash # Abridge uses partner-issued credentials, not self-service API keys # Contact your Abridge sales engineer for: # 1. Partner API client_id and client_secret # 2. Organization ID (org_id) # 3. Sandbox environment URL # Store credentials securely (never in source control) cat > .env.local << 'EOF' ABRIDGE_CLIENT_ID=partner_xxxxxxxxxxxx ABRIDGE_CLIENT_SECRET=secret_xxxxxxxxxxxx ABRIDGE_ORG_ID=org_xxxxxxxxxxxx ABRIDGE_BASE_URL=https://api.abridge.com/v1 ABRIDGE_SANDBOX_URL=https://sandbox.api.abridge.com/v1 EOF chmod 600 .env.local echo ".env.local" >> .gitignore ``` ### Step 2: Configure Epic EHR Integration (Most Common Path) ```typescript // src/config/abridge-ehr.ts // Abridge is Epic's first "Pal" — integration uses Epic's FHIR R4 APIs interface AbridgeEpicConfig { epicClientId: string; // From Epic App Orch...

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-core-workflow-a

Implement Abridge ambient clinical documentation capture-to-note pipeline. Use when building the primary encounter workflow: audio capture, real-time transcription, AI note generation, and EHR note insertion. Trigger: "abridge clinical workflow", "abridge encounter pipeline", "ambient documentation workflow", "abridge note generation".

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
AI & Automation Featured

abridge-security-basics

Apply HIPAA-compliant security practices for Abridge clinical AI integrations. Use when securing PHI in transit/at rest, configuring access controls, implementing audit logging, or preparing for HIPAA security audits. Trigger: "abridge security", "abridge HIPAA", "abridge PHI protection", "abridge access control", "abridge audit logging".

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