{
  "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": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/geomanic",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=geomanic",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "README.md",
      "SKILL.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "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."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "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."
        },
        {
          "label": "Upgrade existing",
          "body": "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."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "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."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/geomanic",
    "agentPageUrl": "https://openagent3.xyz/skills/geomanic/agent",
    "manifestUrl": "https://openagent3.xyz/skills/geomanic/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/geomanic/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "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."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "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."
      },
      {
        "label": "Upgrade existing",
        "body": "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."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Geomanic Skill",
        "body": "This skill connects to the Geomanic MCP API to query travel statistics, manage waypoints, and analyze journeys."
      },
      {
        "title": "Authentication",
        "body": "The API key is stored in the environment variable GEOMANIC_TOKEN. All requests must include it as a Bearer token."
      },
      {
        "title": "How to call the API",
        "body": "Use curl via the exec tool to send JSON-RPC requests to https://geomanic.com/api/v1/mcp:\n\ncurl -s -X POST https://geomanic.com/api/v1/mcp \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer $GEOMANIC_TOKEN\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"tools/call\",\"params\":{\"name\":\"TOOL_NAME\",\"arguments\":{...}}}'"
      },
      {
        "title": "get_statistics",
        "body": "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.\n\nRequired parameters: from (ISO 8601), to (ISO 8601).\nOptional: suppress_flights (boolean, default true).\n\nExample:\n\ncurl -s -X POST https://geomanic.com/api/v1/mcp \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer $GEOMANIC_TOKEN\" \\\n  -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\"}}}'"
      },
      {
        "title": "get_date_range",
        "body": "Get the earliest and latest waypoint dates for the user. No parameters required.\n\ncurl -s -X POST https://geomanic.com/api/v1/mcp \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer $GEOMANIC_TOKEN\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"tools/call\",\"params\":{\"name\":\"get_date_range\",\"arguments\":{}}}'"
      },
      {
        "title": "list_waypoints",
        "body": "List waypoints with optional time range, pagination, and sorting.\n\nOptional parameters: from, to (ISO 8601), limit (default 50, max 200), offset (default 0), order (\"asc\" or \"desc\", default \"desc\").\n\ncurl -s -X POST https://geomanic.com/api/v1/mcp \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer $GEOMANIC_TOKEN\" \\\n  -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}}}'"
      },
      {
        "title": "get_waypoint",
        "body": "Get a single waypoint by UUID.\n\nRequired: id (string, UUID)."
      },
      {
        "title": "create_waypoint",
        "body": "Create a new GPS waypoint.\n\nRequired: timestamp_utc (ISO 8601), latitude (number), longitude (number).\nOptional: speed_kmh, altitude, heading_deg, device_id."
      },
      {
        "title": "update_waypoint",
        "body": "Update an existing waypoint by UUID.\n\nRequired: id (string, UUID).\nOptional: latitude, longitude, speed_kmh, altitude, heading_deg, country_iso, place, device_id."
      },
      {
        "title": "delete_waypoint",
        "body": "Delete a waypoint by UUID.\n\nRequired: id (string, UUID)."
      },
      {
        "title": "Important notes",
        "body": "All dates must be in ISO 8601 format with timezone (use UTC with Z suffix).\nFor \"today\" queries, use the current date with T00:00:00Z to T23:59:59Z.\nThe response is JSON-RPC. The actual data is inside result.content[0].text as a JSON string.\nDistance is in kilometers, speed in km/h, altitude in meters."
      }
    ],
    "body": "Geomanic Skill\n\nThis skill connects to the Geomanic MCP API to query travel statistics, manage waypoints, and analyze journeys.\n\nAuthentication\n\nThe API key is stored in the environment variable GEOMANIC_TOKEN. All requests must include it as a Bearer token.\n\nHow to call the API\n\nUse curl via the exec tool to send JSON-RPC requests to https://geomanic.com/api/v1/mcp:\n\ncurl -s -X POST https://geomanic.com/api/v1/mcp \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer $GEOMANIC_TOKEN\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"tools/call\",\"params\":{\"name\":\"TOOL_NAME\",\"arguments\":{...}}}'\n\nAvailable tools\nget_statistics\n\nGet 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.\n\nRequired parameters: from (ISO 8601), to (ISO 8601). Optional: suppress_flights (boolean, default true).\n\nExample:\n\ncurl -s -X POST https://geomanic.com/api/v1/mcp \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer $GEOMANIC_TOKEN\" \\\n  -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\"}}}'\n\nget_date_range\n\nGet the earliest and latest waypoint dates for the user. No parameters required.\n\ncurl -s -X POST https://geomanic.com/api/v1/mcp \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer $GEOMANIC_TOKEN\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"tools/call\",\"params\":{\"name\":\"get_date_range\",\"arguments\":{}}}'\n\nlist_waypoints\n\nList waypoints with optional time range, pagination, and sorting.\n\nOptional parameters: from, to (ISO 8601), limit (default 50, max 200), offset (default 0), order (\"asc\" or \"desc\", default \"desc\").\n\ncurl -s -X POST https://geomanic.com/api/v1/mcp \\\n  -H \"Content-Type: application/json\" \\\n  -H \"Authorization: Bearer $GEOMANIC_TOKEN\" \\\n  -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}}}'\n\nget_waypoint\n\nGet a single waypoint by UUID.\n\nRequired: id (string, UUID).\n\ncreate_waypoint\n\nCreate a new GPS waypoint.\n\nRequired: timestamp_utc (ISO 8601), latitude (number), longitude (number). Optional: speed_kmh, altitude, heading_deg, device_id.\n\nupdate_waypoint\n\nUpdate an existing waypoint by UUID.\n\nRequired: id (string, UUID). Optional: latitude, longitude, speed_kmh, altitude, heading_deg, country_iso, place, device_id.\n\ndelete_waypoint\n\nDelete a waypoint by UUID.\n\nRequired: id (string, UUID).\n\nImportant notes\nAll dates must be in ISO 8601 format with timezone (use UTC with Z suffix).\nFor \"today\" queries, use the current date with T00:00:00Z to T23:59:59Z.\nThe response is JSON-RPC. The actual data is inside result.content[0].text as a JSON string.\nDistance is in kilometers, speed in km/h, altitude in meters."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/weltspion/geomanic",
    "publisherUrl": "https://clawhub.ai/weltspion/geomanic",
    "owner": "weltspion",
    "version": "2.0.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "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"
  }
}