webflow-cost-tuning
Optimize Webflow costs through plan selection, CDN read optimization, bulk endpoint usage, and API usage monitoring with budget alerts. Use when analyzing Webflow billing, reducing API costs, or implementing usage monitoring for Webflow integrations. Trigger with phrases like "webflow cost", "webflow billing", "reduce webflow costs", "webflow pricing", "webflow budget".
What this skill does
# Webflow Cost Tuning
## Overview
Optimize Webflow costs through smart plan selection, CDN-cached reads, bulk endpoint
usage, and proactive API usage monitoring. The biggest lever: **CDN-cached live item
reads are free and unlimited** — shift reads to the Content Delivery API.
## Prerequisites
- Access to Webflow dashboard (billing section)
- Understanding of your integration's read/write patterns
- `webflow-api` SDK configured
## Webflow Pricing Context
### Site Plans (affect API limits)
| Plan | Monthly | CMS Items | Rate Limits | Key for API |
|------|---------|-----------|-------------|-------------|
| Starter | $0 | 50 items | Standard | Testing only |
| Basic | $18 | 2,000 items | Standard | Small sites |
| CMS | $29 | 10,000 items | Standard | Content-heavy |
| Business | $49 | 10,000 items | Higher limits | Production apps |
| Enterprise | Custom | Unlimited | Custom limits | High-volume |
### Ecommerce Plans (additional)
| Plan | Monthly | Products | Transaction Fee |
|------|---------|----------|----------------|
| Standard | $42 | 500 | 2% |
| Plus | $84 | 1,000 | 0% |
| Advanced | $235 | 3,000 | 0% |
### Workspace Plans (affect developer access)
| Plan | Monthly | Sites | Members |
|------|---------|-------|---------|
| Starter | $0 | 2 | 1 |
| Core | $28 | 10 | 3 |
| Growth | $60 | Unlimited | 9 |
| Enterprise | Custom | Unlimited | Unlimited |
## Instructions
### Strategy 1: Shift Reads to CDN (Free and Unlimited)
The single biggest cost reduction: use the Content Delivery API for reads.
```typescript
// EXPENSIVE: Staged item reads count against rate limits
const { items } = await webflow.collections.items.listItems(collectionId);
// FREE: CDN-cached live item reads have no rate limits
const { items } = await webflow.collections.items.listItemsLive(collectionId);
```
For public-facing content (blogs, product pages, team members), always use live
item endpoints. Only use staged endpoints when you need draft items.
### Strategy 2: Bulk Endpoints (100x Fewer API Calls)
```typescript
// EXPENSIVE: 1000 items = 1000 API calls
for (const item of items) {
await webflow.collections.items.createItem(collectionId, { fieldData: item });
}
// CHEAP: 1000 items = 10 API calls (100 per batch)
for (let i = 0; i < items.length; i += 100) {
await webflow.collections.items.createItemsBulk(collectionId, {
items: items.slice(i, i + 100).map(item => ({ fieldData: item })),
});
}
```
### Strategy 3: Cache Collection Schemas
Collection schemas change rarely — cache them aggressively:
```typescript
import { LRUCache } from "lru-cache";
const schemaCache = new LRUCache<string, any>({
max: 50,
ttl: 60 * 60 * 1000, // 1 hour — schemas change very rarely
});
async function getCollectionSchema(siteId: string) {
const key = `schema:${siteId}`;
let schema = schemaCache.get(key);
if (!schema) {
const { collections } = await webflow.collections.list(siteId);
schema = collections;
schemaCache.set(key, schema);
}
return schema;
}
```
### Strategy 4: API Usage Monitoring
```typescript
class WebflowUsageTracker {
private calls = new Map<string, number>();
private startTime = Date.now();
track(operation: string) {
const count = this.calls.get(operation) || 0;
this.calls.set(operation, count + 1);
}
getReport() {
const totalCalls = Array.from(this.calls.values()).reduce((a, b) => a + b, 0);
const elapsedMinutes = (Date.now() - this.startTime) / 60000;
const callsPerMinute = totalCalls / elapsedMinutes;
return {
totalCalls,
callsPerMinute: callsPerMinute.toFixed(1),
byOperation: Object.fromEntries(this.calls),
topOperations: Array.from(this.calls.entries())
.sort((a, b) => b[1] - a[1])
.slice(0, 5),
};
}
reset() {
this.calls.clear();
this.startTime = Date.now();
}
}
const tracker = new WebflowUsageTracker();
// Wrap your client to auto-track
function trackedCall<T>(operation: string, fn: () => Promise<T>): Promise<T> {
tracker.track(operation);
return fn();
}
// Usage
const items = await trackedCall("listItemsLive", () =>
webflow.collections.items.listItemsLive(collectionId)
);
// Periodic report
setInterval(() => {
console.log("API Usage:", tracker.getReport());
tracker.reset();
}, 60 * 60 * 1000); // Hourly
```
### Strategy 5: Webhook-Driven Updates (Replace Polling)
```typescript
// EXPENSIVE: Polling every minute = 1,440 calls/day per collection
setInterval(async () => {
const { items } = await webflow.collections.items.listItems(collectionId);
await processChanges(items);
}, 60 * 1000);
// CHEAP: Webhook-driven = only called when something changes
// Register webhook: collection_item_changed
// Your webhook handler:
app.post("/webhooks/webflow", async (req, res) => {
const event = req.body;
if (event.triggerType === "collection_item_changed") {
await processChanges([event.payload]);
}
res.status(200).send();
});
```
### Strategy 6: Plan Right-Sizing
```typescript
// Estimate which plan you need based on usage
function recommendPlan(usage: {
cmsItems: number;
monthlyApiCalls: number;
ecommerceProducts: number;
}) {
// CMS items determine minimum site plan
if (usage.cmsItems > 10000) return { site: "Enterprise", reason: "CMS item limit" };
if (usage.cmsItems > 2000) return { site: "CMS or Business", reason: "CMS item limit" };
if (usage.cmsItems > 50) return { site: "Basic", reason: "CMS item limit" };
// High API volume may need higher rate limits
if (usage.monthlyApiCalls > 100000) return { site: "Business+", reason: "Rate limits" };
// Ecommerce products
if (usage.ecommerceProducts > 1000) return { ecommerce: "Advanced", reason: "Product limit" };
if (usage.ecommerceProducts > 500) return { ecommerce: "Plus", reason: "Product limit" };
return { site: "Basic", reason: "Sufficient for usage" };
}
```
## Cost Reduction Checklist
- [ ] Read-heavy endpoints use `listItemsLive` (CDN, no rate limit)
- [ ] Bulk endpoints used for multi-item operations
- [ ] Collection schemas cached (1-hour TTL minimum)
- [ ] Polling replaced with webhooks where possible
- [ ] API usage tracked and monitored
- [ ] Plan matches actual usage (not over-provisioned)
- [ ] Unnecessary API calls eliminated (no redundant fetches)
## Output
- CDN-cached reads for published content (free, unlimited)
- Bulk operations reducing API calls 100x
- Schema caching eliminating redundant reads
- Usage monitoring with operation-level tracking
- Plan right-sizing recommendations
## Error Handling
| Issue | Cause | Solution |
|-------|-------|----------|
| Unexpected rate limits | Too many staged reads | Switch to live item endpoints |
| High API call count | No caching | Add LRU or Redis cache |
| CMS item limit exceeded | Wrong plan | Upgrade plan or archive old items |
| Polling costs | No webhook setup | Implement webhook-driven updates |
## Resources
- Webflow Pricing
- [Content Delivery API](https://developers.webflow.com/data/docs/working-with-the-cms/content-delivery)
- [Rate Limits](https://developers.webflow.com/data/reference/rate-limits)
## Next Steps
For architecture patterns, see `webflow-reference-architecture`.
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.