Framework integration for Cloudflare Workers. Use when building with Hono, Remix, Next.js, Astro, SvelteKit, Qwik, or Nuxt on Workers. Covers routing, SSR, static assets, and edge deployment.
Installs just this skill. Get the whole plugin for auto-invocation.
โก How it fires
How this skill gets triggered: by you, by Claude, or both.
Fires itselfClaude auto-loads it when your prompt matches the work.
You can call itInvoke it directly when you want it.
Slash command/cloudflare-workers-frameworks
๐๏ธ Context preview
The summary Claude sees to decide when to auto-load this skill.
Framework integration for Cloudflare Workers. Use when building with Hono, Remix, Next.js, Astro, SvelteKit, Qwik, or Nuxt on Workers. Covers routing, SSR, static assets, and edge deployment.
๐ Stats
Stars194
Forks29
LanguageTypeScript
LicenseMIT
๐ฆ Ships with claude-skills
</> SKILL.md
cloudflare-workers-frameworks.SKILL.md
---name: cloudflare-workers-frameworks
description: Framework integration for Cloudflare Workers. Use when building with Hono, Remix, Next.js, Astro, SvelteKit, Qwik, or Nuxt on Workers. Covers routing, SSR, static assets, and edge deployment.
metadata:
version: "1.0.0"
license: MIT
---# Workers Frameworks Integration
Build full-stack applications on Cloudflare Workers using modern frameworks.
## Quick Start: Choose Your Framework
| Framework | Best For | SSR | Static | Workers Native |
|-----------|----------|-----|--------|----------------|
| **Hono** | APIs, lightweight apps | โ | โ | โ Native |
| **Remix** | Full-stack apps | โ | โ | โ Adapter |
| **Next.js** | React apps | โ | โ | โ ๏ธ OpenNext |
| **Astro** | Content sites | โ | โ | โ Adapter |
| **SvelteKit** | Svelte apps | โ | โ | โ Adapter |
| **Qwik** | Resumable apps | โ | โ | โ Adapter |
| **Nuxt** | Vue apps | โ | โ | โ Nitro |
## Framework Decision Tree
```
Need an API only?
โโ Yes โ Hono (fastest, smallest)
โโ No โ Building a full app?
โโ React โ Next.js (OpenNext) or Remix
โโ Vue โ Nuxt