원클릭으로
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 페이지를 검토하고 설치를 진행할 수 있습니다.
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
SOC 직업 분류 기준
| 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