ワンクリックで
wrangler
Deploy and manage Cloudflare Workers, Pages, KV, R2, D1, and other Cloudflare services using the `wrangler` CLI.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Deploy and manage Cloudflare Workers, Pages, KV, R2, D1, and other Cloudflare services using the `wrangler` CLI.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
SOC 職業分類に基づく
The philosophy and practical benefits of agent fungibility in multi-agent software development. Why homogeneous, interchangeable agents outperform specialized role-based systems at scale.
Jeffrey Emanuel's multi-agent implementation workflow using NTM, Agent Mail, Beads, and BV. The execution phase that follows planning and bead creation. Includes exact prompts used.
Named Tmux Manager - Multi-agent orchestration for Claude Code, Codex, and Gemini in tiled tmux panes. Visual dashboards, command palette, context rotation, robot mode API, work assignment, safety system. Go CLI.
MCP Agent Mail - Mail-like coordination layer for multi-agent workflows. Identities, inbox/outbox, file reservations, contact policies, threaded messaging, pre-commit guard, Human Overseer, static exports, disaster recovery. Git+SQLite backed. Python/FastMCP.
Converting markdown plans into beads (tasks with dependencies) and polishing them until they're implementation-ready. The bridge between planning and agent swarm execution. Includes exact prompts used.
Beads Viewer - Graph-aware triage engine for Beads projects. Computes PageRank, betweenness, critical path, and cycles. Use --robot-* flags for AI agents.
| name | wrangler |
| description | Deploy and manage Cloudflare Workers, Pages, KV, R2, D1, and other Cloudflare services using the `wrangler` CLI. |
Use the wrangler CLI to manage Cloudflare Workers and related services.
List deployed workers:
wrangler deployments list
Deploy a worker:
wrangler deploy
Tail live logs from a worker:
wrangler tail <worker-name>
Run worker locally:
wrangler dev
List KV namespaces:
wrangler kv namespace list
List 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>
List R2 buckets:
wrangler r2 bucket list
List objects in a bucket:
wrangler r2 object list <bucket-name>
Upload a file:
wrangler r2 object put <bucket-name>/<key> --file <local-path>
List D1 databases:
wrangler d1 list
Execute SQL query:
wrangler d1 execute <database-name> --command "SELECT * FROM users LIMIT 10"
Run migrations:
wrangler d1 migrations apply <database-name>
List Pages projects:
wrangler pages project list
Deploy a directory to Pages:
wrangler pages deploy <directory> --project-name <project>
Set a secret:
echo "secret-value" | wrangler secret put <SECRET_NAME>
List secrets:
wrangler secret list
Check current authentication:
wrangler whoami
Login (opens browser):
wrangler login