← Back to Skills Marketplace
djedi

Clicky Analytics

by Dustin Davis · GitHub ↗ · v1.2.0 · MIT-0
cross-platform ✓ Security Clean
229
Downloads
0
Stars
0
Active Installs
3
Versions
Install in OpenClaw
/install clicky-analytics
Description
Fetch website analytics from Clicky (clicky.com) via their REST API. Use when the user asks about website traffic, visitors, pageviews, top pages, bounce rat...
README (SKILL.md)

Clicky Analytics

Fetch analytics from the Clicky API. Supports multiple sites via environment variables.

Setup

Store site credentials as environment variables. Use the naming convention CLICKY_\x3CNAME>_SITE_ID and CLICKY_\x3CNAME>_SITEKEY:

# In ~/.openclaw/.env or your shell profile
CLICKY_ENVELOPEBUDGET_SITE_ID=101427673
CLICKY_ENVELOPEBUDGET_SITEKEY=c287a01cc00f70cb
CLICKY_ZAPYETI_SITE_ID=99999999
CLICKY_ZAPYETI_SITEKEY=abc123def456

For a single default site, use:

CLICKY_SITE_ID=101427673
CLICKY_SITEKEY=c287a01cc00f70cb

Usage

# Named site (reads CLICKY_\x3CNAME>_SITE_ID and CLICKY_\x3CNAME>_SITEKEY env vars)
scripts/clicky.sh envelopebudget visitors,actions-pageviews

# Default site (reads CLICKY_SITE_ID and CLICKY_SITEKEY env vars)
scripts/clicky.sh default visitors,actions-pageviews

# With options
scripts/clicky.sh envelopebudget pages --date last-7-days --limit 20
scripts/clicky.sh envelopebudget visitors --date 2026-03-01,2026-03-13 --daily

Options

  • --date DATE — today, yesterday, last-7-days, last-30-days, YYYY-MM-DD, or range YYYY-MM-DD,YYYY-MM-DD
  • --limit N — max results (default 50, max 1000)
  • --daily — break results down by day
  • --page N — paginate through results

Combine types in one request

Use commas: visitors,visitors-unique,actions-pageviews,bounce-rate,time-average-pretty

Common Reports

Report Types
Overview visitors,visitors-unique,actions-pageviews,bounce-rate,time-average-pretty
Content pages,pages-entrance,pages-exit
Traffic traffic-sources,links-domains,searches,countries
SEO searches,searches-rankings,searches-keywords

API Reference

See references/api-types.md for all available data types, date formats, and limits.

Usage Guidance
This skill appears to do exactly what it says: call Clicky's API and return analytics. Before installing, confirm you trust Clicky and are comfortable storing the sitekey in an environment variable or ~/.openclaw/.env (these files can expose secrets if your machine or backups are compromised). Note the script places the sitekey in the URL query string (which may be logged by proxies or web servers); if Clicky offers an alternative using Authorization headers, prefer that for better secrecy. Also avoid setting overly permissive or widely-shared environment variables — use the named CLICKY_<NAME>_* pattern for per-site isolation and ensure no other unrelated secrets are stored under those names.
Capability Analysis
Type: OpenClaw Skill Name: clicky-analytics Version: 1.2.0 The clicky-analytics skill is a legitimate tool designed to fetch website statistics from the Clicky API. It uses a bash script (scripts/clicky.sh) to wrap curl commands, correctly handling credentials via environment variables and supporting multiple site configurations. The implementation is straightforward, lacks obfuscation, and contains no evidence of malicious intent, data exfiltration, or prompt-injection vulnerabilities.
Capability Assessment
Purpose & Capability
Name/description match the implementation. The script and SKILL.md implement calls to api.clicky.com and require CLICKY_SITE_ID/CLICKY_SITEKEY (and named variants), which are the expected credentials for the Clicky API.
Instruction Scope
Runtime instructions and the included script stick to calling the Clicky API and returning JSON. One noteworthy behavior: the site key is included in the query string of the API URL (sitekey parameter), which is expected for this API but means the key may appear in logs or proxy traces. SKILL.md also suggests storing credentials in shell/profile files; users should treat those files as sensitive.
Install Mechanism
No install spec; the skill is instruction-only (plus a small shell script). No downloads, package installs, or archive extraction are performed.
Credentials
Requested environment variables are limited to CLICKY_SITE_ID / CLICKY_SITEKEY (and named variants like CLICKY_<NAME>_SITEKEY), which are directly needed. The primary credential is appropriately the sitekey. There are no unrelated secret/env requests.
Persistence & Privilege
The skill is not always-enabled and does not request elevated or persistent platform privileges. It does not modify other skills or system-wide settings.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install clicky-analytics
  3. After installation, invoke the skill by name or use /clicky-analytics
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.2.0
Removed unused python3 from requires.bins. Declared CLICKY_SITE_ID and CLICKY_SITEKEY in requires.env. Added primaryEnv for dashboard key input.
v1.1.0
Security fixes: credentials via env vars (not JSON file), declared curl/python3 as required bins, removed sites.json credential storage.
v1.0.0
Initial release — fetch website analytics from Clicky API. Multi-site support, bash script, all data types.
Metadata
Slug clicky-analytics
Version 1.2.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 3
Frequently Asked Questions

What is Clicky Analytics?

Fetch website analytics from Clicky (clicky.com) via their REST API. Use when the user asks about website traffic, visitors, pageviews, top pages, bounce rat... It is an AI Agent Skill for Claude Code / OpenClaw, with 229 downloads so far.

How do I install Clicky Analytics?

Run "/install clicky-analytics" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Clicky Analytics free?

Yes, Clicky Analytics is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Clicky Analytics support?

Clicky Analytics is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Clicky Analytics?

It is built and maintained by Dustin Davis (@djedi); the current version is v1.2.0.

💬 Comments