Skills Plugins MCP Prompt Model 博客 我的中心
开发编程 #writing #cloud

workers-best-practices

Cloudflare Workers best practices for production applications. Use when writing, reviewing, or configuring Workers.

DeepseekModel 官方收录技能 质量 优秀 · 90 v1.0.0

获取

https://deepseekmodel.com/api/download.php?id=cloudflare-skills-skills-workers-best-practices-skill-md&format=skill
下载 .skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用
.skill 文件中 system_prompt 字段的实际内容。
name workers-best-practices description Cloudflare Workers best practices for production applications. Use when writing, reviewing, or configuring Workers. Your knowledge of Cloudflare Workers APIs, types, and configuration may be outdated. Prefer retrieval over pre-training when writing or reviewing Workers code. Use the project's installed versions, generated types, and Wrangler compatibility settings as the baseline for existing code. Retrieve relevant Cloudflare documentation to verify API, configuration, runtime behavior, and limit claims. References Read the sections relevant to the task: Reference When to use it Configuration and observability Compatibility dates, bindings, generated types, secrets, logs, and traces Runtime patterns Streaming, promise lifetime, request state, service calls, security, and runtime tests Platform API checks Handler signatures, platform classes, binding access, and serialization For missing evidence, consult Workers best practices or find the affected product in the Cloudflare docs directory . Use the installed Wrangler schema for config fields. A newer type package does not supersede the project's configured target. Keep Compatibility Dates Current Use today's date for new Workers. Encourage periodic updates for existing Workers, reviewing compatibility changes and running relevant tests. Assess existing behavior against its configured date and flags; see compatibility guidance . Enable Observability Enable Workers Logs and Traces when creating or preparing a Worker for production. Set observability.enabled and observability.traces.enabled to true ; the top-level setting alone does not enable traces. Use structured JSON logging and configure sampling for the workload. During reviews, flag missing logs or traces. See the configuration example . Anti-Patterns to Flag Anti-pattern Consequence and preferred pattern await response.text() or similar buffering on unbounded data Can exhaust Worker memory; stream large or unbounded bodies . Hardcoded secrets in source or config Leaks credentials through version control; use Wrangler secrets. Math.random() for security-sensitive tokens or IDs Predictable values; use crypto.randomUUID() or crypto.getRandomValues() . Async work started without awaiting, returning, or attaching it to ctx.waitUntil() Work can be dropped and errors missed; tie it to the request or background-work lifetime. Module-level mutable request state Leaks data across requests and can cause I/O ownership errors; pass request state explicitly. Cloudflare REST API calls for operations available through Worker bindings Adds network and authentication overhead; use the available binding. ctx.passThroughOnException() used as general error handling Can conceal Worker failures by forwarding to the origin; use explicit error handling and structured error responses. Hand-written Env that duplicates Wrangler bindings Can drift from configuration; generate binding types with wrangler types . Direct string comparison of secret values Can expose timing differences; use the Web Crypto comparison pattern . Destructuring ctx methods, such as const { waitUntil } = ctx Loses the receiver; call ctx.waitUntil(...) . any on Env or handler parameters Hides binding and handler contract errors; use the project's generated and platform types. as unknown as T to force a platform type match Hides incompatibilities; fix the underlying contract. implements used in place of extending a platform base class Does not inherit runtime behavior, this.ctx , or this.env ; use the appropriate base class. Unbound env.X in a platform class method Bindings are available through this.env.X ; see binding access patterns . Applying one serialization rule across Queues, Workflow steps, storage, and WebSockets Can reject valid payloads or accept unsupported ones; check the specific API and encoding . Validation Use the project's existing checks for affected Workers behavior: type-check binding or handler contract changes, and run relevant runtime tests for behavior changes. Preserve required repository checks; a narrow edit does not require a full Workers audit. Scope This skill covers Workers-specific best practices and code review. For related topics: Durable Objects : load the durable-objects skill Workflows : see Rules of Workflows Wrangler CLI commands : load the wrangler skill
Agent 识别该技能的关键词,点击任意一个即可复制。

该技能未提供触发词。

下载的 .skill 包内含以下字段。
字段 说明
format格式标识(skill/v1)
skill_id技能唯一 ID
name技能名称
version版本号
description技能描述
category所属分类(数组)
trigger_words触发词列表
tags标签列表
source来源标识
source_url来源链接(本页地址)
exported_at导出时间(每次下载生成)
system_prompt系统提示词正文
model_config模型参数:provider / model / temperature / max_tokens / top_p
examples示例
install_guide各平台导入说明(Coze / Dify / Claude / 自定义框架)
同一份技能可按不同平台格式导出。
.skill 标准格式,含 system_prompt 与 model_config,导入任意 Agent 框架即可使用 下载
.skillpro 增强格式,额外含脚本 / 工具 / 依赖 / 钩子占位 下载
.json 纯 JSON 导出,只含 system_prompt 与模型参数 下载
Coze 带 frontmatter 的 Markdown,Coze 平台导入用 下载
Dify Dify DSL,创建应用后直接导入 下载

每日精选 Skill 推荐,免费送到你邮箱

输入邮箱,每天接收一个精选 AI Agent 技能推荐。完全免费,持续更新。

提交后我们会发送一封确认邮件,点击邮件里的链接才会开始收信。

完全免费,取消任意时间。我们不会发送垃圾邮件。