Fix 18 factual errors: pricing, limits, API names, sandbox docs, CLI syntax - #35
Merged
dmmulroy merged 1 commit intoApr 1, 2026
Conversation
…CLI syntax Verified each correction against official Cloudflare documentation. - KV pricing wrong by 10x, D1 pricing wrong by 1000x - CPU time limits showed ms instead of seconds across 16 files - routeAgent misspelled (missing 'Request'), nodejs_compat_v2 standalone usage - wrangler check described as config validation (actually startup profiling) - Vectorize batch limit 500 -> 1000, wrangler version v3.91 -> v4 - Sandbox: runCode() API, return types, Docker tags, exec() timeout - Agent binding name mismatch, multi-agent fetch() -> RPC - Secrets Store CLI syntax, README missing cloudflare-api MCP server - web-perf description missing INP, KV reads label misleading
dmmulroy
approved these changes
Mar 31, 2026
adewale
pushed a commit
to adewale/skills
that referenced
this pull request
Apr 2, 2026
…limits, and docs Incorporates upstream fixes from cloudflare/skills PRs cloudflare#34 and cloudflare#35: - Fix Workers CPU time limits (ms → seconds across multiple files) - Fix D1 pricing errors (removed fabricated $5/db fee, corrected read rate) - Fix KV pricing (was wrong by 10x) - Fix wrangler config references (TOML → JSONC) - Fix Agents SDK configuration (new_classes → new_sqlite_classes) - Fix sandbox docs (runCode() API, return types, exec() timeout) - Fix secrets store CLI syntax - Add missing cloudflare-api MCP server to README - Fix vectorize batch limit (500 → 1000) - Various other factual corrections https://claude.ai/code/session_01VMYzryVgfa9JUTK5PKA4XU
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes 18 categories of factual errors verified against the official Cloudflare documentation. Each correction includes the source of truth URL. 38 files changed across 37 skill files + README.
Changes
Pricing (off by 10x–1000x)
$0.50 per 10M→$0.50 per 1M— source$0.001 per 1K→$0.001 per million+ added missing free/paid tier allowances — sourceLimits
API names & patterns
routeAgent→routeAgentRequest(6 occurrences) — sourcewrangler check→wrangler check startup(5 occurrences) — not config validation, it's startup profiling — sourcenodejs_compat_v2→nodejs_compat(8 occurrences) — v2 behavior auto-enabled with compat date ≥ 2024-09-23 — source"AGENT"→"MyAgent"—routeAgentRequestdiscovers agents by class name — sourcefetch()→ RPC withgetAgentByName()— sourcesecret-store:secret put→secrets-store secret create— sourceSandbox SDK (4 fixes)
ctx.runCode()→sandbox.runCode(code, { context })— sourceresult.outputs→result.results(ExecutionResulttype) — sourcelatest→0.7.0(version must match npm package) — sourceexec()timeout 60s/120s → no default — sourceHousekeeping
v3.91.0+→v4+— sourcecloudflare-apiMCP server (defined in.mcp.jsonbut absent from table)Not fixed in this PR
AIChatAgent/useAgentChatimport paths — 3 different paths across files; needs verification against the actual npm packagethis.state→this.ctxinworkers/api.mdandworkerd/api.md— legacy DO patternwrangler/configuration.md:104uses"secrets_store"with fieldsbinding,id; two other files use"secrets_store_secrets"with fieldsbinding,store_id,secret_name. Neither key is documented at https://developers.cloudflare.com/workers/wrangler/configuration/. Needs clarification from the Wrangler/Secrets team.