abridge-performance-tuning

Featured

Optimize Abridge clinical AI integration performance for high-volume deployments. Use when reducing note generation latency, optimizing audio streaming throughput, improving FHIR push performance, or scaling for multi-site health systems. Trigger: "abridge performance", "abridge latency", "abridge optimization", "abridge slow", "abridge scale".

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 Performance Tuning ## Overview Performance optimization for high-volume Abridge deployments. Large health systems process thousands of encounters daily — latency in note generation directly impacts clinical workflow throughput. ## Performance Targets | Metric | Target | Critical Threshold | |--------|--------|--------------------| | Audio stream → first transcript | < 2s | > 5s | | Encounter → completed note | < 30s | > 60s | | Note → EHR push | < 3s | > 10s | | Patient summary generation | < 10s | > 30s | | Concurrent sessions per org | 100+ | < 50 | ## Instructions ### Step 1: Audio Streaming Optimization ```typescript // src/performance/audio-optimizer.ts // Optimize audio chunk size and streaming for lowest latency interface AudioStreamMetrics { chunkSize: number; sendInterval: number; bufferUtilization: number; latencyP50: number; latencyP99: number; } class OptimizedAudioStream { private buffer: Buffer[] = []; private metrics: AudioStreamMetrics = { chunkSize: 3200, // 100ms at 16kHz 16-bit mono = 3200 bytes sendInterval: 100, // Send every 100ms bufferUtilization: 0, latencyP50: 0, latencyP99: 0, }; constructor( private ws: WebSocket, private sampleRate: number = 16000, ) {} // Optimal chunk size: 100ms for low latency, 500ms for bandwidth efficiency processAudioChunk(chunk: Buffer): void { this.buffer.push(chunk); const totalSize = this.buffer.reduce((sum, b) => sum + b.length,...

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

Optimize Abridge clinical AI costs through tier selection, session management, and usage monitoring for healthcare organizations. Use when analyzing Abridge billing, optimizing encounter volume, or right-sizing your Abridge contract for provider count. Trigger: "abridge cost", "abridge pricing", "abridge billing", "abridge budget", "abridge ROI".

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

elevenlabs-performance-tuning

Optimize ElevenLabs TTS latency with model selection, streaming, caching, and audio format tuning. Use when experiencing slow TTS responses, implementing real-time voice features, or optimizing audio generation throughput. Trigger: "elevenlabs performance", "optimize elevenlabs", "elevenlabs latency", "elevenlabs slow", "fast TTS", "reduce elevenlabs latency", "TTS streaming".

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