Awesome-omni-skills webflow-automation
Webflow Automation via Rube MCP workflow skill. Use this skill when the user needs Automate Webflow CMS collections, site publishing, page management, asset uploads, and ecommerce orders via Rube MCP (Composio). Always search tools first for current schemas and the operator should preserve the upstream workflow, copied support files, and provenance before merging or handing off.
git clone https://github.com/diegosouzapw/awesome-omni-skills
T=$(mktemp -d) && git clone --depth=1 https://github.com/diegosouzapw/awesome-omni-skills "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/webflow-automation" ~/.claude/skills/diegosouzapw-awesome-omni-skills-webflow-automation && rm -rf "$T"
skills/webflow-automation/SKILL.mdWebflow Automation via Rube MCP
Overview
This public intake copy packages
plugins/antigravity-awesome-skills-claude/skills/webflow-automation from https://github.com/sickn33/antigravity-awesome-skills into the native Omni Skills editorial shape without hiding its origin.
Use it when the operator needs the upstream workflow, support files, and repository context to stay intact while the public validator and private enhancer continue their normal downstream flow.
This intake keeps the copied upstream files intact and uses
metadata.json plus ORIGIN.md as the provenance anchor for review.
Webflow Automation via Rube MCP Automate Webflow operations including CMS collection management, site publishing, page inspection, asset uploads, and ecommerce order retrieval through Composio's Webflow toolkit.
Imported source sections that did not map cleanly to the public headings are still preserved below or in the support files. Notable imported sections: Prerequisites, Common Patterns, Known Pitfalls, Limitations.
When to Use This Skill
Use this section as the trigger filter. It should make the activation boundary explicit before the operator loads files, runs commands, or opens a pull request.
- This skill is applicable to execute the workflow or actions described in the overview.
- Use when the request clearly matches the imported source intent: Automate Webflow CMS collections, site publishing, page management, asset uploads, and ecommerce orders via Rube MCP (Composio). Always search tools first for current schemas.
- Use when the operator should preserve upstream workflow detail instead of rewriting the process from scratch.
- Use when provenance needs to stay visible in the answer, PR, or review packet.
- Use when copied upstream references, examples, or scripts materially improve the answer.
- Use when the workflow should remain reviewable in the public intake repo before the private enhancer takes over.
Operating Table
| Situation | Start here | Why it matters |
|---|---|---|
| First-time use | | Confirms repository, branch, commit, and imported path before touching the copied workflow |
| Provenance review | | Gives reviewers a plain-language audit trail for the imported source |
| Workflow execution | | Starts with the smallest copied file that materially changes execution |
| Supporting context | | Adds the next most relevant copied source file without loading the entire package |
| Handoff decision | | Helps the operator switch to a stronger native skill when the task drifts |
Workflow
This workflow is intentionally editorial and operational at the same time. It keeps the imported source useful to the operator while still satisfying the public intake standards that feed the downstream enhancer flow.
- Verify Rube MCP is available by confirming RUBESEARCHTOOLS responds
- Call RUBEMANAGECONNECTIONS with toolkit webflow
- If connection is not ACTIVE, follow the returned auth link to complete Webflow OAuth
- Confirm connection status shows ACTIVE before running any workflows
- WEBFLOWLISTWEBFLOWSITES - List sites to find the target siteid [Prerequisite]
- WEBFLOWLISTCOLLECTIONS - List all collections for the site [Prerequisite]
- WEBFLOWGETCOLLECTION - Get collection schema to find valid field slugs [Prerequisite for create/update]
Imported Workflow Notes
Imported: Setup
Get Rube MCP: Add
https://rube.app/mcp as an MCP server in your client configuration. No API keys needed — just add the endpoint and it works.
- Verify Rube MCP is available by confirming
respondsRUBE_SEARCH_TOOLS - Call
with toolkitRUBE_MANAGE_CONNECTIONSwebflow - If connection is not ACTIVE, follow the returned auth link to complete Webflow OAuth
- Confirm connection status shows ACTIVE before running any workflows
Imported: Core Workflows
1. Manage CMS Collection Items
When to use: User wants to create, update, list, or delete items in Webflow CMS collections (blog posts, products, team members, etc.)
Tool sequence:
- List sites to find the target site_id [Prerequisite]WEBFLOW_LIST_WEBFLOW_SITES
- List all collections for the site [Prerequisite]WEBFLOW_LIST_COLLECTIONS
- Get collection schema to find valid field slugs [Prerequisite for create/update]WEBFLOW_GET_COLLECTION
- List existing items with filtering and pagination [Optional]WEBFLOW_LIST_COLLECTION_ITEMS
- Get a specific item's full details [Optional]WEBFLOW_GET_COLLECTION_ITEM
- Create a new item with field data [Required for creation]WEBFLOW_CREATE_COLLECTION_ITEM
- Update an existing item's fields [Required for updates]WEBFLOW_UPDATE_COLLECTION_ITEM
- Permanently remove an item [Optional]WEBFLOW_DELETE_COLLECTION_ITEM
- Publish changes to make them live [Optional]WEBFLOW_PUBLISH_SITE
Key parameters for CREATE_COLLECTION_ITEM:
: 24-character hex string from LIST_COLLECTIONScollection_id
: Object with field slug keys (NOT display names); must includefield_data
andnameslug
: Display name for the itemfield_data.name
: URL-friendly identifier (lowercase, hyphens, no spaces)field_data.slug
: Boolean to create as draft (default false)is_draft
Key parameters for UPDATE_COLLECTION_ITEM:
: Collection identifiercollection_id
: 24-character hex MongoDB ObjectId of the existing itemitem_id
: Object with field slug keys and new valuesfields
: Boolean to publish changes immediately (default false)live
Field value types:
- Text/Email/Link/Date: string
- Number: integer or float
- Boolean: true/false
- Image:
{"url": "...", "alt": "...", "fileId": "..."} - Multi-reference: array of reference ID strings
- Multi-image: array of image objects
- Option: option ID string
Pitfalls:
- Field keys must use the exact field
from the collection schema, NOT display namesslug - Always call
first to retrieve the schema and identify correct field slugsGET_COLLECTION
requiresCREATE_COLLECTION_ITEM
andname
inslugfield_data
cannot create new items; it requires a valid existingUPDATE_COLLECTION_ITEMitem_id
must be a 24-character hexadecimal MongoDB ObjectIditem_id- Slug must be lowercase alphanumeric with hyphens:
^[a-z0-9]+(?:-[a-z0-9]+)*$ - CMS items are staged; use
or setPUBLISH_SITE
to push to productionlive: true
2. Manage Sites and Publishing
When to use: User wants to list sites, inspect site configuration, or publish staged changes
Tool sequence:
- List all accessible sites [Required]WEBFLOW_LIST_WEBFLOW_SITES
- Get detailed site metadata including domains and settings [Optional]WEBFLOW_GET_SITE_INFO
- Deploy all staged changes to live site [Required for publishing]WEBFLOW_PUBLISH_SITE
Key parameters for PUBLISH_SITE:
: Site identifier from LIST_WEBFLOW_SITESsite_id
: Array of custom domain ID strings (from GET_SITE_INFO)custom_domains
: Boolean to publish topublish_to_webflow_subdomain{shortName}.webflow.io- At least one of
orcustom_domains
must be specifiedpublish_to_webflow_subdomain
Pitfalls:
republishes ALL staged changes for selected domains -- verify no unintended drafts are pendingPUBLISH_SITE- Rate limit: 1 successful publish per minute
- For sites without custom domains, must set
publish_to_webflow_subdomain: true
expects domain IDs (hex strings), not domain namescustom_domains- Publishing is a production action -- always confirm with the user first
3. Manage Pages
When to use: User wants to list pages, inspect page metadata, or examine page DOM structure
Tool sequence:
- Find the target site_id [Prerequisite]WEBFLOW_LIST_WEBFLOW_SITES
- List all pages for a site with pagination [Required]WEBFLOW_LIST_PAGES
- Get detailed metadata for a specific page [Optional]WEBFLOW_GET_PAGE
- Get the DOM/content node structure of a static page [Optional]WEBFLOW_GET_PAGE_DOM
Key parameters:
: Site identifier (required for list pages)site_id
: 24-character hex page identifierpage_id
: Optional locale filter for multi-language siteslocale_id
: Max results per page (max 100)limit
: Pagination offsetoffset
Pitfalls:
paginates via offset/limit; iterate when sites have many pagesLIST_PAGES- Page IDs are 24-character hex strings matching pattern
^[0-9a-fA-F]{24}$
returns the node structure, not rendered HTMLGET_PAGE_DOM- Pages include both static and CMS-driven pages
4. Upload Assets
When to use: User wants to upload images, files, or other assets to a Webflow site
Tool sequence:
- Find the target site_id [Prerequisite]WEBFLOW_LIST_WEBFLOW_SITES
- Upload a file with base64-encoded content [Required]WEBFLOW_UPLOAD_ASSET
Key parameters:
: Site identifiersite_id
: Name of the file (e.g.,file_name
)"logo.png"
: Base64-encoded binary content of the file (NOT a placeholder or URL)file_content
: MIME type (e.g.,content_type
,"image/png"
,"image/jpeg"
)"application/pdf"
: MD5 hash of the raw file bytes (32-character hex string)md5
: Optional folder placementasset_folder_id
Pitfalls:
must be actual base64-encoded data, NOT a variable reference or placeholderfile_content
must be computed from the raw bytes, not from the base64 stringmd5- This is a two-step process internally: generates an S3 pre-signed URL, then uploads
- Large files may encounter timeouts; keep uploads reasonable in size
5. Manage Ecommerce Orders
When to use: User wants to view ecommerce orders from a Webflow site
Tool sequence:
- Find the site with ecommerce enabled [Prerequisite]WEBFLOW_LIST_WEBFLOW_SITES
- List all orders with optional status filtering [Required]WEBFLOW_LIST_ORDERS
- Get detailed information for a specific order [Optional]WEBFLOW_GET_ORDER
Key parameters:
: Site identifier (must have ecommerce enabled)site_id
: Specific order identifier for detailed retrievalorder_id
: Filter orders by statusstatus
Pitfalls:
- Ecommerce must be enabled on the Webflow site for order endpoints to work
- Order endpoints are read-only; no create/update/delete for orders through these tools
Imported: Prerequisites
- Rube MCP must be connected (RUBE_SEARCH_TOOLS available)
- Active Webflow connection via
with toolkitRUBE_MANAGE_CONNECTIONSwebflow - Always call
first to get current tool schemasRUBE_SEARCH_TOOLS
Examples
Example 1: Ask for the upstream workflow directly
Use @webflow-automation to handle <task>. Start from the copied upstream workflow, load only the files that change the outcome, and keep provenance visible in the answer.
Explanation: This is the safest starting point when the operator needs the imported workflow, but not the entire repository.
Example 2: Ask for a provenance-grounded review
Review @webflow-automation against metadata.json and ORIGIN.md, then explain which copied upstream files you would load first and why.
Explanation: Use this before review or troubleshooting when you need a precise, auditable explanation of origin and file selection.
Example 3: Narrow the copied support files before execution
Use @webflow-automation for <task>. Load only the copied references, examples, or scripts that change the outcome, and name the files explicitly before proceeding.
Explanation: This keeps the skill aligned with progressive disclosure instead of loading the whole copied package by default.
Example 4: Build a reviewer packet
Review @webflow-automation using the copied upstream files plus provenance, then summarize any gaps before merge.
Explanation: This is useful when the PR is waiting for human review and you want a repeatable audit packet.
Best Practices
Treat the generated public skill as a reviewable packaging layer around the upstream repository. The goal is to keep provenance explicit and load only the copied source material that materially improves execution.
- Keep the imported skill grounded in the upstream repository; do not invent steps that the source material cannot support.
- Prefer the smallest useful set of support files so the workflow stays auditable and fast to review.
- Keep provenance, source commit, and imported file paths visible in notes and PR descriptions.
- Point directly at the copied upstream files that justify the workflow instead of relying on generic review boilerplate.
- Treat generated examples as scaffolding; adapt them to the concrete task before execution.
- Route to a stronger native skill when architecture, debugging, design, or security concerns become dominant.
Troubleshooting
Problem: The operator skipped the imported context and answered too generically
Symptoms: The result ignores the upstream workflow in
plugins/antigravity-awesome-skills-claude/skills/webflow-automation, fails to mention provenance, or does not use any copied source files at all.
Solution: Re-open metadata.json, ORIGIN.md, and the most relevant copied upstream files. Load only the files that materially change the answer, then restate the provenance before continuing.
Problem: The imported workflow feels incomplete during review
Symptoms: Reviewers can see the generated
SKILL.md, but they cannot quickly tell which references, examples, or scripts matter for the current task.
Solution: Point at the exact copied references, examples, scripts, or assets that justify the path you took. If the gap is still real, record it in the PR instead of hiding it.
Problem: The task drifted into a different specialization
Symptoms: The imported skill starts in the right place, but the work turns into debugging, architecture, design, security, or release orchestration that a native skill handles better. Solution: Use the related skills section to hand off deliberately. Keep the imported provenance visible so the next skill inherits the right context instead of starting blind.
Related Skills
- Use when the work is better handled by that native specialization after this imported skill establishes context.@00-andruia-consultant-v2
- Use when the work is better handled by that native specialization after this imported skill establishes context.@10-andruia-skill-smith-v2
- Use when the work is better handled by that native specialization after this imported skill establishes context.@20-andruia-niche-intelligence-v2
- Use when the work is better handled by that native specialization after this imported skill establishes context.@3d-web-experience-v2
Additional Resources
Use this support matrix and the linked files below as the operator packet for this imported skill. They should reflect real copied source material, not generic scaffolding.
| Resource family | What it gives the reviewer | Example path |
|---|---|---|
| copied reference notes, guides, or background material from upstream | |
| worked examples or reusable prompts copied from upstream | |
| upstream helper scripts that change execution or validation | |
| routing or delegation notes that are genuinely part of the imported package | |
| supporting assets or schemas copied from the source package | |
Imported Reference Notes
Imported: Quick Reference
| Task | Tool Slug | Key Params |
|---|---|---|
| List sites | | (none) |
| Get site info | | |
| Publish site | | , or |
| List collections | | |
| Get collection schema | | |
| List collection items | | , , |
| Get collection item | | , |
| Create collection item | | , |
| Update collection item | | , , |
| Delete collection item | | , |
| List pages | | , , |
| Get page | | |
| Get page DOM | | |
| Upload asset | | , , , , |
| List orders | | , |
| Get order | | , |
Imported: Common Patterns
ID Resolution
Webflow uses 24-character hexadecimal IDs throughout:
- Site ID:
-- find by name, captureWEBFLOW_LIST_WEBFLOW_SITESid - Collection ID:
withWEBFLOW_LIST_COLLECTIONSsite_id - Item ID:
withWEBFLOW_LIST_COLLECTION_ITEMScollection_id - Page ID:
withWEBFLOW_LIST_PAGESsite_id - Domain IDs:
-- found inWEBFLOW_GET_SITE_INFO
arraycustomDomains - Field slugs:
-- found in collectionWEBFLOW_GET_COLLECTION
arrayfields
Pagination
Webflow uses offset-based pagination:
: Starting index (0-based)offset
: Items per page (max 100)limit- Increment offset by limit until fewer results than limit are returned
- Available on: LIST_COLLECTION_ITEMS, LIST_PAGES
CMS Workflow
Typical CMS content creation flow:
- Get site_id from LIST_WEBFLOW_SITES
- Get collection_id from LIST_COLLECTIONS
- Get field schema from GET_COLLECTION (to learn field slugs)
- Create/update items using correct field slugs
- Publish site to make changes live
Imported: Known Pitfalls
ID Formats
- All Webflow IDs are 24-character hexadecimal strings (MongoDB ObjectIds)
- Example:
580e63fc8c9a982ac9b8b745 - Pattern:
^[0-9a-fA-F]{24}$ - Invalid IDs return 404 errors
Field Slugs vs Display Names
- CMS operations require field
values, NOT display namesslug - A field with displayName "Author Name" might have slug
author-name - Always call
to discover correct field slugsGET_COLLECTION - Using wrong field names silently ignores the data or causes validation errors
Publishing
deploys ALL staged changes, not just specific itemsPUBLISH_SITE- Rate limited to 1 publish per minute
- Must specify at least one domain target (custom or webflow subdomain)
- This is a production-affecting action; always confirm intent
Authentication Scopes
- Different operations require different OAuth scopes:
,sites:read
,cms:read
,cms:writepages:read - A 403 error typically means missing OAuth scopes
- Check connection permissions if operations fail with authorization errors
Destructive Operations
permanently removes CMS itemsDELETE_COLLECTION_ITEM
makes all staged changes live immediatelyPUBLISH_SITE- Always confirm with the user before executing these actions
Imported: Limitations
- Use this skill only when the task clearly matches the scope described above.
- Do not treat the output as a substitute for environment-specific validation, testing, or expert review.
- Stop and ask for clarification if required inputs, permissions, safety boundaries, or success criteria are missing.