Token导航 LogoToken导航TokenDH.com
开发操作浏览器github未标认证来源可访问许可证需确认审计通过

cloudflare-workersCloudflare Workers 开发

Agent Skill

cloudflare-workers 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

512

周安装

22

GitHub Stars

14

下载量

180
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:cloudflare-workers(Cloudflare Workers 开发)
来源仓库:https://github.com/itechmeat/llm-code
仓库路径:skills/cloudflare-workers
安装命令:
npx skills add https://github.com/itechmeat/llm-code --skill cloudflare-workers
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/itechmeat/llm-code --skill cloudflare-workers

简介

cloudflare-workers 用于处理 GitHub 仓库、Issue、Pull Request 等代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中进行项目状态跟踪。

  • 适用于 Cloudflare Workers 无服务器函数的开发和部署工作。
  • 通过 GitHub API 调用、代码审查和协作流程管理来处理开发任务。
  • 安装命令:npx skills add https://github.com/itechmeat/llm-code --skill cloudflare-workers
  • 建议确认 GitHub 访问权限和仓库读写权限,注意 API 调用限制

SKILL.md

Cloudflare Workers

Serverless platform for building applications across Cloudflare's global network.

Quick Navigation

  • Runtime & handlers → references/runtime.md
  • Bindings overview → references/bindings.md
  • Wrangler configuration → references/wrangler.md
  • Local development → references/local-dev.md
  • Static assets → references/assets.md
  • Testing → references/testing.md

When to Use

  • Building serverless APIs or full-stack applications
  • Running edge functions with global distribution
  • Connecting to Cloudflare storage (KV, R2, D1, Durable Objects)
  • Running AI inference with Workers AI
  • Configuring Wrangler CLI and wrangler.toml
  • Setting up local development with Miniflare
  • Testing Workers with Vitest

Module Worker (Recommended Syntax)

export default {
  async fetch(request: Request, env: Env, ctx: ExecutionContext): Promise<Response> {
    return new Response("Hello, World!");
  },
} satisfies ExportedHandler<Env>;

Handler Types

HandlerTriggerUse Case
fetchHTTP requestAPIs, websites
scheduledCron triggerBackground jobs
queueQueue messageAsync processing
emailEmail receivedEmail routing

Bindings Overview

Access Cloudflare resources via env object.

BindingTypeLocal Dev
KVKVNamespace✅ Simulated
R2R2Bucket✅ Simulated
D1D1Database✅ Simulated
Durable ObjectsDurableObjectNamespace✅ Simulated
QueuesQueue✅ Simulated
Workers AIAi❌ Remote only
VectorizeVectorizeIndex❌ Remote only
Browser RenderingFetcher❌ Remote only
HyperdriveHyperdrive❌ Remote only
Static AssetsFetcher✅ Simulated
Service BindingFetcher✅ Simulated

Minimal Configuration

// wrangler.jsonc
{
  "$schema": "./node_modules/wrangler/config-schema.json",
  "name": "my-worker",
  "main": "src/index.ts",
  "compatibility_date": "2025-03-07",
  "compatibility_flags": ["nodejs_compat"],
  "observability": {
    "enabled": true,
    "head_sampling_rate": 1
  }
}

Essential Commands

# Development
npx wrangler dev              # Local dev (Miniflare)
npx wrangler dev --remote     # Remote dev (code on Cloudflare)

# Deployment
npx wrangler deploy           # Deploy to production
npx wrangler versions upload  # Upload without deploying
npx wrangler versions deploy  # Promote version

# Secrets
npx wrangler secret put KEY   # Add secret
npx wrangler secret list      # List secrets

# Types
npx wrangler types            # Generate TypeScript types

Compatibility Settings

# wrangler.toml
compatibility_date = "2025-03-07"
compatibility_flags = ["nodejs_compat"]

Key flags:

  • nodejs_compat — Enable Node.js APIs
  • nodejs_compat_v2 — Improved process implementation

Quick Recipes

Fetch Handler with Routing

export default {
  async fetch(request: Request, env: Env): Promise<Response> {
    const url = new URL(request.url);

    if (url.pathname === "/api/hello") {
      return Response.json({ message: "Hello!" });
    }

    if (url.pathname.startsWith("/static/")) {
      return env.ASSETS.fetch(request);
    }

    return new Response("Not Found", { status: 404 });
  },
};

Scheduled Handler (Cron)

export default {
  async scheduled(controller: ScheduledController, env: Env, ctx: ExecutionContext) {
    ctx.waitUntil(doBackgroundWork(env));
  },
};
# wrangler.toml
[triggers]
crons = ["0 * * * *"]  # Every hour

Queue Consumer

export default {
  async queue(batch: MessageBatch, env: Env, ctx: ExecutionContext) {
    for (const message of batch.messages) {
      console.log(message.body);
      message.ack();
    }
  },
};

Critical Prohibitions

  • Do NOT store secrets in wrangler.toml — use wrangler secret put
  • Do NOT use remote: true for Durable Objects or Workflows — unsupported
  • Do NOT expect Workers AI to work locally — always requires remote connection
  • Do NOT omit compatibility_date — defaults to oldest date (2021-11-02)
  • Do NOT use Service Worker syntax for new projects — use ES Modules
  • Do NOT mix Service Worker and Module syntax in same project

Common Gotchas

IssueSolution
Local bindings emptyAdd --local flag to Wrangler KV/R2/D1 commands
AI not working locallyUse remote: true in ai binding config
Node APIs unavailableAdd nodejs_compat to compatibility_flags
First deploy failsUse wrangler deploy, not versions upload for first deploy

Links

Related Skills

  • cloudflare-pages — Full-stack hosting with Git deployment
  • cloudflare-d1 — D1 database operations
  • cloudflare-r2 — R2 object storage
  • cloudflare-kv — KV namespace operations
  • cloudflare-durable-objects — Stateful coordination

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.08%
按下载量换算61

Claude

30.97%
按下载量换算56

Cursor

18.45%
按下载量换算33

Gemini CLI

9.17%
按下载量换算17

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

操作浏览器

该 Skill 可能涉及浏览器控制能力,使用时可能读取或操作网页内容,需要在受控环境中确认权限边界。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills