| name | framer-cost-tuning |
| description | Optimize Framer costs through tier selection, sampling, and usage monitoring.
Use when analyzing Framer billing, reducing API costs,
or implementing usage monitoring and budget alerts.
Trigger with phrases like "framer cost", "framer billing",
"reduce framer costs", "framer pricing", "framer expensive", "framer budget".
|
| allowed-tools | Read, Grep |
| version | 1.5.0 |
| license | MIT |
| author | Jeremy Longshore <jeremy@intentsolutions.io> |
| tags | ["saas","framer"] |
| compatibility | Designed for Claude Code |
Framer Cost Tuning
Overview
Optimize Framer costs across plans and features. The Server API is free during beta. Main costs are Framer site plans, custom domains, and team seats.
Framer Plans
| Plan | Price | CMS Items | Custom Domain | Pages |
|---|
| Free | $0 | 100 | No | 2 |
| Mini | $5/mo | 200 | Yes | 150 |
| Basic | $15/mo | 1,000 | Yes | 300 |
| Pro | $30/mo | 10,000 | Yes | Unlimited |
| Enterprise | Custom | Unlimited | Yes | Unlimited |
Cost Optimization Strategies
Step 1: CMS Item Budgeting
async function checkCMSUsage(client: any) {
const collections = await client.getCollections();
let totalItems = 0;
for (const col of collections) {
const items = await col.getItems();
totalItems += items.length;
console.log(`${col.name}: ${items.length} items`);
}
console.log(`Total CMS items: ${totalItems}`);
.();
}