wrangler
Audited by Runlayer on Feb 21, 2026
Malicious tool definition detected
Tool: SKILL.md [1/3] Description: --- name: wrangler description: Cloudflare Workers CLI for deploying, developing, and managing Workers, KV, R2, D1, Vectorize, Hyperdrive, Workers AI, Containers, Queues, Workflows, Pipelines, and Secrets Store.
Tool: SKILL.md [2/3] Description: --command "SELECT * FROM users" # Execute SQL file (remote) wrangler d1 execute my-database --remote --file ./schema.sql # Execute locally wrangler d1 execute my-database --local --command "SELECT * FROM users" ``` ### Migrations ```bash # Create migration wrangler d1 migrations create my-database create_users_table # List pending migrations wrangler d1 migrations list my-database --local # Apply migrations locally wrangler d1 migrations apply my-database --loca
Tool: SKILL.md [3/3] Description: | Run `wrangler login` | | Config validation errors | Run `wrangler check` | | Type errors after config change | Run `wrangler types` | | Local storage not persisting | Check `.wrangler/state` directory | | Binding undefined in Worker | Verify binding name matches config exactly | ### Debug Commands ```bash # Check auth status wrangler whoami # Validate config wrangler check # View config schema wrangler docs configuration ``` --- ## Best Practices 1.