cf-kv

Generate Cloudflare Workers KV configurations and integration code.

1|Updated Mar 2, 2026
One-click install
npx skills add https://github.com/sitharaj88/claude-skills --skill cf-kv
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: cf-kv
Source: https://github.com/sitharaj88/claude-skills/tree/main/skills/cf-kv
Command: npx skills add https://github.com/sitharaj88/claude-skills --skill cf-kv

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill includes references (resource) components.

What problem does it solve?

This Skill simplifies the process of generating and managing Cloudflare Workers KV configurations, enabling efficient global key-value data storage at the network's edge.

Core Features & Use Cases

  • KV Namespace Management: Create, list, and delete KV namespaces using the wrangler CLI.
  • Worker Binding Configuration: Define KV namespace bindings within your wrangler.toml file.
  • API Operations: Implement standard CRUD operations (get, put, delete) for KV data with TypeScript examples.
  • Advanced Patterns: Provides implementations for caching (stale-while-revalidate), configuration stores, feature flags, session management, and rate limiting.
  • Bulk Operations: Facilitates bulk data import and export using the wrangler CLI.

Quick Start

Use the cf-kv skill to generate Cloudflare Workers KV configurations for global key-value storage.

Frequently Asked Questions about cf-kv

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

FAQPage Schema
How do I configure Cloudflare Workers KV for edge caching and configuration storage?

You configure Cloudflare Workers KV by defining namespace bindings in your wrangler.toml file. The cf-kv Skill generates these configurations along with TypeScript integration code for global key-value storage at the edge.

What is the best way to implement feature flagging and rate limiting with Cloudflare Workers KV?

Implementing feature flagging and rate limiting with Cloudflare Workers KV involves using standard API operations like get and put. The Skill provides advanced patterns and TypeScript examples to handle these specific edge computing use cases.

Can I manage Cloudflare Workers KV namespaces and bulk data using the wrangler CLI?

Yes, you can manage Cloudflare Workers KV namespaces and perform bulk data import and export directly using the wrangler CLI. The Skill provides commands to create, list, and delete namespaces for your key-value store.

Does Cloudflare Workers KV support stale-while-revalidate caching patterns?

Yes, Cloudflare Workers KV supports stale-while-revalidate caching patterns. The Skill includes implementations for this advanced caching strategy alongside session handling and configuration management code examples.

How do I perform CRUD operations on a Cloudflare Workers KV key-value store?

You perform CRUD operations on a Cloudflare Workers KV key-value store using standard API get, put, and delete methods. The Skill generates TypeScript examples for these API operations integrated via Worker bindings.