edge-computing-optimizer
Installation
SKILL.md
Edge Computing Optimizer
This skill focuses on using Cloudflare Workers, Vercel Edge, or Lambda@Edge to run code closest to the user.
Instructions
- Identify logic that can run without a central database (Geo-detection, Auth checks).
- Use Edge KV or Durable Objects for fast, low-latency data access.
- Implement 'Stale-While-Revalidate' (SWR) patterns at the edge.
- Optimize asset delivery based on the user's device and connection.
- Handle edge-to-origin failover scenarios.
Examples
- "Rewrite this auth-check to run on Cloudflare Workers for 50ms faster response."
- "Implement A/B testing logic entirely at the network edge."