소스 정보
- 저장소
- Dev-Toolbelt/dev-team-agents
- 최근 소스 활동
- 2026년 5월 13일 15:10
- 감지된 SKILL.md 언어
- 영어
- 스타
- 4
- 포크
- 0
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/Dev-Toolbelt/dev-team-agents --skill cloudflare명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | cloudflare |
| description | Cloudflare — DNS, Workers, Pages, Tunnels, WAF, R2, KV. |
Before any Cloudflare task, instruct the user to provide the required credentials securely.
| Task | Required credentials |
|---|---|
| DNS changes | API Token with Zone:DNS:Edit scope |
| Workers deploy | API Token with Account:Workers Scripts:Edit scope |
| Pages deploy | API Token with Account:Cloudflare Pages:Edit scope |
| Tunnel setup | API Token with Account:Cloudflare Tunnel:Edit scope |
| Zero Trust / Access | API Token with Account:Access:Edit scope |
| WAF / Rate Limiting | API Token with Zone:Firewall Services:Edit scope |
| R2 operations | API Token with Account:Workers R2 Storage:Edit scope |
| KV operations | API Token with Account:Workers KV Storage:Edit scope |
Always request scoped API Tokens — never the Global API Key. Set TTL and IP restrictions where practical. Store as $CLOUDFLARE_API_TOKEN (+ $CLOUDFLARE_ACCOUNT_ID and $CLOUDFLARE_ZONE_ID for zone-level operations).
| Signal | Service |
|---|---|
wrangler.toml | Workers (and/or Pages) |
pages.dev subdomain or Pages project | Pages |
cloudflared binary or tunnel config | Tunnels |
.sentryclirc mentions Cloudflare | Integrated Workers |
| Zone / DNS config in CI | DNS management |
curl -s -X GET "https://api.cloudflare.com/client/v4/zones" \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN" | jq '.result[] | {name, id}'
Workers: define name, main, compatibility_date in wrangler.toml. Secrets via wrangler secret put — never in wrangler.toml.
Pages: wrangler pages deploy dist/ --project-name=my-project. CI via cloudflare/pages-action@v1.
DNS: "proxied": true activates CDN/WAF; "proxied": false is pure DNS.
KV: globally replicated, eventually consistent. Use for config and feature flags — not for strongly consistent data.
R2: S3-compatible, no egress fees. S3 SDK compatible via https://<ACCOUNT_ID>.r2.cloudflarestorage.com.
Load references/workers.md for: full wrangler.toml templates, deploy commands, KV/R2/Durable Objects/Service bindings, Zero Trust Access setup.
Load references/dns-and-pages.md for: DNS CRUD API examples, Pages deploy and CI/CD, custom domains, Tunnels setup, WAF rules, rate limiting, cache rules.
| Symptom | Where to look |
|---|---|
| DNS not resolving | Dashboard → DNS → confirm record exists and TTL propagated |
| SSL error | Dashboard → SSL/TLS → check mode (Full vs Full Strict) |
| Worker not updating | wrangler tail for live logs; check deployment status |
| Tunnel unreachable | cloudflared tunnel info <name>; check service health |
| Unexpected 403/block | Dashboard → Security → Events (WAF log) |
| Cache not working | Check CF-Cache-Status response header; review Cache Rules |
| Rate limit false positives | Switch to simulate mode; review Security → Events |
.env excluded from git; CLOUDFLARE_API_TOKEN referenced as env varwrangler secret put — not in wrangler.tomlproxied settingsimulate mode before enforcing