cloudflare-kv

Automate Cloudflare Workers KV operations and namespace management with Wrangler.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/SerendipityOneInc/srp-claude-code-marketplace --skill cloudflare-kv-serendipityoneinc
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cloudflare-kv
Source: https://github.com/SerendipityOneInc/srp-claude-code-marketplace/tree/main/plugins/srp-developer/skills/cloudflare-kv
Command: npx skills add https://github.com/SerendipityOneInc/srp-claude-code-marketplace --skill cloudflare-kv-serendipityoneinc

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) and scripts (resource) and assets (resource) components.

What problem does it solve?

This skill helps developers interact with Cloudflare Workers KV, enabling fast, edge-resident key-value storage for serverless apps.

Core Features & Use Cases

  • KV operations: get, put, and delete values in a namespace for edge deployments.
  • Namespace management: create and manage KV namespaces and bindings for workers.
  • Use Case: Build feature flags or per-user session data cached at the edge to reduce latency.

Quick Start

  • Create a KV namespace and perform a basic put/get using Wrangler, e.g., wrangler kv:key put MY_NAMESPACE example-key 'Hello' and wrangler kv:key get MY_NAMESPACE example-key.

Frequently Asked Questions about cloudflare-kv

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I use Cloudflare Workers KV for edge storage in my serverless app?

Cloudflare Workers KV provides fast, edge-resident key-value storage for serverless apps by allowing you to perform get, put, and delete operations on data cached close to users.

How do I manage Cloudflare KV namespaces and worker bindings?

Manage Cloudflare KV namespaces and worker bindings by creating namespaces and linking them to your workers, enabling edge deployments to interact with specific key-value data stores.

What is the best way to put and get values in a Cloudflare KV namespace using Wrangler?

Put and get values in a Cloudflare KV namespace using Wrangler CLI commands like `wrangler kv:key put` and `wrangler kv:key get` to handle edge data locally and in production.

Can I build feature flags or per-user session data with Cloudflare KV?

Build feature flags or per-user session data with Cloudflare KV by caching this data at the edge, which reduces latency for serverless applications accessing user-specific information.

Does this skill support local development and testing with Wrangler for Cloudflare Workers KV?

Wrangler supports local development and testing for Cloudflare Workers KV, providing a CLI workflow to test namespace operations and edge storage logic before production deployment.