# Cloudflare

> Anything Cloudflare (Workers, D1, R2, KV, Durable Objects, Queues). Detailed guidance lives in the official cloudflare/skills collection.

- Skill: `yusukebe/cloudflare` (Agent Skill)
- Install (CLI): `npx skillmds@latest add yusukebe/cloudflare`
- Raw SKILL.md: https://api.skillmd.com/api/skills/yusukebe/cloudflare/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: yusukebe (https://skillmd.com/u/yusukebe)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/yusukebe/cloudflare

---


# Cloudflare

For anything on Cloudflare — Workers, D1, R2, KV, Durable Objects, Queues, Pages, Vectorize — use the official Cloudflare skill collection:

<https://github.com/cloudflare/skills>

Read it before writing Cloudflare-specific code. You can install it with `npx skills add cloudflare/skills` if your tool supports that, but you do not have to — fetching the files directly from the repo is enough.

The canonical human-facing documentation is at <https://developers.cloudflare.com/workers/>.

## Defaults I use

- **`wrangler.jsonc`**, not `wrangler.toml`. JSON-with-comments is friendlier for tooling and easier to template.
- **Bun** as the package manager and dev driver.
- **Custom domains** via `routes` with `custom_domain: true`, not via Workers Routes.
- **Static Assets** for any file-based content (Markdown, images, generated HTML) when an index does not need to be built from the file contents.

## Related skills here

- [`hono`](/skills/hono) — the web framework I deploy to Workers.

