Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问clear审计未展示

edge-computing-patterns边缘计算模式

Agent Skill

edge-computing-patterns 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

423

周安装

18

GitHub Stars

公开资料未说明

下载量

148
CodexClaudeCursorGemini CLI

安装说明

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

GitHub

来源数

2

许可证

MIT

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

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

请帮我安装这个 Agent Skill:edge-computing-patterns(边缘计算模式)
来源仓库:https://github.com/yonatangross/skillforge-claude-plugin
仓库路径:skills/edge-computing-patterns
安装命令:
npx skills add yonatangross/skillforge-claude-plugin --skill "edge-computing-patterns"
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

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

AgentSkills.tonpx skills
npx skills add yonatangross/skillforge-claude-plugin --skill "edge-computing-patterns"

简介

用于查找、检索和筛选相关信息。edge-computing-patterns 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位结果。
  • 可结合来源仓库和原始 README 核验具体用法。
  • 安装前建议确认权限范围和维护状态。
  • 注意是否会触发联网、命令执行或文件读写。

SKILL.md

Edge Computing Patterns

Overview

Edge computing runs code closer to users worldwide, reducing latency from seconds to milliseconds. This skill covers Cloudflare Workers, Vercel Edge Functions, and Deno Deploy patterns for building globally distributed applications.

When to use this skill:

  • Global applications requiring <50ms latency
  • Authentication/authorization at the edge
  • A/B testing and feature flags
  • Geo-routing and localization
  • API rate limiting and DDoS protection
  • Transforming responses (image optimization, HTML rewriting)

Platform Comparison

FeatureCloudflare WorkersVercel EdgeDeno Deploy
Cold Start<1ms<10ms<10ms
Locations300+100+35+
RuntimeV8 IsolatesV8 IsolatesDeno
Max Duration30s (paid: unlimited)25s50ms-5min
Free Tier100k req/day100k req/month100k req/month

Platform-Specific Implementation

For detailed code examples and patterns, load the appropriate reference file:

Cloudflare Workers

Reference: references/cloudflare-workers.md

  • Worker fetch handlers and routing
  • KV storage patterns (eventually consistent)
  • Durable Objects for stateful edge
  • Wrangler CLI and wrangler.toml configuration
  • Caching strategies with Cache API

Vercel Edge Functions

Reference: references/vercel-edge.md

  • Edge Middleware for Next.js (auth, A/B testing, geo-routing)
  • Edge API routes with streaming
  • Edge Config for feature flags
  • Geolocation-based routing patterns

Runtime Differences

Reference: references/runtime-differences.md

  • Node.js APIs NOT available at edge
  • Web API compatibility matrix
  • Polyfill strategies for crypto, Buffer, streams

Edge Runtime Constraints

Available APIs:

  • fetch, Request, Response, Headers
  • URL, URLSearchParams
  • TextEncoder, TextDecoder
  • ReadableStream, WritableStream
  • crypto, SubtleCrypto (Web Crypto API)
  • Web APIs (atob, btoa, setTimeout, etc.)

NOT Available:

  • Node.js APIs (fs, path, child_process)
  • Native modules and binary dependencies
  • File system access
  • Some npm packages with Node.js dependencies

Common Patterns Summary

Authentication at Edge

Verify JWT tokens at edge for sub-millisecond auth checks. See references/cloudflare-workers.md for implementation.

Rate Limiting

Use KV (Cloudflare) or Edge Config (Vercel) for distributed rate limiting. Pattern: IP-based key with TTL expiration.

Edge Caching

Cache API with cache-aside pattern. Check cache first, fetch origin on miss, store with TTL.

A/B Testing

Assign users to buckets via cookie, rewrite URLs to variant pages. See references/vercel-edge.md for middleware pattern.

Geo-Routing

Access request.cf.country (Cloudflare) or request.geo (Vercel) for location-based routing.

Best Practices

  • Keep bundles small (<1MB compressed)
  • Use streaming for large responses to avoid timeouts
  • Leverage platform caching (KV, Durable Objects, Edge Config)
  • Handle errors gracefully (edge errors cannot be recovered)
  • Test cold starts and warm starts separately
  • Monitor edge function performance and error rates
  • Use environment variables for secrets (never hardcode)
  • Implement proper CORS headers for cross-origin requests

