New to Claude Skills? Learn how to install them →

civitai on GitHub

Cloudflare Analytics

Free

Manage Cloudflare traffic and security rules efficiently.

by civitai7.2k stars on civitai/civitai
1 views
Updated Aug 10, 2026
Get this skill

Free · Opens the source repo

What Cloudflare Analytics does

The Cloudflare Analytics skill allows developers and security professionals to query HTTP traffic analytics and manage security rules across multiple zones in Cloudflare. By utilizing this skill, users can gain insights into their web traffic, including identifying the top IPs, request paths, and user agents. Additionally, it provides a comprehensive timeline of requests, enabling users to visualize traffic patterns over time. The skill is particularly useful for those who need to analyze traffic for performance tuning or security purposes.

This skill also facilitates the management of security rules, including Custom Rules and Rate Limit Rules, across different zones. Users can export rules from one zone and port them to another, which is essential for maintaining consistent security policies when managing multiple domains. The command-line interface is straightforward, allowing users to execute commands for various analytics and rule management tasks with ease.

To use the skill, users must set up a CF_API_TOKEN in their environment, which requires specific permissions for reading analytics and editing WAF rules. The skill supports a range of commands that can be tailored with options for time frames and filtering, making it flexible for different use cases. Whether you need to investigate suspicious traffic or ensure your security rules are up to date, this skill provides the necessary tools to do so effectively.

Overall, the Cloudflare Analytics skill is ideal for developers and security engineers who require in-depth traffic analysis and robust rule management capabilities within the Cloudflare ecosystem.

When to use it

Use this skill when you need to investigate traffic patterns or manage security rules for your Cloudflare zones.

When not to use it

This skill may not be suitable for users who do not utilize Cloudflare for their web services or those who require a GUI for managing analytics and rules.

What you can build with it

Investigating Suspicious Traffic

Use the `scrape` command to analyze traffic patterns and identify potential scraping activities on your site.

Managing Security Across Multiple Zones

Utilize the `port-rules` command to copy security rules from one Cloudflare zone to another, ensuring consistent protection.

Analyzing User Agent Trends

Run the `top-agents` command to discover which user agents are most frequently accessing your web application.

How to install Cloudflare Analytics

View source

1. Install with the skills CLI

npx skills add civitai/civitai/cloudflare --agent claude-code

2. Or install it manually

Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.

Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs

Inside SKILL.md

Written by civitai

Cloudflare Analytics + Rule Management

Query Cloudflare HTTP traffic analytics and manage security rules (Custom Rules, Rate Limit Rules) across zones. The CF_API_TOKEN in .env needs Zone Analytics: Read for analytics, and Zone WAF: Edit for rule management.

Running Commands

node .claude/skills/cloudflare/query.mjs <command> [options]

Commands

CommandDescription
top-clientsTop IPs by request count
top-pathsTop request paths
top-agentsTop user agents
timelineRequests per minute timeline (bar chart)
ip <addr>Full breakdown for a specific IP (paths, UAs, statuses, geo)
scrapeFull scrape analysis — top IPs, paths, UAs + detail on high-volume IPs
bot-scoresBot score distribution
bot-clientsTop clients with low bot scores (likely bots)
firewallRecent firewall/WAF events
rate-limitsCurrent rate limit rules
waf-rulesCurrent WAF custom rules
list-zonesList all accessible zones (id, name, plan)
export-rules <zone>Dump Custom Rules + Rate Limit Rules from a zone
port-rulesCopy rules between zones (dry-run by default)

Flags

FlagDescription
--start, --fromStart time: relative (-1h, -2d, -30m), time (16:41), or ISO datetime
--end, --toEnd time (default: now)
--limitMax results (default: 20)
--pathFilter by path pattern using SQL LIKE (/api/%, /api/trpc/%)
--ipFilter by client IP
--scoreMax bot score for bot-clients (default: 10)
--source, --targetZone name or id (used by port-rules)
--phasecustom, ratelimit, or all (default) for rule commands
--outWrite export-rules output to a JSON file
--skip-disabledWhen porting, skip rules with enabled: false
--skip-hostsComma-separated list of hosts; rules referencing them are skipped
--rewrite-host FROM:TOReplace "FROM" with "TO" in rule expressions during port
--onlyComma-separated substrings; only port rules whose description matches
--pro-compatStrip Enterprise-only syntax to fit Pro/Free target zones (see below)
--applyActually write. Without this, port-rules is a dry run

Examples

# Full scrape analysis for a time window
node .claude/skills/cloudflare/query.mjs scrape --start "2026-03-24 16:41" --end "2026-03-24 19:08"

# Top IPs hitting API endpoints in the last 2 hours
node .claude/skills/cloudflare/query.mjs top-clients --start -2h --path "/api/%"

# What paths is a specific IP hitting?
node .claude/skills/cloudflare/query.mjs ip 1.2.3.4 --start -6h

# Traffic timeline for API/trpc routes
node .claude/skills/cloudflare/query.mjs timeline --start -1h --path "/api/trpc/%"

# Find likely bots (low bot score) hitting API
node .claude/skills/cloudflare/query.mjs bot-clients --start -3h --score 5 --path "/api/%"

