Agent skill
heap
Analyze user behavior via Heap API. Query events, users, and funnels.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/heap
Metadata
Additional technical details for this skill
- clawdbot
-
{ "emoji": "\ud83d\udcc8", "requires": { "env": [ "HEAP_APP_ID", "HEAP_API_KEY" ] } }
SKILL.md
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
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?