edge-computing
Edge computing with Cloudflare Workers, Deno Deploy, Bun, Vercel Edge Functions, AWS Lambda@Edge, and edge databases (Turso, D1, DynamoDB Global Tables). Use when building low-latency edge applications, edge-side rendering, or globally distributed compute.
What this skill does
# Edge Computing
## Platforms
| Platform | Runtime | Cold Start | Limits |
|----------|---------|------------|--------|
| **Cloudflare Workers** | V8 isolates | ~0ms | 128MB, 30s CPU |
| **Deno Deploy** | V8 isolates | ~0ms | 512MB, 50ms CPU |
| **Vercel Edge Functions** | V8 isolates | ~0ms | 128MB, 25s |
| **AWS Lambda@Edge** | Node.js | ~100ms | 128MB, 5s (viewer) |
| **Bun** | JavaScriptCore | N/A (server) | No hard limits |
## Cloudflare Workers
```typescript
export default {
async fetch(request: Request, env: Env): Promise<Response> {
const url = new URL(request.url);
// KV storage
const cached = await env.KV.get(url.pathname);
if (cached) return new Response(cached, { headers: { 'Cache-Control': 'max-age=60' } });
// D1 database
const { results } = await env.DB.prepare('SELECT * FROM users WHERE id = ?')
.bind(url.searchParams.get('id'))
.all();
// Durable Objects for state
const id = env.COUNTER.idFromName('global');
const obj = env.COUNTER.get(id);
const count = await obj.fetch(request);
return new Response(JSON.stringify(results));
}
};
```
## Edge Databases
| Database | Type | Best For |
|----------|------|----------|
| **Cloudflare D1** | SQLite | Workers-native, SQL at edge |
| **Turso** | libSQL (SQLite) | Multi-region replicas, embedded |
| **Cloudflare KV** | Key-value | Simple caching, config |
| **Durable Objects** | Stateful | Real-time, coordination, counters |
| **Upstash Redis** | Redis | Rate limiting, sessions at edge |
## Deno Deploy
```typescript
Deno.serve(async (req: Request) => {
const kv = await Deno.openKv();
const url = new URL(req.url);
if (req.method === "POST") {
const body = await req.json();
await kv.set(["items", crypto.randomUUID()], body);
return new Response("Created", { status: 201 });
}
const entries = kv.list({ prefix: ["items"] });
const items = [];
for await (const entry of entries) items.push(entry.value);
return Response.json(items);
});
```
## Patterns
- **Edge-side rendering:** SSR at the edge for <50ms TTFB globally
- **Smart routing:** Geo-aware request routing based on `request.cf.country`
- **Edge caching:** Cache API for fine-grained control, stale-while-revalidate
- **Rate limiting:** Sliding window counters with Durable Objects or Upstash
- **A/B testing:** Edge-side feature flags without origin round-trips
- **Image optimization:** On-the-fly transforms at edge (Cloudflare Images, Imgproxy)
## Constraints & Gotchas
- No Node.js APIs (fs, net, etc.) in V8 isolate runtimes
- No native modules or binaries (use WASM for compute-heavy work)
- Limited CPU time per request — offload heavy work to queues
- Cold starts are near-zero for isolates but real for Lambda@Edge
- Database connections: use HTTP-based clients, not TCP connection pools
Related in Cloud & DevOps
appbuilder-action-scaffolder
IncludedCreate, implement, deploy, and debug Adobe Runtime actions with consistent layout, validation, and error handling. Use this skill whenever the user needs to add actions to an App Builder project, understand action structure (params, response format, web/raw actions), configure actions in the manifest, use App Builder SDKs (State, Files, Events, database), deploy and invoke actions via CLI, debug action issues, or implement patterns such as webhook receivers, custom event providers, journaling consumers, large payload redirects, action sequence pipelines, and Asset Compute workers. Also trigger when users mention serverless functions in Adobe context, action logging, IMS authentication for actions, or cron-style scheduled actions.
orchestrating-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. Use this skill when the user needs a multi-step Data Cloud pipeline, cross-phase troubleshooting, or data space and data kit management. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase sf data360 workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching phase-specific skill), the task is STDM/session tracing/parquet telemetry (use observing-agentforce), standard CRM SOQL (use querying-soql), or Apex implementation (use generating-apex).
github-project-automation
IncludedAutomate GitHub repository setup with CI/CD workflows, issue templates, Dependabot, and CodeQL security scanning. Includes 12 production-tested workflows and prevents 18 errors: YAML syntax, action pinning, and configuration. Use when: setting up GitHub Actions CI/CD, creating issue/PR templates, enabling Dependabot or CodeQL scanning, deploying to Cloudflare Workers, implementing matrix testing, or troubleshooting YAML indentation, action version pinning, secrets syntax, runner versions, or CodeQL configuration. Keywords: github actions, github workflow, ci/cd, issue templates, pull request templates, dependabot, codeql, security scanning, yaml syntax, github automation, repository setup, workflow templates, github actions matrix, secrets management, branch protection, codeowners, github projects, continuous integration, continuous deployment, workflow syntax error, action version pinning, runner version, github context, yaml indentation error
sf-datacloud
IncludedSalesforce Data Cloud product orchestrator for connect→prepare→harmonize→segment→act workflows. TRIGGER when: user needs a multi-step Data Cloud pipeline, asks to set up or troubleshoot Data Cloud across phases, manages data spaces or data kits, or wants a cross-phase `sf data360` workflow. DO NOT TRIGGER when: work is isolated to a single phase (use the matching sf-datacloud-* skill), the task is STDM/session tracing/parquet telemetry (use sf-ai-agentforce-observability), standard CRM SOQL (use sf-soql), or Apex implementation (use sf-apex).
fabric-cli
IncludedUse this skill for Fabric.so CLI workflows with the `fabric` terminal command: diagnose/install/login, search or browse a Fabric library, save notes/links/files, create folders, ask the Fabric AI assistant, manage tasks/workspaces, generate shell completion, check subscription usage, produce JSON output, and use Fabric as persistent agent memory. Do not use for Microsoft Fabric/Azure/Power BI `fab`, Daniel Miessler's Fabric framework, Python Fabric SSH, Fabric.js, or textile/fashion fabric.
lark
IncludedLark/Feishu CLI skills: lark-cli operations for docs, markdown, sheets, base, calendar, im, mail, task, okr, drive, wiki, slides, whiteboard, apps, approval, attendance, contact, vc, minutes, event. Use when the user needs to operate Lark/Feishu resources via lark-cli, send messages, manage documents, spreadsheets, calendars, tasks, OKRs, deploy web pages, or any Feishu/Lark workspace operations.