abridge-sdk-patterns
Installation
SKILL.md
Abridge SDK Patterns
Overview
Production-ready patterns for Abridge clinical AI integration. Since Abridge operates via partner APIs (not a public SDK), these patterns wrap the REST API with type-safe clients, HIPAA-compliant logging, and healthcare-specific error handling.
Prerequisites
- Completed
abridge-install-authsetup - TypeScript project with strict mode enabled
- Understanding of HIPAA audit logging requirements
Instructions
Step 1: Type-Safe API Client Singleton
// src/abridge/client.ts
import axios, { AxiosInstance, AxiosError } from 'axios';
Related skills