abridge-webhooks-events

Featured

Implement Abridge webhook handling for clinical documentation events. Use when receiving note completion notifications, encounter status changes, provider enrollment events, or quality alert callbacks from Abridge. Trigger: "abridge webhook", "abridge events", "abridge notifications", "abridge note completed event", "abridge encounter event".

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 Webhooks & Events ## Overview Handle Abridge webhook events for clinical documentation lifecycle: note completion, encounter status changes, quality alerts, and provider enrollment notifications. All webhook payloads are HIPAA-scoped (contain session IDs but no PHI). ## Abridge Event Types | Event | Trigger | Use Case | |-------|---------|----------| | `encounter.session.completed` | Note generation finished | Push note to EHR | | `encounter.session.failed` | Note generation failed | Alert clinical team | | `encounter.note.reviewed` | Clinician reviewed/edited note | Update EHR with final version | | `encounter.note.signed` | Clinician signed the note | Lock note in EHR | | `patient.summary.ready` | Patient summary generated | Push to patient portal | | `provider.enrolled` | Provider onboarded | Update provider roster | | `quality.alert` | Low confidence or missing content | Flag for clinical review | ## Instructions ### Step 1: Webhook Endpoint with Signature Verification ```typescript // src/webhooks/abridge-webhook-handler.ts import express from 'express'; import crypto from 'crypto'; const router = express.Router(); // CRITICAL: Use raw body for signature verification router.post('/webhooks/abridge', express.raw({ type: 'application/json' }), async (req, res) => { const signature = req.headers['x-abridge-signature'] as string; const timestamp = req.headers['x-abridge-timestamp'] as string; if (!verifySignature(req.body, signature, times...

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

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

documenso-webhooks-events

Implement Documenso webhook configuration and event handling. Use when setting up webhook endpoints, handling document events, or implementing real-time notifications for document signing. Trigger with phrases like "documenso webhook", "documenso events", "document completed webhook", "signing notification".

2,266 Updated today
jeremylongshore
AI & Automation Featured

abridge-common-errors

Diagnose and fix common Abridge clinical AI integration errors. Use when encountering EHR connectivity failures, note generation errors, audio streaming issues, or FHIR validation problems with Abridge. Trigger: "abridge error", "abridge not working", "abridge debug", "fix abridge issue", "abridge troubleshoot".

2,266 Updated today
jeremylongshore