# Send Geomanic 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. Then review README.md for any prerequisites, environment setup, or post-install checks. 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. Then review README.md for any prerequisites, environment setup, or post-install checks. Summarize what changed and any follow-up checks I should run.
```
## Machine-readable fields
```json
{
  "schemaVersion": "1.0",
  "item": {
    "slug": "geomanic",
    "name": "Geomanic",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/weltspion/geomanic",
    "canonicalUrl": "https://clawhub.ai/weltspion/geomanic",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/geomanic",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=geomanic",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "geomanic",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T13:54:56.449Z",
      "expiresAt": "2026-05-06T13:54:56.449Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=geomanic",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=geomanic",
        "contentDisposition": "attachment; filename=\"geomanic-2.0.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "geomanic"
      },
      "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/geomanic"
    },
    "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/geomanic",
    "downloadUrl": "https://openagent3.xyz/downloads/geomanic",
    "agentUrl": "https://openagent3.xyz/skills/geomanic/agent",
    "manifestUrl": "https://openagent3.xyz/skills/geomanic/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/geomanic/agent.md"
  }
}
```
## Documentation

### Geomanic Skill

This skill connects to the Geomanic MCP API to query travel statistics, manage waypoints, and analyze journeys.

### Authentication

The API key is stored in the environment variable GEOMANIC_TOKEN. All requests must include it as a Bearer token.

### How to call the API

Use curl via the exec tool to send JSON-RPC requests to https://geomanic.com/api/v1/mcp:

curl -s -X POST https://geomanic.com/api/v1/mcp \\
  -H "Content-Type: application/json" \\
  -H "Authorization: Bearer $GEOMANIC_TOKEN" \\
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"TOOL_NAME","arguments":{...}}}'

### get_statistics

Get aggregated travel statistics for a time period. Returns total distance (km), average/max speed (km/h), altitude, waypoint count, active days, and country breakdown with full/part days.

Required parameters: from (ISO 8601), to (ISO 8601).
Optional: suppress_flights (boolean, default true).

Example:

curl -s -X POST https://geomanic.com/api/v1/mcp \\
  -H "Content-Type: application/json" \\
  -H "Authorization: Bearer $GEOMANIC_TOKEN" \\
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_statistics","arguments":{"from":"2026-02-22T00:00:00Z","to":"2026-02-22T23:59:59Z"}}}'

### get_date_range

Get the earliest and latest waypoint dates for the user. No parameters required.

curl -s -X POST https://geomanic.com/api/v1/mcp \\
  -H "Content-Type: application/json" \\
  -H "Authorization: Bearer $GEOMANIC_TOKEN" \\
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_date_range","arguments":{}}}'

### list_waypoints

List waypoints with optional time range, pagination, and sorting.

Optional parameters: from, to (ISO 8601), limit (default 50, max 200), offset (default 0), order ("asc" or "desc", default "desc").

curl -s -X POST https://geomanic.com/api/v1/mcp \\
  -H "Content-Type: application/json" \\
  -H "Authorization: Bearer $GEOMANIC_TOKEN" \\
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"list_waypoints","arguments":{"from":"2026-02-22T00:00:00Z","to":"2026-02-22T23:59:59Z","limit":10}}}'

### get_waypoint

Get a single waypoint by UUID.

Required: id (string, UUID).

### create_waypoint

Create a new GPS waypoint.

Required: timestamp_utc (ISO 8601), latitude (number), longitude (number).
Optional: speed_kmh, altitude, heading_deg, device_id.

### update_waypoint

Update an existing waypoint by UUID.

Required: id (string, UUID).
Optional: latitude, longitude, speed_kmh, altitude, heading_deg, country_iso, place, device_id.

### delete_waypoint

Delete a waypoint by UUID.

Required: id (string, UUID).

### Important notes

All dates must be in ISO 8601 format with timezone (use UTC with Z suffix).
For "today" queries, use the current date with T00:00:00Z to T23:59:59Z.
The response is JSON-RPC. The actual data is inside result.content[0].text as a JSON string.
Distance is in kilometers, speed in km/h, altitude in meters.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: weltspion
- Version: 2.0.2
## 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-29T13:54:56.449Z
- Expires at: 2026-05-06T13:54:56.449Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/geomanic)
- [Send to Agent page](https://openagent3.xyz/skills/geomanic/agent)
- [JSON manifest](https://openagent3.xyz/skills/geomanic/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/geomanic/agent.md)
- [Download page](https://openagent3.xyz/downloads/geomanic)