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.
npx skills add S3YED/appie-kit --skill webflow-cmsgit clone --depth 1 https://github.com/S3YED/appie-kitWrote 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.
[](https://agentmods.dev/skills/s3yed/appie-kit/webflow-cms)<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.
<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>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.
| Model | Per session | Once 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 |
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" \ 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:
- Open the live site in a browser
- Extract site ID from
<html data-wf-site="...">via browser console - Search credentials in:
~/.hermes/.env— Hermes env vars~/clawd/.env.secrets— project secrets- 1Password vault (via
opCLI) - Notion project pages (search for "Webflow" or "token")
- 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"}}'
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.
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.
- 9d ago First seen · 139 lines · 42 tokens per session scan A d0ed40c0af96
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.
Other skills, from other repositories
azure-patterns
Azure Functions, Cosmos DB modeling, Service Bus patterns, Bicep templates.
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 +…
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.
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…
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.
graphql-expert
GraphQL API design and implementation. Use when building GraphQL APIs, designing schemas, implementing resolvers, or optimizing GraphQL performance.