webflow-cms

webflow-cms is a skill for Claude Code, Codex from S3YED/appie-kit. It costs 42 tokens per session (1,215 once invoked), scanned A, original, MIT.

A way to read and update Webflow CMS collections, which are structured content lists such as blog posts, FAQs, and pages. It covers finding a site, authenticating with the Webflow API, changing collection items, and publishing updates.

In plain words
What is it for?
Use it to query, create, update, or publish Webflow CMS content such as FAQs, pages, blog posts, and other collection items.
Why use it?
It avoids editing every CMS item manually in Webflow when content needs to be inspected or changed through code.

Skill for Claude CodeCodex

Which agent this was written for is unclear — built for openclaw. Also seen: built for openclaw.

Good fit Use it to query, create, update, or publish Webflow CMS content such as FAQs, pages, blog posts, and other collection items.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/s3yed/appie-kit/webflow-cms
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add S3YED/appie-kit --skill webflow-cms
Clone the repo
git clone --depth 1 https://github.com/S3YED/appie-kit

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for webflow-cms

README.md
[![agentmods](https://agentmods.dev/badge/skills/s3yed/appie-kit/webflow-cms/github.svg)](https://agentmods.dev/skills/s3yed/appie-kit/webflow-cms)
Your own site
<a href="https://agentmods.dev/skills/s3yed/appie-kit/webflow-cms"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/webflow-cms/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for webflow-cms

Your own site · 80×15
<a href="https://agentmods.dev/skills/s3yed/appie-kit/webflow-cms"><img src="https://agentmods.dev/badge/skills/s3yed/appie-kit/webflow-cms.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 42 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,215 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00042 $0.01215
Opus 5 $0.00021 $0.00607
Sonnet 5 $0.00008 $0.00243
Haiku 4.5 $0.00004 $0.00121

Measured 9d ago against content hash d0ed40c0af96, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade A, and why

webflow-cms scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

curl -s "https://api.webflow.com/v2/sites/${SITE_ID}/collections" \
skills/content/webflow-cms/SKILL.md · 139 lines

How it starts

The opening of the file, as written. The whole thing — 139 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Webflow CMS Operations

Use when working with Webflow CMS collections: reading/updating FAQs, pages, blog posts, or any CMS-driven content. NOT for site structure/design changes (use the Webflow Designer for that).

Setup

Authentication

Webflow API v2 uses a Site Access Token (site-scoped) or a Personal Access Token (account-scoped).

export WEBFLOW_API_TOKEN="your_token_here"

Store tokens in ~/.hermes/.env or ~/clawd/.env.secrets:

WEBFLOW_SITENAME_TOKEN=xxx

Convention: WEBFLOW_{PROJECT_NAME}_TOKEN in all-caps with underscores.

Finding the Site ID

Every Webflow site has a unique ID embedded in the live HTML:

document.querySelector('[data-wf-site]')?.getAttribute('data-wf-site')

Run this in the browser console on the live site, or look for it in the page source (<html data-wf-site="...">).

Discovery Flow

When you don't know the site ID or token:

  1. Open the live site in a browser
  2. Extract site ID from <html data-wf-site="..."> via browser console
  3. Search credentials in:
    • ~/.hermes/.env — Hermes env vars
    • ~/clawd/.env.secrets — project secrets
    • 1Password vault (via op CLI)
    • Notion project pages (search for "Webflow" or "token")
  4. If no token found → ask the user or client

Common Operations

All examples use the Webflow API v2 at https://api.webflow.com/v2/.

List all collections for a site

curl -s "https://api.webflow.com/v2/sites/${SITE_ID}/collections" \
  -H "Authorization: Bearer ${WEBFLOW_API_TOKEN}"

Get collection items

curl -s "https://api.webflow.com/v2/collections/${COLLECTION_ID}/items?limit=100" \
  -H "Authorization: Bearer ${WEBFLOW_API_TOKEN}"

Get a specific item

curl -s "https://api.webflow.com/v2/collections/${COLLECTION_ID}/items/${ITEM_ID}" \
  -H "Authorization: Bearer ${WEBFLOW_API_TOKEN}"

Update a CMS item (PATCH)

curl -s -X PATCH "https://api.webflow.com/v2/collections/${COLLECTION_ID}/items/${ITEM_ID}" \
  -H "Authorization: Bearer ${WEBFLOW_API_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{"fieldData": {"field-slug": "new value"}}'

Read the full file on GitHub · 139 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 139 lines · 42 tokens per session scan A d0ed40c0af96

Subscribe to this mod's changes

webflow-cms is a skill published in the GitHub repository S3YED/appie-kit (9 stars, last pushed 17d ago), licensed MIT. It adds 42 tokens to every session and 1,215 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.

Related

Other skills, from other repositories

azure-patterns

Azure Functions, Cosmos DB modeling, Service Bus patterns, Bicep templates.

vibeeval/vibecosystem · 19 tokens

tanstack-start

Build a full-stack TanStack Start app on Cloudflare Workers from scratch — SSR, file-based routing, server functions, D1+Drizzle, better-auth, Tailwind v4+shadcn/ui. Use whenever the user mentions TanStack Start, asks to scaffold a full-stack Cloudflare app with SSR, wants an SSR dashboard, or asks for a React 19 +…

jezweb/claude-skills · 115 tokens

email-systems

Transactional email (Resend, SendGrid, SES), templates (React Email, MJML), deliverability (SPF/DKIM/DMARC), and inboxing best practices. Use when building email infrastructure, designing templates, or troubleshooting deliverability.

travisjneuman/.claude · 55 tokens

mcp-builder

Build MCP servers in Python with FastMCP. Define tools / resources / prompts, build the server, test locally, deploy to FastMCP Cloud or Docker. Use whenever the user mentions building an MCP server, exposing tools to LLMs, FastMCP, building a Claude integration, or troubleshooting FastMCP module-level server…

jezweb/claude-skills · 84 tokens

event-driven-architecture

Kafka, RabbitMQ, SQS/SNS, event sourcing, CQRS, saga patterns, dead letter queues, and idempotency. Use when designing asynchronous systems, implementing message-driven workflows, or building event streaming pipelines.

travisjneuman/.claude · 50 tokens

graphql-expert

GraphQL API design and implementation. Use when building GraphQL APIs, designing schemas, implementing resolvers, or optimizing GraphQL performance.

travisjneuman/.claude · 31 tokens