219★by mrgoodb
amplitude – OpenClaw Skill
amplitude is an OpenClaw Skills integration for data analytics workflows. Track events and analyze product usage via Amplitude API. Query user behavior, cohorts, and funnels.
219 stars5.4k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026data analytics
Skill Snapshot
| name | amplitude |
| description | Track events and analyze product usage via Amplitude API. Query user behavior, cohorts, and funnels. OpenClaw Skills integration. |
| owner | mrgoodb |
| repository | mrgoodb/amplitude |
| language | Markdown |
| license | MIT |
| topics | |
| security | L1 |
| install | openclaw add @mrgoodb/amplitude |
| last updated | Feb 7, 2026 |
Maintainer

File Explorer
2 files
.
_meta.json
271 BSKILL.md
1.6 KBSKILL.md
name: amplitude description: Track events and analyze product usage via Amplitude API. Query user behavior, cohorts, and funnels. metadata: {"clawdbot":{"emoji":"📈","requires":{"env":["AMPLITUDE_API_KEY","AMPLITUDE_SECRET_KEY"]}}}
Amplitude
Product analytics platform.
Environment
export AMPLITUDE_API_KEY="xxxxxxxxxx"
export AMPLITUDE_SECRET_KEY="xxxxxxxxxx"
Track Event (HTTP API)
curl -X POST "https://api2.amplitude.com/2/httpapi" \
-H "Content-Type: application/json" \
-d '{
"api_key": "'$AMPLITUDE_API_KEY'",
"events": [{
"user_id": "user123",
"event_type": "Button Clicked",
"event_properties": {"button_name": "signup"}
}]
}'
Batch Track Events
curl -X POST "https://api2.amplitude.com/batch" \
-H "Content-Type: application/json" \
-d '{
"api_key": "'$AMPLITUDE_API_KEY'",
"events": [
{"user_id": "user1", "event_type": "Page View"},
{"user_id": "user2", "event_type": "Page View"}
]
}'
Export Events (Dashboard API)
curl -u "$AMPLITUDE_API_KEY:$AMPLITUDE_SECRET_KEY" \
"https://amplitude.com/api/2/export?start=20240101T00&end=20240102T00"
Get User Activity
curl -u "$AMPLITUDE_API_KEY:$AMPLITUDE_SECRET_KEY" \
"https://amplitude.com/api/2/useractivity?user=user123"
Get Active Users
curl -u "$AMPLITUDE_API_KEY:$AMPLITUDE_SECRET_KEY" \
"https://amplitude.com/api/2/users/list?start=20240101&end=20240131"
Links
- Dashboard: https://analytics.amplitude.com
- Docs: https://www.docs.developers.amplitude.com
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 amplitude?
Run openclaw add @mrgoodb/amplitude in your terminal. This installs amplitude 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/amplitude. Review commits and README documentation before installing.
