abridge-hello-world

Featured

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

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 Hello World ## Overview Minimal working example demonstrating Abridge's ambient clinical documentation. This creates a simulated encounter session, sends audio/transcript data, and receives a structured clinical note. ## Prerequisites - Completed `abridge-install-auth` setup - Abridge sandbox credentials configured - Node.js 18+ with TypeScript ## Instructions ### Step 1: Create Project Structure ```bash mkdir abridge-hello-world && cd abridge-hello-world npm init -y npm install axios dotenv typescript @types/node npx tsc --init --target ES2022 --module NodeNext --moduleResolution NodeNext ``` ### Step 2: Build the Encounter Session Client ```typescript // src/encounter-session.ts import axios, { AxiosInstance } from 'axios'; interface EncounterSession { session_id: string; patient_id: string; provider_id: string; encounter_type: 'outpatient' | 'inpatient' | 'emergency'; status: 'active' | 'processing' | 'completed'; created_at: string; } interface ClinicalNote { note_id: string; session_id: string; sections: { chief_complaint: string; history_present_illness: string; review_of_systems: string; physical_exam: string; assessment: string; plan: string; }; icd10_codes: Array<{ code: string; description: string }>; cpt_codes: Array<{ code: string; description: string }>; confidence_score: number; source_citations: Array<{ section: string; text: string; audio_timestamp_start: number; audio_tim...

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

Implement Abridge patient-facing documentation and after-visit summary generation. Use when building patient portal integration, generating plain-language summaries, multi-language translations, or after-visit instructions from clinical encounters. Trigger: "abridge patient summary", "after-visit summary", "patient portal abridge", "abridge patient-facing", "abridge multilingual".

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

abridge-local-dev-loop

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

2,266 Updated today
jeremylongshore
AI & Automation Featured

abridge-reference-architecture

Implement Abridge reference architecture for clinical AI integration. Use when designing a new Abridge deployment, reviewing project structure, or planning multi-site health system rollouts with EHR integration. Trigger: "abridge architecture", "abridge project structure", "abridge system design", "abridge multi-site".

2,266 Updated today
jeremylongshore