Automate Webflow site management with Claude Code skills. Manage CMS content, audit site health, optimize assets, and publish changes safely. Ideal for operations teams to streamline workflows and maintain site performance.
git clone https://github.com/webflow/webflow-skills.gitAutomate Webflow site management with Claude Code skills. Manage CMS content, audit site health, optimize assets, and publish changes safely. Ideal for operations teams to streamline workflows and maintain site performance.
No install command available. Check the GitHub repository for manual installation instructions.
git clone https://github.com/webflow/webflow-skillsCopy the install command above and run it in your terminal.
Launch Claude Code, Cursor, or your preferred AI coding agent.
Use the prompt template or examples below to test the skill.
Adapt the skill to your specific use case and workflow.
I need to automate some tasks on my Webflow site. Here are the details: [WEBSITE_URL], [SPECIFIC_TASKS]. Can you generate a Claude Code skill to handle this? Please include error handling and validation.
```javascript
// Webflow CMS Content Updater
// Automates updating CMS collections in Webflow
const Webflow = require('webflow-api');
// Initialize Webflow client
const client = new Webflow({ token: process.env.WEBFLOW_API_TOKEN });
// Update CMS items
async function updateCMSItems(collectionId, items) {
try {
for (const item of items) {
await client.collections.updateItem(collectionId, item.id, item.fields);
console.log(`Updated item ${item.id} in collection ${collectionId}`);
}
} catch (error) {
console.error('Error updating CMS items:', error);
}
}
// Example usage
const collectionId = 'YOUR_COLLECTION_ID';
const items = [
{
id: 'ITEM_ID_1',
fields: {
title: 'Updated Title',
description: 'Updated description'
}
},
// Add more items as needed
];
updateCMSItems(collectionId, items);
```Visual web development platform with CMS
AI assistant built for thoughtful, nuanced conversation
IronCalc is a spreadsheet engine and ecosystem
Customer feedback management made simple
Enterprise workflow automation and service management platform
Automate your spreadsheet tasks with AI power