[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-05453fa2-a1e9-4275-95f3-0da472570c18":3,"$fV1xeMQIzA3q8iDPMrBtjcQfbrPWtIf6rA2l4LDqezGw":43},{"id":4,"title":5,"description":6,"categoryId":7,"moduleId":8,"tags":9,"prompt":10,"icon":11,"source":12,"sourceUrl":13,"authorId":14,"authorName":15,"isPublic":16,"stars":17,"runs":18,"createdAt":19,"updatedAt":19,"module":20,"category":27,"packages":34},"05453fa2-a1e9-4275-95f3-0da472570c18","webflow-automation","自动化Webflow CMS收藏夹、网站发布、页面管理、资产上传和电商订单通过Rube MCP（Composio）。始终首先搜索当前模式下的工具。","cat_prod_automation","mod_productivity","sickn33,productivity","---\nname: webflow-automation\ndescription: \"Automate Webflow CMS collections, site publishing, page management, asset uploads, and ecommerce orders via Rube MCP (Composio). Always search tools first for current schemas.\"\nrisk: critical\nsource: community\ndate_added: \"2026-02-27\"\n---\n\n# Webflow Automation via Rube MCP\n\nAutomate Webflow operations including CMS collection management, site publishing, page inspection, asset uploads, and ecommerce order retrieval through Composio's Webflow toolkit.\n\n## Prerequisites\n\n- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)\n- Active Webflow connection via `RUBE_MANAGE_CONNECTIONS` with toolkit `webflow`\n- Always call `RUBE_SEARCH_TOOLS` first to get current tool schemas\n\n## Setup\n\n**Get Rube MCP**: Add `https:\u002F\u002Frube.app\u002Fmcp` as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.\n\n1. Verify Rube MCP is available by confirming `RUBE_SEARCH_TOOLS` responds\n2. Call `RUBE_MANAGE_CONNECTIONS` with toolkit `webflow`\n3. If connection is not ACTIVE, follow the returned auth link to complete Webflow OAuth\n4. Confirm connection status shows ACTIVE before running any workflows\n\n## Core Workflows\n\n### 1. Manage CMS Collection Items\n\n**When to use**: User wants to create, update, list, or delete items in Webflow CMS collections (blog posts, products, team members, etc.)\n\n**Tool sequence**:\n1. `WEBFLOW_LIST_WEBFLOW_SITES` - List sites to find the target site_id [Prerequisite]\n2. `WEBFLOW_LIST_COLLECTIONS` - List all collections for the site [Prerequisite]\n3. `WEBFLOW_GET_COLLECTION` - Get collection schema to find valid field slugs [Prerequisite for create\u002Fupdate]\n4. `WEBFLOW_LIST_COLLECTION_ITEMS` - List existing items with filtering and pagination [Optional]\n5. `WEBFLOW_GET_COLLECTION_ITEM` - Get a specific item's full details [Optional]\n6. `WEBFLOW_CREATE_COLLECTION_ITEM` - Create a new item with field data [Required for creation]\n7. `WEBFLOW_UPDATE_COLLECTION_ITEM` - Update an existing item's fields [Required for updates]\n8. `WEBFLOW_DELETE_COLLECTION_ITEM` - Permanently remove an item [Optional]\n9. `WEBFLOW_PUBLISH_SITE` - Publish changes to make them live [Optional]\n\n**Key parameters for CREATE_COLLECTION_ITEM**:\n- `collection_id`: 24-character hex string from LIST_COLLECTIONS\n- `field_data`: Object with field slug keys (NOT display names); must include `name` and `slug`\n- `field_data.name`: Display name for the item\n- `field_data.slug`: URL-friendly identifier (lowercase, hyphens, no spaces)\n- `is_draft`: Boolean to create as draft (default false)\n\n**Key parameters for UPDATE_COLLECTION_ITEM**:\n- `collection_id`: Collection identifier\n- `item_id`: 24-character hex MongoDB ObjectId of the existing item\n- `fields`: Object with field slug keys and new values\n- `live`: Boolean to publish changes immediately (default false)\n\n**Field value types**:\n- Text\u002FEmail\u002FLink\u002FDate: string\n- Number: integer or float\n- Boolean: true\u002Ffalse\n- Image: `{\"url\": \"...\", \"alt\": \"...\", \"fileId\": \"...\"}`\n- Multi-reference: array of reference ID strings\n- Multi-image: array of image objects\n- Option: option ID string\n\n**Pitfalls**:\n- Field keys must use the exact field `slug` from the collection schema, NOT display names\n- Always call `GET_COLLECTION` first to retrieve the schema and identify correct field slugs\n- `CREATE_COLLECTION_ITEM` requires `name` and `slug` in `field_data`\n- `UPDATE_COLLECTION_ITEM` cannot create new items; it requires a valid existing `item_id`\n- `item_id` must be a 24-character hexadecimal MongoDB ObjectId\n- Slug must be lowercase alphanumeric with hyphens: `^[a-z0-9]+(?:-[a-z0-9]+)*$`\n- CMS items are staged; use `PUBLISH_SITE` or set `live: true` to push to production\n\n### 2. Manage Sites and Publishing\n\n**When to use**: User wants to list sites, inspect site configuration, or publish staged changes\n\n**Tool sequence**:\n1. `WEBFLOW_LIST_WEBFLOW_SITES` - List all accessible sites [Required]\n2. `WEBFLOW_GET_SITE_INFO` - Get detailed site metadata including domains and settings [Optional]\n3. `WEBFLOW_PUBLISH_SITE` - Deploy all staged changes to live site [Required for publishing]\n\n**Key parameters for PUBLISH_SITE**:\n- `site_id`: Site identifier from LIST_WEBFLOW_SITES\n- `custom_domains`: Array of custom domain ID strings (from GET_SITE_INFO)\n- `publish_to_webflow_subdomain`: Boolean to publish to `{shortName}.webflow.io`\n- At least one of `custom_domains` or `publish_to_webflow_subdomain` must be specified\n\n**Pitfalls**:\n- `PUBLISH_SITE` republishes ALL staged changes for selected domains -- verify no unintended drafts are pending\n- Rate limit: 1 successful publish per minute\n- For sites without custom domains, must set `publish_to_webflow_subdomain: true`\n- `custom_domains` expects domain IDs (hex strings), not domain names\n- Publishing is a production action -- always confirm with the user first\n\n### 3. Manage Pages\n\n**When to use**: User wants to list pages, inspect page metadata, or examine page DOM structure\n\n**Tool sequence**:\n1. `WEBFLOW_LIST_WEBFLOW_SITES` - Find the target site_id [Prerequisite]\n2. `WEBFLOW_LIST_PAGES` - List all pages for a site with pagination [Required]\n3. `WEBFLOW_GET_PAGE` - Get detailed metadata for a specific page [Optional]\n4. `WEBFLOW_GET_PAGE_DOM` - Get the DOM\u002Fcontent node structure of a static page [Optional]\n\n**Key parameters**:\n- `site_id`: Site identifier (required for list pages)\n- `page_id`: 24-character hex page identifier\n- `locale_id`: Optional locale filter for multi-language sites\n- `limit`: Max results per page (max 100)\n- `offset`: Pagination offset\n\n**Pitfalls**:\n- `LIST_PAGES` paginates via offset\u002Flimit; iterate when sites have many pages\n- Page IDs are 24-character hex strings matching pattern `^[0-9a-fA-F]{24}$`\n- `GET_PAGE_DOM` returns the node structure, not rendered HTML\n- Pages include both static and CMS-driven pages\n\n### 4. Upload Assets\n\n**When to use**: User wants to upload images, files, or other assets to a Webflow site\n\n**Tool sequence**:\n1. `WEBFLOW_LIST_WEBFLOW_SITES` - Find the target site_id [Prerequisite]\n2. `WEBFLOW_UPLOAD_ASSET` - Upload a file with base64-encoded content [Required]\n\n**Key parameters**:\n- `site_id`: Site identifier\n- `file_name`: Name of the file (e.g., `\"logo.png\"`)\n- `file_content`: Base64-encoded binary content of the file (NOT a placeholder or URL)\n- `content_type`: MIME type (e.g., `\"image\u002Fpng\"`, `\"image\u002Fjpeg\"`, `\"application\u002Fpdf\"`)\n- `md5`: MD5 hash of the raw file bytes (32-character hex string)\n- `asset_folder_id`: Optional folder placement\n\n**Pitfalls**:\n- `file_content` must be actual base64-encoded data, NOT a variable reference or placeholder\n- `md5` must be computed from the raw bytes, not from the base64 string\n- This is a two-step process internally: generates an S3 pre-signed URL, then uploads\n- Large files may encounter timeouts; keep uploads reasonable in size\n\n### 5. Manage Ecommerce Orders\n\n**When to use**: User wants to view ecommerce orders from a Webflow site\n\n**Tool sequence**:\n1. `WEBFLOW_LIST_WEBFLOW_SITES` - Find the site with ecommerce enabled [Prerequisite]\n2. `WEBFLOW_LIST_ORDERS` - List all orders with optional status filtering [Required]\n3. `WEBFLOW_GET_ORDER` - Get detailed information for a specific order [Optional]\n\n**Key parameters**:\n- `site_id`: Site identifier (must have ecommerce enabled)\n- `order_id`: Specific order identifier for detailed retrieval\n- `status`: Filter orders by status\n\n**Pitfalls**:\n- Ecommerce must be enabled on the Webflow site for order endpoints to work\n- Order endpoints are read-only; no create\u002Fupdate\u002Fdelete for orders through these tools\n\n## Common Patterns\n\n### ID Resolution\nWebflow uses 24-character hexadecimal IDs throughout:\n- **Site ID**: `WEBFLOW_LIST_WEBFLOW_SITES` -- find by name, capture `id`\n- **Collection ID**: `WEBFLOW_LIST_COLLECTIONS` with `site_id`\n- **Item ID**: `WEBFLOW_LIST_COLLECTION_ITEMS` with `collection_id`\n- **Page ID**: `WEBFLOW_LIST_PAGES` with `site_id`\n- **Domain IDs**: `WEBFLOW_GET_SITE_INFO` -- found in `customDomains` array\n- **Field slugs**: `WEBFLOW_GET_COLLECTION` -- found in collection `fields` array\n\n### Pagination\nWebflow uses offset-based pagination:\n- `offset`: Starting index (0-based)\n- `limit`: Items per page (max 100)\n- Increment offset by limit until fewer results than limit are returned\n- Available on: LIST_COLLECTION_ITEMS, LIST_PAGES\n\n### CMS Workflow\nTypical CMS content creation flow:\n1. Get site_id from LIST_WEBFLOW_SITES\n2. Get collection_id from LIST_COLLECTIONS\n3. Get field schema from GET_COLLECTION (to learn field slugs)\n4. Create\u002Fupdate items using correct field slugs\n5. Publish site to make changes live\n\n## Known Pitfalls\n\n### ID Formats\n- All Webflow IDs are 24-character hexadecimal strings (MongoDB ObjectIds)\n- Example: `580e63fc8c9a982ac9b8b745`\n- Pattern: `^[0-9a-fA-F]{24}$`\n- Invalid IDs return 404 errors\n\n### Field Slugs vs Display Names\n- CMS operations require field `slug` values, NOT display names\n- A field with displayName \"Author Name\" might have slug `author-name`\n- Always call `GET_COLLECTION` to discover correct field slugs\n- Using wrong field names silently ignores the data or causes validation errors\n\n### Publishing\n- `PUBLISH_SITE` deploys ALL staged changes, not just specific items\n- Rate limited to 1 publish per minute\n- Must specify at least one domain target (custom or webflow subdomain)\n- This is a production-affecting action; always confirm intent\n\n### Authentication Scopes\n- Different operations require different OAuth scopes: `sites:read`, `cms:read`, `cms:write`, `pages:read`\n- A 403 error typically means missing OAuth scopes\n- Check connection permissions if operations fail with authorization errors\n\n### Destructive Operations\n- `DELETE_COLLECTION_ITEM` permanently removes CMS items\n- `PUBLISH_SITE` makes all staged changes live immediately\n- Always confirm with the user before executing these actions\n\n## Quick Reference\n\n| Task | Tool Slug | Key Params |\n|------|-----------|------------|\n| List sites | `WEBFLOW_LIST_WEBFLOW_SITES` | (none) |\n| Get site info | `WEBFLOW_GET_SITE_INFO` | `site_id` |\n| Publish site | `WEBFLOW_PUBLISH_SITE` | `site_id`, `custom_domains` or `publish_to_webflow_subdomain` |\n| List collections | `WEBFLOW_LIST_COLLECTIONS` | `site_id` |\n| Get collection schema | `WEBFLOW_GET_COLLECTION` | `collection_id` |\n| List collection items | `WEBFLOW_LIST_COLLECTION_ITEMS` | `collection_id`, `limit`, `offset` |\n| Get collection item | `WEBFLOW_GET_COLLECTION_ITEM` | `collection_id`, `item_id` |\n| Create collection item | `WEBFLOW_CREATE_COLLECTION_ITEM` | `collection_id`, `field_data` |\n| Update collection item | `WEBFLOW_UPDATE_COLLECTION_ITEM` | `collection_id`, `item_id`, `fields` |\n| Delete collection item | `WEBFLOW_DELETE_COLLECTION_ITEM` | `collection_id`, `item_id` |\n| List pages | `WEBFLOW_LIST_PAGES` | `site_id`, `limit`, `offset` |\n| Get page | `WEBFLOW_GET_PAGE` | `page_id` |\n| Get page DOM | `WEBFLOW_GET_PAGE_DOM` | `page_id` |\n| Upload asset | `WEBFLOW_UPLOAD_ASSET` | `site_id`, `file_name`, `file_content`, `content_type`, `md5` |\n| List orders | `WEBFLOW_LIST_ORDERS` | `site_id`, `status` |\n| Get order | `WEBFLOW_GET_ORDER` | `site_id`, `order_id` |\n\n## When to Use\nThis skill is applicable to execute the workflow or actions described in the overview.\n\n## Limitations\n- Use this skill only when the task clearly matches the scope described above.\n- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.\n- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.\n","","imported","https:\u002F\u002Fgithub.com\u002Fsickn33\u002Fantigravity-awesome-skills","user_system_seed","SkillOPIC",true,119,324,"2026-05-16 13:46:51",{"id":8,"name":21,"slug":22,"icon":23,"description":24,"sort":25,"createdAt":26},"效率工具","productivity","mdi-lightning-bolt-outline","文档处理、数据分析、自动化工作流",4,"2026-05-16 12:53:40",{"id":7,"name":28,"slug":29,"icon":30,"description":31,"moduleId":8,"sort":32,"skillCount":33,"createdAt":26},"自动化","automation","mdi-robot-outline","工作流自动化、批处理",3,101,[35],{"id":36,"skillId":4,"version":37,"fileName":38,"fileSize":39,"filePath":40,"fileHash":41,"manifest":42,"createdAt":19},"4e566f55-1422-4483-b847-a7986df7ccae","1.0.0","webflow-automation.zip",4210,"uploads\u002Fskills\u002F05453fa2-a1e9-4275-95f3-0da472570c18\u002Fwebflow-automation.zip","f6226ca8b2b719fa9fab36023bc2876a71265c049602b92491209d7feab60390","[{\"path\":\"SKILL.md\",\"isDirectory\":false,\"size\":11631}]",{"code":44,"message":45,"data":46},200,"success",{"items":47,"stats":48,"page":51},[],{"averageRating":49,"totalRatings":49,"ratingCounts":50},0,[49,49,49,49,49],{"limit":52,"offset":49,"hasMore":53,"nextOffset":52,"ratedOnly":16},15,false]