'Analyze, plan, and execute Framer SDK upgrades with breaking change
Scanned 9/2/2026
Install to Claude Code
npx -y skills add jeremylongshore/tons-of-skills-marketplace --skill framer-upgrade-migration --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Framer Upgrade Migration?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/jeremylongshore-framer-upgrade-migration-tons-of-skills-marketplace)More formats (shields.io, HTML) on the badges page.
---
name: framer-upgrade-migration
description: 'Analyze, plan, and execute Framer SDK upgrades with breaking change
detection.
Use when upgrading Framer SDK versions, detecting deprecations,
or migrating to new API versions.
Trigger with phrases like "upgrade framer", "framer migration",
"framer breaking changes", "update framer SDK", "analyze framer version".
'
allowed-tools: Read, Write, Edit, Bash(npm:*), Bash(git:*)
version: 1.5.0
license: MIT
author: Jeremy Longshore <jeremy@intentsolutions.io>
tags:
- saas
- framer
compatibility: Designed for Claude Code
---
# Framer Upgrade & Migration
## Prerequisites
Current release information, an inventory of site components, domains, integrations, and redirects, plus a staging site and rollback owner.
## Output
Record versions/components reviewed, staging and canary outcome, redirect/integration checks, approver, and rollback state without copying visitor or credential data.
## Error Handling
Stop promotion on routing, publishing, access, integration, or privacy mismatches; restore the prior version and review opaque failures before retrying.
## Examples
Migrate a fictional staging page, compare published routes and a synthetic form flow, and roll back when a redirect or integration fails.
## Overview
Guide for upgrading Framer plugin SDK, Server API, and migrating between Framer platform versions. Check the Framer Developer Changelog for breaking changes before upgrading.
## Instructions
### Step 1: Check Current Versions
```bash
npm list framer-plugin framer-api framer
npm view framer-plugin version
npm view framer-api version
```
### Step 2: Review Changelog
Visit https://www.framer.com/developers/changelog for breaking changes.
Key migrations:
- **Plugin API 3.x**: Introduced Managed Collections, Code File APIs
- **Server API beta**: WebSocket-based programmatic access
- **Code Components v2**: Updated property control types
### Step 3: Upgrade Plugin SDK
```bash
git checkout -b upgrade/framer-plugin
npm install framer-plugin@latest
npm run build # Check for type errors
npm test # Run tests
```
### Step 4: Common Migration Patterns
```typescript
// Plugin API 2.x → 3.x: Collection APIs changed
// BEFORE: framer.createCollection(...)
// AFTER: framer.createManagedCollection(...)
// Code components: ControlType changes
// BEFORE: ControlType.FusedNumber
// AFTER: ControlType.Number (with min/max/step)
// Overrides: import path
// BEFORE: import { Override } from 'framer'
// AFTER: import { Override } from 'framer' (unchanged, but check type shape)
```
### Step 5: Rollback
```bash
# Pin to previous version
npm install framer-plugin@3.x.x --save-exact
```
## Resources
- [Framer Changelog](https://www.framer.com/developers/changelog)
- [Framer Upgrading Guide](https://www.framer.com/developers/upgrading)
## Next Steps
For CI integration, see `framer-ci-integration`.
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!