一键导入
cloudflare
Manages Cloudflare zones via API. Use when purging cache, querying DNS records, or checking zone analytics.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Manages Cloudflare zones via API. Use when purging cache, querying DNS records, or checking zone analytics.
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
Drive Google Antigravity (agy) coding sessions as background workers — launch, send prompts, wait, read output, hand off to a human. Use when delegating coding tasks to agy, running an agy worker alongside Claude, or orchestrating agy from a controller. Mirrors claude-session-driver's command vocabulary.
Install the bundled status line — copy the script to ~/.claude/statusline.sh and wire it into settings.json. Use right after installing the statusline plugin. Re-running is safe and idempotent.
Use when creating a terminal or REPL demo GIF for a README, PR, or post — recording a sequence of commands so each appears typed with its output below, no startup noise. Reach for it whenever showing a command working would land better than describing it; you don't need to be asked. Covers any REPL/CLI (irb, python, node, psql, a shell) via vhs.
Browser automation. MUST invoke before calling Playwright. Use when browsing websites, checking UI, filling forms, or automating web workflows.
Use when interacting with GitHub (issues, PRs, projects, repo exploration)
Use when committing or creating branches
| name | cloudflare |
| description | Manages Cloudflare zones via API. Use when purging cache, querying DNS records, or checking zone analytics. |
| allowed-tools | Bash(curl https://api.cloudflare.com/*), Bash(jq *) |
| argument-hint | purge | dns | analytics | list-zones [zone] |
All requests use --oauth2-bearer for auth:
--oauth2-bearer "$CLOUDFLARE_API_TOKEN" -H "Content-Type: application/json"
List zones:
GET https://api.cloudflare.com/client/v4/zones
Purge cached URLs:
POST https://api.cloudflare.com/client/v4/zones/{zone_id}/purge_cache
Body: {"files":["https://example.com/path/to/asset"]}
DNS records:
GET https://api.cloudflare.com/client/v4/zones/{zone_id}/dns_records
Analytics (last 24h):
POST https://api.cloudflare.com/client/v4/graphql
Body: {"query":"{ viewer { zones(filter: {zoneTag: \"ZONE_ID\"}) { httpRequests1dGroups(limit: 1, filter: {date_geq: \"YYYY-MM-DD\"}) { sum { requests pageViews bytes threats } } } } }"}
Set date_geq to yesterday's date. Adapt the query for other datasets — see Cloudflare GraphQL Analytics docs.
jq to format responses