cloudflare-workers-migration

cloudflare-workers-migration is a skill for Claude Code from secondsky/claude-skills. It costs 49 tokens per session (1,363 once invoked), scanned A, original, MIT.

A guide to moving applications from AWS Lambda, Vercel, Express, Node.js, or other edge platforms to Cloudflare Workers. It explains how handlers, middleware, APIs, and Node.js-specific code may need to change.

In plain words
What is it for?
Use it when porting serverless functions, Next.js applications, Express services, or other edge applications to Cloudflare Workers.
Why use it?
It helps identify compatibility problems and choose an appropriate migration or rewrite path before moving an existing application.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the cloudflare-workers plugin — 10 skills, 5 commands shipped together

Good fit Use it when porting serverless functions, Next.js applications, Express services, or other…

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/secondsky/claude-skills/cloudflare-workers-migration
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add secondsky/claude-skills --skill cloudflare-workers-migration
Clone the repo
git clone --depth 1 https://github.com/secondsky/claude-skills

Made for: Claude Code.

Or install cloudflare-workers, the plugin that ships this one along with the rest of its 10 skills, 5 commands.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for cloudflare-workers-migration

README.md
[![agentmods](https://agentmods.dev/badge/skills/secondsky/claude-skills/cloudflare-workers-migration.svg)](https://agentmods.dev/skills/secondsky/claude-skills/cloudflare-workers-migration)
Your own site
<a href="https://agentmods.dev/skills/secondsky/claude-skills/cloudflare-workers-migration"><img src="https://agentmods.dev/badge/skills/secondsky/claude-skills/cloudflare-workers-migration.svg" alt="Measured on agentmods" height="20"></a>
Per session 49 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,363 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00049 $0.01363
Opus 5 $0.00024 $0.00681
Sonnet 5 $0.00010 $0.00273
Haiku 4.5 $0.00005 $0.00136

Measured 3d ago against content hash c7d841f4f7e3, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-06, from the pricing page.

Security

Grade A, and why

cloudflare-workers-migration scanned grade A with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 3d ago.

The scan reads SKILL.md. This mod also ships 5 executable files (scripts/analyze-migration.sh, templates/express-adapter.ts, templates/lambda-adapter.ts, …), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

async fetch(request: Request, env: Env): Promise<Response> {

Runs shell commandslowCapability

Expected in a hook, worth knowing in a rule or an instructions file.

- `child_process` → Not possible
plugins/cloudflare-workers/skills/cloudflare-workers-migration/SKILL.md · 172 lines

How it starts

The opening of the file, as written. The whole thing — 172 lines — stays where its author put it; the contents beside it link to each section on GitHub.

Workers Migration Guide

Migrate existing applications to Cloudflare Workers from various platforms.

Migration Decision Tree

What are you migrating from?
├── AWS Lambda
│   └── Node.js handler? → Lambda adapter pattern
│   └── Python? → Consider Python Workers
│   └── Container/custom runtime? → May need rewrite
├── Vercel/Next.js
│   └── API routes? → Minimal changes with adapter
│   └── Full Next.js app? → Use OpenNext adapter
│   └── Middleware? → Direct Workers equivalent
├── Express/Node.js
│   └── Simple API? → Hono (similar API)
│   └── Complex middleware? → Gradual migration
│   └── Heavy node: usage? → Compatibility layer
└── Other Edge (Deno Deploy, Fastly)
    └── Standard Web APIs? → Minimal changes
    └── Platform-specific? → Targeted rewrites

Platform Comparison

Feature Workers Lambda Vercel Express
Cold Start ~0ms 100-500ms 10-100ms N/A
CPU Limit 50ms/10ms 15 min 10s None
Memory 128MB 10GB 1GB System
Max Response 6MB (stream unlimited) 6MB 4.5MB None
Global Edge 300+ PoPs Regional ~20 PoPs Manual
Node.js APIs Partial Full Full Full

Top 10 Migration Errors

Error From Cause Solution
fs is not defined Lambda/Express File system access Use KV/R2 for storage
Buffer is not defined Node.js Node.js globals Import from node:buffer
process.env undefined All Env access pattern Use env parameter
setTimeout not returning Lambda Async patterns Use ctx.waitUntil()
require() not found Express CommonJS Convert to ESM imports
Exceeded CPU time All Long computation Chunk or use DO
body already consumed Express Request body Clone before read
Headers not iterable Lambda Headers API Use Headers constructor
crypto.randomBytes Node.js Node crypto Use crypto.getRandomValues
Cannot find module All Missing polyfill Check Workers compatibility

Read the full file on GitHub · 172 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 3d ago First seen · 172 lines · 49 tokens per session scan A c7d841f4f7e3

Subscribe to this mod's changes

cloudflare-workers-migration is a skill published in the GitHub repository secondsky/claude-skills (214 stars, last pushed 3d ago), licensed MIT. It adds 49 tokens to every session and 1,363 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it A with 2 findings (makes network calls, runs shell commands). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-09-03.