7.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
| name | heap |
| description | Analyze user behavior via Heap API. Query events, users, and funnels. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/heap |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/heap |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
261 BSKILL.md
1.0 KBSKILL.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"}}'
Query API
curl "https://heapanalytics.com/api/partner/v1/events?app_id=$HEAP_APP_ID" \
-H "Authorization: Bearer $HEAP_API_KEY"
Links
- Dashboard: https://heapanalytics.com
- Docs: https://developers.heap.io
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.
