Add to Claude Code
43 addsInstall this Claude Code skill.
Name: Webflow CMS Bulk Importer
Save to: ~/.claude/skills/webflow-cms-bulk-importer.md
---
---
name: Webflow CMS Bulk Importer
description: Bulk import structured data into a Webflow CMS collection
---
Import data into Webflow CMS: $ARGUMENTS
## Prerequisites
This skill requires the Webflow MCP server to be configured.
## Instructions
1. Identify the data source:
- CSV file path
- JSON file or array
- Markdown files in a directory
2. Use `list_collections` and `get_collection` to understand the target collection's schema
3. Map source fields to collection fields:
- Display the mapping for user confirmation before proceeding
- Flag any source fields that don't have a match
- Flag any required collection fields that aren't mapped
4. Validate the data:
- Check required fields are present
- Validate field types (text, number, date, reference, image URL)
- Report any rows that will fail validation
5. Import items one by one using `create_item`:
- Log progress: "Imported 5/50 items..."
- On error, log the failing row and continue with the rest
6. Report results: total imported, total failed, list of failures
## Output
```
Import complete:
47/50 items imported to "Blog Posts" collection
3 items failed:
- Row 12: missing required field "slug"
- Row 28: invalid date format "March 2024"
- Row 41: duplicate slug "hello-world"
```
## Constraints
- Always show the field mapping and ask for confirmation before importing
- Never overwrite existing items unless explicitly asked
- Respect Webflow's rate limit (60 req/min): add delays if needed
Paste into Claude Code to add this skill.
How to add
Full guide →Click Add, then paste into Claude Code. Claude will save it to the right location for you.
Target: .claude/commands/<name>.md