skills$openclaw/hotjar
mrgoodb8.5k

by mrgoodb

hotjar – OpenClaw Skill

hotjar is an OpenClaw Skills integration for data analytics workflows. Access Hotjar recordings and heatmaps via API. Understand user behavior on your site.

8.5k stars8.3k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

namehotjar
descriptionAccess Hotjar recordings and heatmaps via API. Understand user behavior on your site. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/hotjar
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/hotjar
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains hotjar in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
265 B
SKILL.md
1.0 KB
SKILL.md

name: hotjar description: Access Hotjar recordings and heatmaps via API. Understand user behavior on your site. metadata: {"clawdbot":{"emoji":"🔥","requires":{"env":["HOTJAR_API_KEY","HOTJAR_SITE_ID"]}}}

Hotjar

Behavior analytics.

Environment

export HOTJAR_API_KEY="xxxxxxxxxx"
export HOTJAR_SITE_ID="xxxxxxxxxx"

List Recordings

curl "https://api.hotjar.com/v1/sites/$HOTJAR_SITE_ID/recordings" \
  -H "Authorization: Bearer $HOTJAR_API_KEY"

Get Recording

curl "https://api.hotjar.com/v1/sites/$HOTJAR_SITE_ID/recordings/{recordingId}" \
  -H "Authorization: Bearer $HOTJAR_API_KEY"

List Heatmaps

curl "https://api.hotjar.com/v1/sites/$HOTJAR_SITE_ID/heatmaps" \
  -H "Authorization: Bearer $HOTJAR_API_KEY"
curl "https://api.hotjar.com/v1/sites/$HOTJAR_SITE_ID/surveys" \
  -H "Authorization: Bearer $HOTJAR_API_KEY"
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install hotjar?

Run openclaw add @mrgoodb/hotjar in your terminal. This installs hotjar into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/mrgoodb/hotjar. Review commits and README documentation before installing.