abridge-upgrade-migration

Featured

Plan and execute Abridge integration upgrades and EHR migration procedures. Use when upgrading Abridge API versions, migrating between EHR systems, or handling breaking changes in clinical documentation workflows. Trigger: "abridge upgrade", "abridge migration", "abridge version update", "migrate abridge EHR", "abridge breaking changes".

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 Upgrade & Migration ## Overview Procedures for upgrading Abridge API integrations and migrating between EHR systems. Healthcare migrations are high-risk — clinical documentation cannot have gaps. ## Common Migration Scenarios | Scenario | Complexity | Downtime | Risk | |----------|-----------|----------|------| | API version bump (v1 → v2) | Medium | Zero (dual-version) | Low | | EHR migration (Epic → Athena) | High | Planned window | High | | New specialty onboarding | Low | Zero | Low | | Note template changes | Medium | Zero | Medium | | Multi-site rollout | High | Per-site windows | Medium | ## Instructions ### Step 1: API Version Migration ```typescript // src/migration/api-version-adapter.ts // Dual-version adapter for zero-downtime API upgrades interface ApiVersionConfig { v1BaseUrl: string; // Current production v2BaseUrl: string; // New version (canary) canaryPercent: number; // Percentage of traffic to v2 } class AbridgeVersionAdapter { constructor(private config: ApiVersionConfig) {} getBaseUrl(): string { // Gradual canary rollout const useV2 = Math.random() * 100 < this.config.canaryPercent; return useV2 ? this.config.v2BaseUrl : this.config.v1BaseUrl; } // Map v1 response to v2 format (or vice versa) normalizeNoteResponse(response: any, version: 'v1' | 'v2'): any { if (version === 'v1') { return { ...response, // v2 adds quality_metrics — provide defaults for v1 quality_metrics...

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

migrating-apis

Implement API migrations between versions, platforms, or frameworks with minimal downtime. Use when upgrading APIs between versions. Trigger with phrases like "migrate the API", "upgrade API version", or "migrate to new API".

2,266 Updated today
jeremylongshore
AI & Automation Featured

apollo-upgrade-migration

Manage Apollo.io API upgrades and endpoint migrations. Use when upgrading Apollo API versions, migrating to new endpoints, or updating deprecated API usage. Trigger with phrases like "apollo upgrade", "apollo migration", "update apollo api", "apollo breaking changes", "apollo deprecation".

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

bamboohr-upgrade-migration

Plan and execute BambooHR API migration with breaking change detection. Use when BambooHR announces API changes, adapting to deprecated endpoints, or migrating from legacy API patterns to current best practices. Trigger with phrases like "upgrade bamboohr", "bamboohr migration", "bamboohr breaking changes", "bamboohr API update", "bamboohr deprecated".

2,266 Updated today
jeremylongshore