From edgeone-makers-tools
Guides use of EdgeOne Makers KV and Blob storage services for edge key-value pairs and file/object storage, including SDK usage, setup, and troubleshooting.
How this skill is triggered — by the user, by Claude, or both
Slash command
/edgeone-makers-tools:makers-storageThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
EdgeOne Makers provides two storage services. **Choose based on your runtime and data type:**
EdgeOne Makers provides two storage services. Choose based on your runtime and data type:
| Storage | Runtime | Data Type | SDK | Use Case |
|---|---|---|---|---|
| KV | Edge Functions only | Small key-value pairs (≤ 25 MB) | Global variable (no npm) | Counters, config, session tokens, simple CRUD |
| Blob | Cloud Functions (Makers Functions) | Files & objects (images, docs, uploads) | @edgeone/pages-blob (npm) | User uploads, AI-generated content, file management |
Need persistent storage?
├─ Edge Function (V8 runtime, no npm)?
│ → KV Storage (global variable) → read references/kv.md
└─ Cloud Function (Node.js, has npm)?
├─ Storing files / images / large objects?
│ → Blob Storage → read references/blob.md
└─ Storing small key-value data?
→ Blob with setJSON → read references/blob.md
| Task | Read |
|---|---|
| KV Storage (Edge Functions, global variable, put/get/delete/list) | references/kv.md |
| Blob Storage (Cloud Functions, npm SDK, file upload/download, pre-signed URLs) | references/blob.md |
npx claudepluginhub tencentedgeone/edgeone-makers-tools --plugin edgeone-makers-toolsProvides guidance for writing V8-based edge functions on EdgeOne Makers, covering routing, KV storage, request/response handling, and environment variables.
Provides expert guidance on Vercel storage: Blob, Edge Config, Neon Postgres, Upstash Redis, Supabase, Prisma, KV, Postgres. Use for choosing, configuring, or integrating storage in Vercel apps.
Advises on Cloudflare Workers and edge computing, including Wrangler, KV, D1, Durable Objects, and R2.