.agents/skills/cloudflare-kv/SKILL.md
Use when persisting tool data in Cloudflare KV - Describes bindings, key naming, and function conventions.
npx skillsauth add dave1010/tools cloudflare-kvInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
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.
documentation
Use when creating or updating SKILL.md documentation - Explains how and why to create a skill.
tools
Use when building interactive map tools - Explains MapLibre setup, tiles, and common UI patterns.
data-ai
Use when wanting to interact with any LLM - Explains available inference endpoints so the agent selects suitable models.
tools
Use when building GitHub-based features - Explains auth token usage, Gist reading/writing and rendering helpers.