skills$openclaw/heap
mrgoodb7.3k

by mrgoodb

heap – OpenClaw Skill

heap is an OpenClaw Skills integration for data analytics workflows. Analyze user behavior via Heap API. Query events, users, and funnels.

7.3k stars6.2k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics

Skill Snapshot

nameheap
descriptionAnalyze user behavior via Heap API. Query events, users, and funnels. OpenClaw Skills integration.
ownermrgoodb
repositorymrgoodb/heap
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @mrgoodb/heap
last updatedFeb 7, 2026

Maintainer

mrgoodb

mrgoodb

Maintains heap in the OpenClaw Skills directory.

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

name: heap description: Analyze user behavior via Heap API. Query events, users, and funnels. metadata: {"clawdbot":{"emoji":"📈","requires":{"env":["HEAP_APP_ID","HEAP_API_KEY"]}}}

Heap

Product analytics.

Environment

export HEAP_APP_ID="xxxxxxxxxx"
export HEAP_API_KEY="xxxxxxxxxx"

Track Event (Server-side)

curl -X POST "https://heapanalytics.com/api/track" \
  -H "Content-Type: application/json" \
  -d '{"app_id": "'$HEAP_APP_ID'", "identity": "user@example.com", "event": "Purchase", "properties": {"amount": 99}}'

Add User Properties

curl -X POST "https://heapanalytics.com/api/add_user_properties" \
  -H "Content-Type: application/json" \
  -d '{"app_id": "'$HEAP_APP_ID'", "identity": "user@example.com", "properties": {"plan": "premium"}}'
curl "https://heapanalytics.com/api/partner/v1/events?app_id=$HEAP_APP_ID" \
  -H "Authorization: Bearer $HEAP_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 heap?

Run openclaw add @mrgoodb/heap in your terminal. This installs heap 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/heap. Review commits and README documentation before installing.