cloudflare-kv
Use when persisting tool data in Cloudflare KV - Describes bindings, key naming, and function conventions.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Use when persisting tool data in Cloudflare KV - Describes bindings, key naming, and function conventions.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
استنادا إلى تصنيف SOC المهني
Use when adding external browser dependencies via CDN - Provides CDN selection guidance to ensure reliable script loading.
Use when building GitHub-based features - Explains auth token usage, Gist reading/writing and rendering helpers.
Use when wanting to interact with any LLM - Explains available inference endpoints so the agent selects suitable models.
Use when building interactive map tools - Explains MapLibre setup, tiles, and common UI patterns.
Use when creating or updating SKILL.md documentation - Explains how and why to create a skill.
| name | cloudflare-kv |
| description | Use when persisting tool data in Cloudflare KV - Describes bindings, key naming, and function conventions. |
TOOLS_KV for all tools. Use the binding directly; do not create new namespaces per tool.<tool-name>:<key> so data stays isolated between tools.TOOLS_KV.get, put, and delete. For counters, use TOOLS_KV.get + put with retries or Workers KV atomic counters when available.null case on get to avoid undefined data paths for first-time users.counter_increment or counter/functions/increment so routes stay organized.env.TOOLS_KV binding provided in the handler signature.The counter tool stores its count in TOOLS_KV under the key counter:value. Reuse that pattern whenever you need shared state across sessions.