
Wrangler
- 46 installs
- 70 repo stars
- Updated June 19, 2026
- dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations
Deploy and manage Cloudflare Workers, Pages, KV, R2, and D1 using the wrangler CLI.
About
Documents wrangler commands for deploying workers, tailing logs, and managing KV and R2 storage. Use it when building and operating on the Cloudflare developer platform.
- wrangler deploy and dev for workers
- KV and R2 management commands
Wrangler by the numbers
- 46 all-time installs (skills.sh)
- Ranked #734 of 1,039 Cloud & Infrastructure skills by installs in the Skillselion catalog
- Data as of Aug 4, 2026 (Skillselion catalog sync)
npx skills add https://github.com/dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations --skill wranglerAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 46 |
|---|---|
| repo stars | ★ 70 |
| Last updated | June 19, 2026 |
| Repository | dicklesworthstone/agent_flywheel_clawdbot_skills_and_integrations ↗ |
What it does
Deploy and manage Cloudflare Workers, Pages, KV, R2, and D1 using the wrangler CLI.
Files
Wrangler Skill
Use the wrangler CLI to manage Cloudflare Workers and related services.
Workers
List deployed workers:
wrangler deployments listDeploy a worker:
wrangler deployTail live logs from a worker:
wrangler tail <worker-name>Run worker locally:
wrangler devKV (Key-Value Storage)
List KV namespaces:
wrangler kv namespace listList keys in a namespace:
wrangler kv key list --namespace-id <namespace-id>Get a value:
wrangler kv key get <key> --namespace-id <namespace-id>Put a value:
wrangler kv key put <key> <value> --namespace-id <namespace-id>R2 (Object Storage)
List R2 buckets:
wrangler r2 bucket listList objects in a bucket:
wrangler r2 object list <bucket-name>Upload a file:
wrangler r2 object put <bucket-name>/<key> --file <local-path>D1 (SQLite Database)
List D1 databases:
wrangler d1 listExecute SQL query:
wrangler d1 execute <database-name> --command "SELECT * FROM users LIMIT 10"Run migrations:
wrangler d1 migrations apply <database-name>Pages
List Pages projects:
wrangler pages project listDeploy a directory to Pages:
wrangler pages deploy <directory> --project-name <project>Secrets
Set a secret:
echo "secret-value" | wrangler secret put <SECRET_NAME>List secrets:
wrangler secret listConfiguration
Check current authentication:
wrangler whoamiLogin (opens browser):
wrangler login