agentsclimarketplace

Webflow upgrade migration

Skill jeremylongshore/claude-code-plugins-plus-skills/plugins/saas-packs/webflow-pack/skills/webflow-upgrade-migration

'Analyze, plan, and execute Webflow SDK upgrades (webflow-api v1 to v3) withFrom its SKILL.md

Install
npx -y skills add jeremylongshore/claude-code-plugins-plus-skills --skill webflow-upgrade-migration

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

What its file declares

Copied from the file, not written here

The file declares its own license as MIT. That is the author’s claim about this one file, and it is not the same thing as the license GitHub reports for the repository, which is listed with the other numbers below.

SKILL.md

6.9 KB, ~1.8k tokens by cl100k_base, as published. Nobody here has run it

Webflow Upgrade & Migration

Overview

Guide for upgrading the webflow-api SDK and migrating from Webflow Data API v1 to v2. Covers breaking changes, endpoint mapping, import updates, and rollback.

Prerequisites

  • Current webflow-api SDK installed
  • Git for version control (create upgrade branch)
  • Test suite available
  • Staging environment for validation

Instructions

Step 1: Assess Current Version

# Check installed version
npm list webflow-api

# Check latest available
npm view webflow-api version

# View changelog
npm view webflow-api --json | jq '.versions[-5:]'

Step 2: SDK Version History

SDK VersionAPI VersionNode.jsKey Changes
3.xData API v218+Current. WebflowClient, auto-retry, bulk ops
2.xData API v1/v216+Transitional. Mixed v1/v2 endpoints
1.xData API v114+Legacy. Webflow class, no types

v1 endpoints deprecation: late 2026. Migrate before then.

Step 3: API v1 to v2 Migration Map

Base URL Change

v1: https://api.webflow.com
v2: https://api.webflow.com/v2

Authentication Change

// v1 (old) — API key
import Webflow from "webflow-api";
const webflow = new Webflow({ token: "your-api-key" });

// v2 (current) — Access token
import { WebflowClient } from "webflow-api";
const webflow = new WebflowClient({ accessToken: "your-access-token" });

Endpoint Migration Map

Operationv1 Endpointv2 Endpoint
List sitesGET /sitesGET /v2/sites
Get siteGET /sites/{site_id}GET /v2/sites/{site_id}
Publish sitePOST /sites/{site_id}/publishPOST /v2/sites/{site_id}/publish
List collectionsGET /sites/{site_id}/collectionsGET /v2/sites/{site_id}/collections
List itemsGET /collections/{id}/itemsGET /v2/collections/{id}/items
Create itemPOST /collections/{id}/itemsPOST /v2/collections/{id}/items
Update itemPUT /collections/{id}/items/{item_id}PATCH /v2/collections/{id}/items/{item_id}
List productsGET /sites/{site_id}/productsGET /v2/sites/{site_id}/products
List ordersGET /sites/{site_id}/ordersGET /v2/sites/{site_id}/orders

Key v2 differences:

  • Update uses PATCH (not PUT) — partial updates only
  • Items created as drafts by default (isDraft: true)
  • Bulk endpoints added (create/update/delete up to 100 items)
  • Live (published) items have separate endpoints (/items/live)
  • Scopes required (e.g., cms:read, cms:write)

Step 4: SDK Method Migration

// ===== v1 SDK (old) =====
const webflow = new Webflow({ token: "xxx" });

// List sites
const sites = await webflow.sites();

// List collections
const collections = await webflow.collections({ siteId: "site-123" });

// Get items
const items = await webflow.items({ collectionId: "col-456" });

// Create item
const item = await webflow.createItem({
  collectionId: "col-456",
  fields: { name: "Test", slug: "test", _archived: false, _draft: false },
});

// Update item (full replace)
await webflow.updateItem({
  collectionId: "col-456",
  itemId: "item-789",
  fields: { name: "Updated", slug: "test" },
});
// ===== v2 SDK (current) =====
const webflow = new WebflowClient({ accessToken: "xxx" });

// List sites
const { sites } = await webflow.sites.list();

// List collections
const { collections } = await webflow.collections.list("site-123");

// Get items (staged)
const { items } = await webflow.collections.items.listItems("col-456");

// Get items (live/published)
const { items: live } = await webflow.collections.items.listItemsLive("col-456");

// Create item (draft by default)
const item = await webflow.collections.items.createItem("col-456", {
  fieldData: { name: "Test", slug: "test" },
  isDraft: false,
});

// Update item (partial update via PATCH)
await webflow.collections.items.updateItem("col-456", "item-789", {
  fieldData: { name: "Updated" }, // Only changed fields
});

// NEW: Bulk create (up to 100)
await webflow.collections.items.createItemsBulk("col-456", {
  items: [{ fieldData: { name: "Item 1", slug: "item-1" } }],
});

// NEW: Publish items
await webflow.collections.items.publishItem("col-456", {
  itemIds: ["item-789"],
});

Step 5: Execute Upgrade

# Create upgrade branch
git checkout -b upgrade/webflow-api-v3

# Install latest
npm install webflow-api@latest

# Run tests to find breaking changes
npm test 2>&1 | tee upgrade-test-results.txt

# Fix breaking changes (common patterns above)
# ...

# Verify in staging
npm run test:integration

# Commit and PR
git add -A
git commit -m "upgrade: webflow-api to v3 (Data API v2)"

Step 6: Rollback if Needed

# Rollback to previous version
npm install [email protected] --save-exact

# Or revert the upgrade branch
git revert HEAD

Breaking Change Checklist

  • Import changed: Webflow class to WebflowClient named export
  • Auth changed: token to accessToken
  • Method calls changed: webflow.sites() to webflow.sites.list()
  • Field data wrapped in fieldData object
  • Update method changed from PUT to PATCH (partial)
  • Item status: _draft/_archived to isDraft/isArchived
  • Response shape: items now under .items property with .pagination
  • Scopes required for all operations

Output

  • Updated SDK to latest version
  • All v1 endpoints migrated to v2
  • Breaking changes fixed
  • Tests passing on staging
  • Rollback procedure documented

Error Handling

IssueCauseSolution
TypeError: Webflow is not a constructorUsing v1 import with v3 SDKChange to import { WebflowClient }
400 Bad Request on createFields not in fieldData wrapperWrap fields: { fieldData: { ... } }
405 Method Not AllowedUsing PUT instead of PATCHUpdate to PATCH for item updates
Missing items in responseNot checking .items propertyDestructure: const { items } = await ...

Resources

Next Steps

For CI integration during upgrades, see webflow-ci-integration.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 326,144. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.