# Top user agents on search-related paths
node .claude/skills/cloudflare/query.mjs top-agents --start -2h --path "/api/trpc/image%"

# Check current rate limit rules
node .claude/skills/cloudflare/query.mjs rate-limits

# List all zones (id, name, plan)
node .claude/skills/cloudflare/query.mjs list-zones

# Export civitai.com rules (custom + rate limit) to a file
node .claude/skills/cloudflare/query.mjs export-rules civitai.com --out com-rules.json

# Dry-run a port from civitai.com to civitai.red — preview only
node .claude/skills/cloudflare/query.mjs port-rules \
  --source civitai.com --target civitai.red \
  --skip-disabled \
  --skip-hosts api.civitai.com,metrics.civitai.com,education.civitai.com,image.civitai.com,meilisearch-v1-9.civitai.com,meilisearch-v1-6.civitai.com,meilisearch-metrics.civitai.com \
  --rewrite-host civitai.com:civitai.red \
  --pro-compat

# Same thing, but actually write it (REPLACES target rulesets wholesale)
node .claude/skills/cloudflare/query.mjs port-rules \
  --source civitai.com --target civitai.red \
  --skip-disabled \
  --skip-hosts api.civitai.com,metrics.civitai.com,education.civitai.com,image.civitai.com,meilisearch-v1-9.civitai.com,meilisearch-v1-6.civitai.com,meilisearch-metrics.civitai.com \
  --rewrite-host civitai.com:civitai.red \
  --pro-compat \
  --apply

# Port only specific rules (match by description substring)
node .claude/skills/cloudflare/query.mjs port-rules \
  --source civitai.com --target civitai.red --phase ratelimit \
  --only "Global Limit,Rate limit trpc (No Regex)" \
  --rewrite-host civitai.com:civitai.red \
  --pro-compat --apply

Porting Security Rules Between Zones

port-rules replaces the target zone's Custom Rules ruleset and/or Rate Limit Rules entrypoint with a filtered + transformed copy of the source zone's rules. It overwrites the target ruleset — existing rules on the target are wiped.

What gets ported

The Cloudflare "Security Rules" surface maps to two phase entrypoints:

PhaseUI nameFlag value
http_request_firewall_customCustom Rules--phase custom
http_ratelimitRate Limit Rules--phase ratelimit

Managed Rules, IP Access Rules, Zone Lockdown, and User Agent Blocking are not ported.

Filters

Without filters, every rule from the source is copied as-is.

  • --skip-disabled drops rules where enabled: false.
  • --skip-hosts host1,host2 drops any rule whose expression literal-matches one of the listed hosts (useful for source-only subdomains that don't exist on the target zone).
  • --only pat1,pat2 keeps only rules whose description contains one of the given substrings.
  • --rewrite-host FROM:TO rewrites "FROM""TO" inside rule expressions after the skip filter runs. Use this to point apex-host rules at the new zone (civitai.com:civitai.red).

Pro-plan / Free-plan compatibility (--pro-compat)

Cloudflare Pro zones reject several Enterprise-only rule features that are commonly used on Business/Enterprise source zones. When the target zone plan is pro or free, --pro-compat is applied automatically; otherwise pass it explicitly. Transforms:

  • IP list exclusions: and not ip.src in {…} / and ip.src in {…} clauses are stripped. Pro zones don't support ip.src in expressions in rate-limit rules.
  • Bot management checks: and not cf.bot_management.verified_bot / and cf.bot_management.verified_bot clauses are stripped (Bot Management is an Enterprise feature).
  • Rate-limit period: Pro only allows periods in [10, 15, 20, 30, 40, 45, 60] seconds. Rules with longer periods (e.g. 300s) are scaled to 60s and the requests_per_period is scaled proportionally to preserve the same req/s rate.
  • requests_to_origin: stripped (Enterprise-only).

Each transform is reported in the dry-run output as a ~ line so you can review them before applying.

Rule-count limits

Target zone plans cap the number of rules per phase. If the port exceeds the cap, Cloudflare returns exceeded the maximum number of rules in the phase X: N out of M. Common caps:

PlanCustom RulesRate Limit Rules
Free51
Pro202
Business10015
Enterprise1000+1000+

Use --only or manually trim the source rule list if you hit the cap.

Known constraints

  • ref is stripped on write so rules are re-id'd on the target. This means subsequent ports between the same two zones replace wholesale, not diff-and-merge.
  • Managed Rules, IP Access Rules, Zone Lockdown, User Agent Blocking, and legacy Firewall Rules are not ported.
  • Account-scoped custom lists (e.g. $attackers, $bandwidth_theft) work across zones in the same account with no change.

Investigation Workflow

For scraping investigations:

  1. Start broad: scrape --start ... --end ... to see top IPs, paths, and UAs
  2. Identify suspects: Look for IPs with disproportionate request counts
  3. Deep dive: ip <addr> to see what specific IP is doing
  4. Check bots: bot-clients --score 5 to find CF-detected bots
  5. Timeline: timeline --ip <addr> to see traffic pattern over time
  6. Review defenses: rate-limits and firewall to see what's in place

Frequently asked questions about Cloudflare Analytics

Similar skills