From cloudflare
Use this skill when the user asks about Cloudflare Workers KV, key-value storage on Cloudflare's edge, distributed KV stores, or managing KV namespaces with Pulumi.
npx claudepluginhub nsheaps/ai-mktpl --plugin cloudflareThis skill uses the workspace's default tool permissions.
Workers KV is a global, low-latency key-value data store. It's eventually consistent with reads served from the nearest edge location.
Searches, retrieves, and installs Agent Skills from prompts.chat registry using MCP tools like search_skills and get_skill. Activates for finding skills, browsing catalogs, or extending Claude.
Searches prompts.chat for AI prompt templates by keyword or category, retrieves by ID with variable handling, and improves prompts via AI. Use for discovering or enhancing prompts.
Guides agent creation for Claude Code plugins with file templates, frontmatter specs (name, description, model), triggering examples, system prompts, and best practices.
Workers KV is a global, low-latency key-value data store. It's eventually consistent with reads served from the nearest edge location.
cloudflare.WorkersKvNamespace (docs)export default {
async fetch(request: Request, env: Env): Promise<Response> {
await env.MY_KV.put("key", "value", { expirationTtl: 3600 });
const value = await env.MY_KV.get("key");
return new Response(value);
},
};
[[kv_namespaces]]
binding = "MY_KV"
id = "xxxx"
import * as cloudflare from "@pulumi/cloudflare";
const kv = new cloudflare.WorkersKvNamespace("my-kv", {
accountId,
title: "my-kv-namespace",
});
export const kvNamespaceId = kv.id;
| Resource | Free | Paid |
|---|---|---|
| Reads | 100K/day | $0.50/M |
| Writes | 1K/day | $5.00/M |
| Deletes | 1K/day | $5.00/M |
| Lists | 1K/day | $5.00/M |
| Storage | 1 GB | $0.50/GB/month |