skillmake
← marketplace
devopsplatformsha:b825ace3eb018b77manual

wrangler

Use when working with wrangler CLI: Workers, KV, tail, deploy, account routing from steipete/agent-scripts.

Install confidence
curl --create-dirs -fsSL https://skillmake.xyz/i/wrangler -o ~/.claude/skills/wrangler/SKILL.md
Pinned content
sha:b825ace3eb018b77
Generated with
manual
Source
github.com

The file served at /api/marketplace/wrangler-b825ace3/raw matches this hash. Inspect before install, then copy the command.

3,250 chars · ~813 tokens
---
name: wrangler
description: "Use when working with wrangler CLI: Workers, KV, tail, deploy, account routing from steipete/agent-scripts."
source: https://github.com/steipete/agent-scripts/tree/main/skills/wrangler
generated: 2026-05-27T20:56:56.069Z
category: platform
audience: devops
---

## When to use

- Cloudflare Wrangler CLI work: deploys, tails, KV/R2/D1/Queues/Workers, secrets, bindings, and account routing.
- Using the wrangler skill's upstream workflow, guardrails, and local-tool assumptions.
- Auditing commands or operational steps before changing wrangler behavior.
- Needing a compact agent reference for wrangler CLI: Workers, KV, tail, deploy, account routing.

## Key concepts

### Defaults

Retrieval first for flags/config: wrangler --help, subcommand --help, local nodemodules/wrangler/config-schema.json, then Cloudflare docs. Prefer repo wrapper: npm exec --yes --package wrangler -- wrangler... unless repo has its own script. wrangler whoami before account-sensitive work. ReleaseBar prod account: Steipete@gmail.com's Account / de09342a728de2c25c85cc6b34d68739. OpenClaw projects: use OpenClaw account / 91b59577e757131d68d55a471fe32aca. Ask if unsure.

### Pitfalls

Do not invent flags from memory. Wrangler 4 removed/changed some old flags; confirm with --help. wrangler kv key list has no --limit; use --prefix and filter locally. Run Wrangler KV/list/get/admin reads serially when workerd/local storage starts up; parallel runs can hit SQLite SQLITEBUSY. wrangler tail --sampling-rate must be >0 and <1; use 0.999 for near-full sampling, not 1. Stop tails you start. Use a PTY when interactive stop matters; otherwise kill the exact wrangler tail <worker>...

### Quick Commands

Quick Commands guidance for the wrangler skill.

### Account Check

For repo config, read wrangler.toml / wrangler.json(c) before commands. If config account and intended product disagree, stop and ask.

## API reference

```
npx skills add steipete/agent-scripts --skill wrangler
```

Install the wrangler skill from steipete/agent-scripts.

```
npx skills add steipete/agent-scripts --skill wrangler
```

```
npm exec --yes --package wrangler -- wrangler whoami.
```

Command or snippet documented by the upstream wrangler skill.

```
npm exec --yes --package wrangler -- wrangler whoami
npm exec --yes --package wrangler -- wrangler deploy
npm exec --yes --package wrangler -- wrangler tail <worker> --format json --sampling-rate 0.999 --search '<term>'
npm exec --yes --package wrangler -- wrangler kv key list --namespace-id <id> --prefix '<prefix>'
npm exec --yes --package wrangler -- wrangler kv key get '<key>' --namespace-id <id>
```

## Gotchas

- Prefer repo wrapper: npm exec --yes --package wrangler -- wrangler... unless repo has its own script.
- Do not invent flags from memory. Wrangler 4 removed/changed some old flags; confirm with --help.
- Stop tails you start. Use a PTY when interactive stop matters; otherwise kill the exact wrangler tail <worker> process.
- Never print secrets. Query exact secret names only; do not dump env.

---
Generated by SkillMake from https://github.com/steipete/agent-scripts/tree/main/skills/wrangler on 2026-05-27T20:56:56.069Z.
Verify against source before relying on details.

File: ~/.claude/skills/wrangler/SKILL.md