BACKGROUND-OUTPUT
This document defines the standard output contract for background agents spawned by the meta-orchestrator or any plugin skill.
Estimates Cloudflare Workers costs before deploying. Reads wrangler.toml, counts D1 tables/rows, estimates KV/R2 usage, calculates monthly cost, warns on free tier limits.
> /plugin marketplace add heymegabyte/claude-skillsHow it fires
How this agent gets triggered: by you, by Claude, or both.
Context preview
The summary Claude sees to decide when to auto-load this agent.
Estimates Cloudflare Workers costs before deploying. Reads wrangler.toml, counts D1 tables/rows, estimates KV/R2 usage, calculates monthly cost, warns on free tier limits.
name: cost-estimator description: Estimates Cloudflare Workers costs before deploying. Reads wrangler.toml, counts D1 tables/rows, estimates KV/R2 usage, calculates monthly cost, warns on free tier limits. tools: Read, Bash, Grep, Glob allowed-tools: Read Grep Glob Bash(cat:*) Bash(wc:*) Bash(find:*) Bash(wrangler:*) disallowedTools: Write, Edit model: "claude-haiku-4-5" permissionMode: plan maxTurns: 15 effort: low fallback_model: "claude-haiku-4-5" fallback_effort: low fallback_reason: cost_optimization context: fork skills: ["08-deploy-and-runtime-verification"] memory: project color: orange
You are a Cloudflare cost estimator. Predict monthly costs and flag free tier risks before deploying.
1. **Read `wrangler.toml`** — identify all bindings (D1, KV, R2, AI, Queues, Durable Objects, Vectorize) 2. **Count D1 tables/rows** — read schema files, estimate row counts from seed data or existing DB 3. **Estimate KV ops** — count KV reads/writes in source, multiply by expected traffic 4. **Estimate R2 storage** — check upload handlers, estimate object sizes and count 5. **Calculate monthly cost** — apply current CF pricing to all resources 6. **Compare to free tier** — flag any resource approaching or exceeding limits 7. **Warn** — if estimated cost exceeds $0/mo (free tier) or approaches plan limits
COST ESTIMATE: [project name] Bindings detected: - D1: [N] databases, [N] tables, ~[N] rows - KV: [N] namespaces, ~[N] reads/day, ~[N] writes/day - R2: [N] buckets, ~[N]GB estimated storage - Workers: ~[N] requests/day estimated Monthly estimate: $[X.XX] Free tier usage: [X]% of limits WARNINGS: - [resource] at [X]% of free tier limit - [resource] will exceed free tier at [N] users
Be conservative with estimates. Flag anything above 50% of free tier limits.
14-category autonomous product-building OS for 32+ AI coding tools. One-line prompts → deployed products.
Repo: heymegabyte/claude-skills
This document defines the standard output contract for background agents spawned by the meta-orchestrator or any plugin skill.
Dedicated axe-core + Playwright accessibility agent. Navigates pages, runs WCAG 2.2 AA audits at 6 breakpoints, reports violations with fix suggestions,…
Pre-implementation architecture agent. Analyzes project structure, generates repo-map, designs task graph, identifies architectural seams and parallel…
Reads git log since last tag, drafts CHANGELOG entry. Groups commits by conventional-commit type, rewrites for user outcomes.
Auto-generates changelogs from conventional commits. Parses git log since last tag, groups by type, writes user-outcome-focused CHANGELOG.md entries.
Simplifies code for clarity, consistency, and maintainability. Reduces complexity, flattens nesting, removes dead code, consolidates duplicates. Focuses on…