What it does
wrangler is the entry point to Cloudflare's entire Workers platform. Develop locally with Miniflare, deploy Workers globally in seconds, manage D1 databases, R2 buckets, KV namespaces, Queues and Durable Objects, tail live logs, set encrypted secrets — all from one binary. It's the official path for shipping anything on Cloudflare's edge.
What TerminalSync adds
- Workers runbook. Install, login, local dev, deploy, tail and D1 commands stay attached to the project terminal.
- Secrets in env vault. Keep recoverable app secrets in a project
.envfile and TerminalSync can encrypt that file into the folder vault. Cloudflare-bound secrets still live in Cloudflare afterwrangler secret put. - Session memory. Your AI remembers which Worker project, account and environment you're targeting — so "deploy this to staging" doesn't ask for confirmation it already has.
Typical commands
wrangler dev # local dev server (Miniflare)
wrangler deploy # ship to global edge
wrangler secret put STRIPE_KEY
wrangler tail # live logs from production
wrangler d1 execute my-db --command "SELECT * FROM users"