一键导入
cloudflare
Cloudflare integration for DNS, CDN, WAF, edge diagnostics, and remediation with zone management, analytics, security events, and cache control
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
菜单
Cloudflare integration for DNS, CDN, WAF, edge diagnostics, and remediation with zone management, analytics, security events, and cache control
用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
基于 SOC 职业分类
GitHub code repository integration for investigating code changes, deployments, commits, PRs, and suggesting fixes during RCA
CloudBees CI integration for investigating builds, deployments, pipeline stages, and test results during RCA
CloudBees Operations Center integration for cross-controller deployment visibility and feature flag correlation during RCA
Bitbucket code repository integration for managing repos, branches, PRs, issues, and CI/CD pipelines
On-prem Kubernetes cluster integration for running kubectl commands via Aurora agent relay or uploaded kubeconfig
Fly.io integration for application monitoring, machine lifecycle management, metrics, logs, and incident remediation
| name | cloudflare |
| id | cloudflare |
| description | Cloudflare integration for DNS, CDN, WAF, edge diagnostics, and remediation with zone management, analytics, security events, and cache control |
| category | cloud_provider |
| connection_check | {"method":"is_connected_function","module":"chat.backend.agent.tools.cloudflare_tool","function":"is_cloudflare_connected"} |
| tools | ["query_cloudflare","cloudflare_list_zones","cloudflare_action"] |
| index | Cloudflare — DNS, CDN, WAF, analytics, security events, cache/firewall remediation |
| rca_priority | 10 |
| allowed-tools | query_cloudflare, cloudflare_list_zones, cloudflare_action |
| metadata | {"author":"aurora","version":"1.0"} |
Cloudflare is connected for DNS, CDN, WAF, and edge diagnostics with full remediation capabilities.
cloud_exec('cloudflare', ...) -- there is no Cloudflare CLI connector.query_cloudflare, cloudflare_list_zones, and cloudflare_action tools instead.cloudflare_list_zones() -- discover all zones with IDs, names, and status.query_cloudflare(resource_type='dns_records', zone_id='...') -- list A, AAAA, CNAME, MX, TXT records.query_cloudflare(resource_type='analytics', zone_id='...') -- traffic, bandwidth, threats, HTTP status codes, content types, HTTP versions, SSL protocols, IP classification.
since (e.g. '-60' for last hour, or ISO-8601) and until (ISO-8601) to control the time window.limit=1 to force a single aggregate covering the entire window.query_cloudflare(resource_type='firewall_events', zone_id='...') -- recent WAF blocks, challenges, JS challenges.query_cloudflare(resource_type='firewall_rules', zone_id='...') -- active firewall rules and expressions.query_cloudflare(resource_type='rate_limits', zone_id='...') -- rate limiting rules (thresholds, actions, URL patterns).query_cloudflare(resource_type='zone_settings', zone_id='...') -- ALL zone settings (security level, caching, dev mode, WAF, TLS version, minification, etc.).query_cloudflare(resource_type='page_rules', zone_id='...') -- URL-based redirects, forwarding, cache overrides.query_cloudflare(resource_type='workers') -- list Cloudflare Workers scripts.query_cloudflare(resource_type='load_balancers', zone_id='...') -- LB config, pools, failover.query_cloudflare(resource_type='ssl', zone_id='...') -- TLS mode (off/flexible/full/strict) and cert status.query_cloudflare(resource_type='healthchecks', zone_id='...') -- origin health monitors.cloudflare_action)All remediation uses one tool: cloudflare_action(action_type='...', zone_id='...', ...)
cloudflare_action(action_type='purge_cache', zone_id='...', files=['https://...']) -- clear cached content.
files to purge everything (use with caution -- spikes origin load).cloudflare_action(action_type='security_level', zone_id='...', value='under_attack') -- enable JS challenge for all visitors.
cloudflare_action(action_type='development_mode', zone_id='...', value='on') -- bypass cache entirely.
cloudflare_action(action_type='dns_update', zone_id='...', record_id='...', content='1.2.3.4') -- change a DNS record.
query_cloudflare(resource_type='dns_records').proxied (bool) and ttl (int, 1=auto).cloudflare_action(action_type='toggle_firewall_rule', zone_id='...', rule_id='...', paused=True) -- disable a rule.
query_cloudflare(resource_type='firewall_rules').cloudflare_list_zones() to discover zone IDs.zone_settings for current security level, dev mode, caching config.analytics for traffic spikes, elevated error rates (5xx), or threat surges.firewall_events if traffic is being blocked unexpectedly.firewall_rules and rate_limits if legitimate traffic appears throttled.dns_records if a domain resolution issue is suspected.ssl if TLS handshake errors are reported.healthchecks and load_balancers if origin availability is degraded.page_rules if redirects or caching overrides are misbehaving.cloudflare_list_zones() instead.since parameter for custom ranges.