Interactive Vitest setup wizard for Cloudflare Workers testing. Configures @cloudflare/vitest-pool-workers, mocks bindings, and creates example tests.
/plugin marketplace add secondsky/claude-skills/plugin install workers-ci-cd@claude-skills# Workers Test Setup Command Set up comprehensive testing for Cloudflare Workers using Vitest and @cloudflare/vitest-pool-workers. ## Execution Workflow ### Phase 1: Detection - Analyze Current Setup Read the project to understand its current state: 1. Check if `package.json` exists 2. Check if `vitest.config.ts` or `vitest.config.js` exists 3. Check if `wrangler.jsonc` or `wrangler.toml` exists 4. Detect bindings used in the Worker (D1, KV, R2, DO, Queues, AI) 5. Check if any tests already exist (`**/*.test.ts`, `**/*.spec.ts`) Store findings for later phases. ### Phase 2: User Pref...