figma-upgrade-migration

Featured

Handle Figma REST API scope changes, deprecations, and migration tasks. Use when migrating from deprecated scopes, updating webhook versions, or adapting to Figma API changelog changes. Trigger with phrases like "upgrade figma", "figma deprecation", "figma scope migration", "figma API changes", "figma v2 webhooks".

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

# Figma Upgrade & Migration ## Overview Handle Figma REST API deprecations and breaking changes. The most significant recent change is the deprecation of the `files:read` scope in favor of granular scopes, and the move from Webhooks V1 to V2. ## Prerequisites - Current Figma integration working - Git for version control - Access to Figma developer settings ## Instructions ### Step 1: Scope Migration (files:read Deprecation) The `files:read` scope is deprecated. Migrate to granular scopes: | Deprecated Scope | Replacement Scopes | Endpoints Covered | |-----------------|-------------------|-------------------| | `files:read` | `file_content:read` | `GET /v1/files/:key`, `GET /v1/images/:key` | | `files:read` | `file_comments:read` | `GET /v1/files/:key/comments` | | `files:read` | `file_dev_resources:read` | `GET /v1/files/:key/dev_resources` | | `files:read` | `file_versions:read` | `GET /v1/files/:key/versions` | **Migration steps:** 1. Audit which endpoints your code calls 2. Map each endpoint to its required scope 3. Generate a new PAT with granular scopes 4. Update OAuth apps with new scope list 5. Test all endpoints with the new token 6. Revoke old tokens ```bash # Find all Figma API calls in your codebase grep -rn "api.figma.com" --include="*.ts" --include="*.js" src/ \ | grep -oP '/v\d/[a-z_/]+' | sort -u # Example output: # /v1/files # /v1/files/comments # /v1/images # /v2/webhooks ``` ### Step 2: Webhooks V1 to V2 Migration ```typescript // V1 (deprecated):...

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 Solid

webflow-upgrade-migration

Analyze, plan, and execute Webflow SDK upgrades (webflow-api v1 to v3) with breaking change detection, API v1-to-v2 migration, and deprecation handling. Trigger with phrases like "upgrade webflow", "webflow migration", "webflow breaking changes", "update webflow SDK", "webflow v1 to v2".

2,266 Updated today
jeremylongshore
AI & Automation Featured

figma-migration-deep-dive

Migrate design systems between Figma files, or from other tools to Figma via API. Use when migrating design tokens between files, syncing variables across libraries, or building automated migration pipelines for Figma. Trigger with phrases like "migrate figma", "figma migration", "move figma library", "figma file migration", "sync figma files".

2,266 Updated today
jeremylongshore
AI & Automation Solid

framer-upgrade-migration

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

2,266 Updated today
jeremylongshore
AI & Automation Featured

fathom-upgrade-migration

Handle Fathom API changes and version migrations. Trigger with phrases like "upgrade fathom", "fathom api changes", "fathom migration".

2,266 Updated today
jeremylongshore
AI & Automation Featured

fireflies-upgrade-migration

Handle Fireflies.ai API deprecations and migrate to current query patterns. Use when updating deprecated fields, migrating query patterns, or responding to Fireflies API changelog updates. Trigger with phrases like "upgrade fireflies", "fireflies deprecated", "fireflies migration", "fireflies breaking changes", "fireflies changelog".

2,266 Updated today
jeremylongshore