Decision Guide

Use CaseRecommended Platform
Global CDN + computeCloudflare Workers
Next.js middlewareVercel Edge
TypeScript-firstDeno Deploy
Stateful edgeCloudflare Durable Objects
Feature flagsVercel Edge Config
Real-time collaborationCloudflare Durable Objects + WebSockets

Resources

Related Skills

  • caching-strategies - Redis caching patterns that complement edge KV storage and CDN caching
  • react-server-components-framework - Next.js App Router patterns for edge-rendered React components
  • streaming-api-patterns - SSE and streaming responses for edge function output
  • api-design-framework - REST API patterns for edge-deployed endpoints

Key Decisions

DecisionChoiceRationale
Primary RuntimeV8 IsolatesSub-millisecond cold starts, security isolation
State ManagementKV / Edge ConfigEventually consistent, globally replicated
Stateful WorkloadsDurable ObjectsStrong consistency when needed
Auth StrategyJWT at EdgeNo origin roundtrip, sub-ms verification
Cache PatternCache-AsideSimple, effective, CDN-compatible

Capability Details

cloudflare-workers

Keywords: cloudflare, workers, kv, durable objects, r2, wrangler Reference: references/cloudflare-workers.md Solves:

  • How do I deploy to Cloudflare Workers?
  • Cloudflare KV storage patterns
  • Durable Objects for stateful edge
  • Wrangler CLI usage and configuration

vercel-edge

Keywords: vercel edge, edge functions, edge middleware, geolocation, next.js Reference: references/vercel-edge.md Solves:

  • How do I use Vercel Edge Functions?
  • Edge middleware patterns (auth, A/B testing)
  • Geo-based routing and localization
  • Edge streaming responses

runtime-differences

Keywords: edge runtime, web apis, node.js compatibility, polyfills Reference: references/runtime-differences.md Solves:

  • What Node.js APIs are NOT available at edge?
  • Edge-compatible alternatives to Node APIs
  • How to polyfill crypto, base64, buffers
  • Package compatibility for edge runtimes

edge-caching

Keywords: edge cache, cdn, cache-control, stale-while-revalidate, invalidation Solves:

  • How do I cache at the edge?
  • CDN caching strategies and headers
  • Stale-while-revalidate patterns
  • Cache invalidation strategies
  • Personalization at edge

edge-function-template

Keywords: edge function, template, boilerplate, production-ready Solves:

  • How do I structure an edge function?
  • Production-ready edge function template
  • Error handling and validation patterns
  • CORS, rate limiting, caching setup

edge-middleware-template

Keywords: middleware, next.js, authentication, a/b testing Solves:

  • How do I write Next.js edge middleware?
  • Authentication middleware patterns
  • A/B testing and feature flags
  • Geolocation routing middleware

deployment-checklist

Keywords: deployment, checklist, production, monitoring Reference: checklists/edge-deployment-checklist.md Solves:

  • What should I check before deploying to edge?
  • Edge deployment best practices
  • Production readiness checklist
  • Monitoring and debugging setup

Quick Example

// Cloudflare Worker - Basic fetch handler
export default {
  async fetch(request: Request): Promise<Response> {
    const url = new URL(request.url);

    // Geo-based routing
    const country = request.cf?.country || 'US';

    // Edge caching
    const cacheKey = url.pathname + "-" + country;
    const cached = await caches.default.match(cacheKey);
    if (cached) return cached;

    const response = await fetch(request);
    return response;
  }
}

适合场景

01

用户想查找某类 Agent Skill 时

02

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

03

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

04

需要参考平台分布和安装热度时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

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

能力 4

补充不同宿主或平台的使用分布数据

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

平台分布

Claude Code

31%
按下载量换算46

OpenCode

24.34%
按下载量换算36

Antigravity

16.05%
按下载量换算24

Gemini CLI

13.86%
按下载量换算21

windsurf

8.48%
按下载量换算13

trae

3.38%
按下载量换算5

安全审计

暂无安全审计结果可展示。

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

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

来源信息

继续浏览同类 Skills