What problem does it solve?
This Skill helps developers and reviewers find and fix production-ready issues in Cloudflare Workers projects by enforcing current platform best practices, preventing runtime crashes, security mistakes, and configuration drift from wrangler config and types.
Core Features & Use Cases
- Documentation-first reviews: instructs retrieval of the latest Cloudflare Workers docs, @cloudflare/workers-types, and the wrangler schema before making assertions.
- Config and binding validation: checks compatibility_date, nodejs_compat, observability, secret handling, and binding-code consistency between wrangler config and source.
- Runtime pattern checks: identifies streaming anti-patterns, floating promises, module-level mutable state, insecure crypto usage, passThroughOnException misuse, and serialization boundary errors.
- Review workflow: prescribes a repeatable process (retrieve, read full files, check types, validate config, run tools) and output formats for prioritized findings.
Quick Start
Review the repository's Worker code and wrangler configuration for compatibility_date, nodejs_compat, binding consistency, streaming/floating-promise issues, and secret leakage while citing authoritative Cloudflare docs.