# Send Amplitude to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- Download the package from Yavira.
- Extract it into a folder your agent can access.
- Paste one of the prompts below and point your agent at the extracted folder.
## Suggested prompts
### New install

```text
I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.
```
### Upgrade existing

```text
I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "amplitude",
    "name": "Amplitude",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/aiwithabidi/amplitude",
    "canonicalUrl": "https://clawhub.ai/aiwithabidi/amplitude",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/amplitude",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=amplitude",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md",
      "scripts/amplitude.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "amplitude",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-28T23:53:38.657Z",
      "expiresAt": "2026-05-05T23:53:38.657Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=amplitude",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=amplitude",
        "contentDisposition": "attachment; filename=\"amplitude-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "amplitude"
      },
      "scope": "item",
      "summary": "Item download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this item.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/amplitude"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/amplitude",
    "downloadUrl": "https://openagent3.xyz/downloads/amplitude",
    "agentUrl": "https://openagent3.xyz/skills/amplitude/agent",
    "manifestUrl": "https://openagent3.xyz/skills/amplitude/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/amplitude/agent.md"
  }
}
```
## Documentation

### 📉 Amplitude

Amplitude product analytics — track events, analyze user behavior, run cohort analysis, manage user properties, and query funnel/retention data via the Amplitude API.

### Features

Event tracking — log user events with properties
User analytics — active users, sessions, engagement
Funnel analysis — conversion through event sequences
Retention analysis — user return rates over time
Cohort management — create and manage user cohorts
User properties — set and query user attributes
Revenue analytics — LTV, ARPU, revenue tracking
Segmentation — query by properties and events
Event segmentation — event counts and breakdowns
Dashboard export — export chart data

### Requirements

VariableRequiredDescriptionAMPLITUDE_API_KEY✅API key/token for AmplitudeAMPLITUDE_SECRET_KEY✅Amplitude secret key for Export/Dashboard APIs

### Quick Start

# Track an event
python3 {baseDir}/scripts/amplitude.py track '{"user_id":"user123","event_type":"purchase","event_properties":{"amount":29.99}}'

# Track batch events
python3 {baseDir}/scripts/amplitude.py track-batch events.json

# Set user properties
python3 {baseDir}/scripts/amplitude.py identify '{"user_id":"user123","user_properties":{"plan":"pro","company":"Acme"}}'

# Get active user counts
python3 {baseDir}/scripts/amplitude.py active-users --start 2026-01-01 --end 2026-02-01

### track

Track an event.

python3 {baseDir}/scripts/amplitude.py track '{"user_id":"user123","event_type":"purchase","event_properties":{"amount":29.99}}'

### track-batch

Track batch events.

python3 {baseDir}/scripts/amplitude.py track-batch events.json

### identify

Set user properties.

python3 {baseDir}/scripts/amplitude.py identify '{"user_id":"user123","user_properties":{"plan":"pro","company":"Acme"}}'

### active-users

Get active user counts.

python3 {baseDir}/scripts/amplitude.py active-users --start 2026-01-01 --end 2026-02-01

### events

Get event data.

python3 {baseDir}/scripts/amplitude.py events --start 2026-01-01 --end 2026-02-01 --event purchase

### funnel

Run funnel analysis.

python3 {baseDir}/scripts/amplitude.py funnel '{"events":[{"event_type":"page_view"},{"event_type":"signup"},{"event_type":"purchase"}]}' --start 2026-01-01 --end 2026-02-01

### retention

Retention analysis.

python3 {baseDir}/scripts/amplitude.py retention --start 2026-01-01 --end 2026-02-01

### cohorts

List cohorts.

python3 {baseDir}/scripts/amplitude.py cohorts

### cohort-get

Get cohort details.

python3 {baseDir}/scripts/amplitude.py cohort-get abc123

### revenue

Revenue analysis.

python3 {baseDir}/scripts/amplitude.py revenue --start 2026-01-01 --end 2026-02-01

### user-search

Search for a user.

python3 {baseDir}/scripts/amplitude.py user-search "user@example.com"

### user-activity

Get user activity.

python3 {baseDir}/scripts/amplitude.py user-activity user123

### segments

Event segmentation query.

python3 {baseDir}/scripts/amplitude.py segments --event purchase --group-by platform --start 2026-01-01 --end 2026-02-01

### Output Format

All commands output JSON by default. Add --human for readable formatted output.

# JSON (default, for programmatic use)
python3 {baseDir}/scripts/amplitude.py track --limit 5

# Human-readable
python3 {baseDir}/scripts/amplitude.py track --limit 5 --human

### Script Reference

ScriptDescription{baseDir}/scripts/amplitude.pyMain CLI — all Amplitude operations

### Data Policy

This skill never stores data locally. All requests go directly to the Amplitude API and results are returned to stdout. Your data stays on Amplitude servers.

### Credits

Built by M. Abidi | agxntsix.ai
YouTube | GitHub
Part of the AgxntSix Skill Suite for OpenClaw agents.

📅 Need help setting up OpenClaw for your business? Book a free consultation
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: aiwithabidi
- Version: 1.0.0
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-04-28T23:53:38.657Z
- Expires at: 2026-05-05T23:53:38.657Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/amplitude)
- [Send to Agent page](https://openagent3.xyz/skills/amplitude/agent)
- [JSON manifest](https://openagent3.xyz/skills/amplitude/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/amplitude/agent.md)
- [Download page](https://openagent3.xyz/downloads/amplitude)