Collection of agent skills for SLICC and Tessl-compatible runtimes — productivity, creative, document, and integration skills.
76
96%
Does it follow best practices?
Run evals on this skill
Adds up to 20 points to the overall score
View guide
High
Do not use without reviewing
CLI tool for querying Cloudflare's GraphQL Analytics API for a zone you own.
Uses the active dash.cloudflare.com browser tab to issue same-origin
fetch calls, so it inherits the user's logged-in session — no
CLOUDFLARE_API_TOKEN required.
https://dash.cloudflare.com in any tab, orwrangler open and complete the login if prompted.# List zones the current dash session can see
wrangler zones
# Quick traffic snapshot for the last N hours (default: 3h)
wrangler status sliccy.com
wrangler status sliccy.com --hours=24
# Hourly time-series of requests / pageViews / uniques / threats
wrangler timeseries sliccy.com --hours=72
# Status-code breakdown per hour (great for spotting 404 storms)
wrangler statuscodes sliccy.com --hours=24
# Top URL paths in a window, sorted by sampled request count
wrangler top-paths sliccy.com --hours=6 --limit=30
# Top user agents in a window
wrangler top-uas sliccy.com --hours=6 --limit=20
# Top countries in a window
wrangler top-countries sliccy.com --hours=24
# Free-form GraphQL — useful for one-off queries
wrangler query --zone=sliccy.com --file=/tmp/q.graphql
echo '{ viewer { zones { httpRequests1hGroups(limit:1, filter:{...}){ count } } } }' | wrangler query --zone=sliccy.com| Command | Purpose |
|---|---|
open | Open or focus the Cloudflare dashboard tab |
zones | List zones reachable by the current session |
status <zone> | One-page summary: total requests, status mix, top countries, top paths |
timeseries <zone> | Hourly requests / pageViews / uniques / threats |
statuscodes <zone> | Hourly breakdown by edgeResponseStatus |
top-paths <zone> | Most-requested URL paths (sampled) |
top-uas <zone> | Most-common user agents (sampled) |
top-countries <zone> | Top source countries by request count |
query | Execute an arbitrary GraphQL query |
| Flag | Meaning | Default |
|---|---|---|
--hours=N | Window size in hours, ending now | 3 |
--limit=N | Max rows returned for top-* | 25 |
| `--zone=<name | id>` | Zone for query. Accepts zone name or 32-char zone ID |
--tab=<targetId> | Override dashboard tab. Default: auto-pick dash.cloudflare.com | |
--json | Emit raw JSON instead of formatted output | off |
POST /api/v4/graphql on dash.cloudflare.com, same-origin
fetch with credentials: 'include'.eval-file against the Cloudflare tab, which
serializes the GraphQL response and saves it to a temp file the shell
script then parses.httpRequests1hGroups queries at 3 days
and reject some dimensions (clientRefererHost, botManagementVerifiedBot).
The CLI auto-clamps the window to 3 days for free zones and sticks to
free-tier-allowed dimensions.httpRequestsAdaptiveGroups (used by top-paths / top-uas) returns a
sampled view. Counts are not absolute — they are proportional. For absolute
hourly totals use timeseries (httpRequests1hGroups), which is unsampled.
Combining both is the right move for incident investigation:
timeseries to confirm a spike exists and locate the start hour.statuscodes to see whether it's real users (mostly 200) or a scan (mostly
404 / 301).top-paths and top-uas in a narrow window around the spike to identify
the actor and intent.httpRequests1hGroups. Wider
ranges return a quota error.clientRefererHost is gated to paid plans. This skill avoids it by default.botManagementVerifiedBot, clientIPClass)
may not be available on free plans; the CLI degrades gracefully.dash.cloudflare.com is not open and authenticated,
every command fails. Run wrangler open first.CLOUDFLARE_API_TOKEN env vars — this skill ignores them.
Tokens with Zone:Analytics:Read are a fine alternative path but a separate tool..tessl-plugin
skills
aem
aem-edge-functions
references
ai-writing-detector
references
apple-music
references
bluebubbles
cloudflare
concur
fluffyjaws
github
gmail
references
icloud
references
mixtape
references
monday
oryx
outlook
pm-prd
pptx
pptx2pdf
presentations
review
save-the-cat
servicenow
references
strava
strudel-music
swarm
references
teams
references
wavespeed
xai-grok