8.8k★by mrgoodb
webflow – OpenClaw Skill
webflow is an OpenClaw Skills integration for writing workflows. Manage Webflow sites, CMS collections, and forms via API. Publish sites and manage content programmatically.
8.8k stars5.6k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026writing
Skill Snapshot
| name | webflow |
| description | Manage Webflow sites, CMS collections, and forms via API. Publish sites and manage content programmatically. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/webflow |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/webflow |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
267 BSKILL.md
1.6 KBSKILL.md
name: webflow description: Manage Webflow sites, CMS collections, and forms via API. Publish sites and manage content programmatically. metadata: {"clawdbot":{"emoji":"🎨","requires":{"env":["WEBFLOW_API_TOKEN"]}}}
Webflow
Website builder and CMS.
Environment
export WEBFLOW_API_TOKEN="xxxxxxxxxx"
List Sites
curl "https://api.webflow.com/v2/sites" \
-H "Authorization: Bearer $WEBFLOW_API_TOKEN"
Get Site Details
curl "https://api.webflow.com/v2/sites/{site_id}" \
-H "Authorization: Bearer $WEBFLOW_API_TOKEN"
List Collections (CMS)
curl "https://api.webflow.com/v2/sites/{site_id}/collections" \
-H "Authorization: Bearer $WEBFLOW_API_TOKEN"
List Collection Items
curl "https://api.webflow.com/v2/collections/{collection_id}/items" \
-H "Authorization: Bearer $WEBFLOW_API_TOKEN"
Create CMS Item
curl -X POST "https://api.webflow.com/v2/collections/{collection_id}/items" \
-H "Authorization: Bearer $WEBFLOW_API_TOKEN" \
-H "Content-Type: application/json" \
-d '{
"fieldData": {
"name": "New Blog Post",
"slug": "new-blog-post",
"content": "Post content here..."
}
}'
Publish Site
curl -X POST "https://api.webflow.com/v2/sites/{site_id}/publish" \
-H "Authorization: Bearer $WEBFLOW_API_TOKEN"
List Form Submissions
curl "https://api.webflow.com/v2/sites/{site_id}/forms/{form_id}/submissions" \
-H "Authorization: Bearer $WEBFLOW_API_TOKEN"
Links
- Dashboard: https://webflow.com/dashboard
- Docs: https://developers.webflow.com
README.md
No README available.
Permissions & Security
Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.
Requirements
- OpenClaw CLI installed and configured.
- Language: Markdown
- License: MIT
- Topics:
FAQ
How do I install webflow?
Run openclaw add @mrgoodb/webflow in your terminal. This installs webflow into your OpenClaw Skills catalog.
Does this skill run locally or in the cloud?
OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.
Where can I verify the source code?
The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/webflow. Review commits and README documentation before installing.
