What problem does it solve? Adding bot protection to forms and endpoints requires coordinating Cloudflare API credentials, widget creation, frontend embeds, and server-side siteverify validation, which is error-prone when done manually. ## Core Features & Use Cases - Guided setup wizard: Probes API token scope, creates the Turnstile widget via the Cloudflare API or Wrangler, and registers approved domains. - Framework-specific integration: Embeds the widget and wires canonical server-side siteverify into existing handlers for Next.js, Astro, SvelteKit, Hugo, and vanilla HTML projects. - Secret-safe validation: Validates the widget secret via dummy siteverify and a real token round-trip without printing secrets to chat, logs, or disk. - Use Case: Ask the agent to protect a signup form from bots; it scans the codebase, creates the widget, gates the existing handler on siteverify success, and confirms replayed tokens are rejected. ## Quick Start Ask the agent to add Cloudflare Turnstile bot protection to your signup form and follow the guided setup wizard.