{
  "schemaVersion": "1.0",
  "item": {
    "slug": "tides",
    "name": "Access global ocean tides model. Functions include tide height at a given date/time/location, tide extrema, and grid weather data.",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/hamandmore/tides",
    "canonicalUrl": "https://clawhub.ai/hamandmore/tides",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/tides",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=tides",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "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. 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. 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/tides"
    },
    "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/tides",
    "agentPageUrl": "https://openagent3.xyz/skills/tides/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tides/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tides/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. 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. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Tides JSON-RPC Access",
        "body": "Use this guide to call the deployed API directly:\n\nBase URL: https://hamandmore.net/api/harmonics/mcp\nMethod: POST\nContent-Type: application/json\nProtocol: JSON-RPC 2.0 request envelope"
      },
      {
        "title": "Authentication",
        "body": "Use one of these modes:\n\nAnonymous: no Authorization header (free tier rate limits)\nKeyed: add Authorization: Bearer <token> or Authorization: Basic <token>\nNeed higher usage tiers? Request authentication by emailing hamandmore@gmail.com.\n\nImportant:\n\nBasic here is an opaque token prefix, not RFC Basic base64 decoding.\nTokens do not need to be valid base64."
      },
      {
        "title": "JSON-RPC Envelope",
        "body": "Always send:\n\n{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 1,\n  \"method\": \"tools/list\",\n  \"params\": {}\n}\n\nid: any client correlation value\nmethod: one of initialize, tools/list, tools/call\nparams: object (required shape depends on method)"
      },
      {
        "title": "Quick Start Commands",
        "body": "Initialize:\n\ncurl -sS -X POST https://hamandmore.net/api/harmonics/mcp \\\n  -H 'content-type: application/json' \\\n  --data '{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"initialize\",\"params\":{}}'\n\nList tools:\n\ncurl -sS -X POST https://hamandmore.net/api/harmonics/mcp \\\n  -H 'content-type: application/json' \\\n  --data '{\"jsonrpc\":\"2.0\",\"id\":2,\"method\":\"tools/list\",\"params\":{}}'\n\nList tools (keyed tier):\n\ncurl -sS -X POST https://hamandmore.net/api/harmonics/mcp \\\n  -H 'content-type: application/json' \\\n  -H 'authorization: Bearer YOUR_TOKEN' \\\n  --data '{\"jsonrpc\":\"2.0\",\"id\":3,\"method\":\"tools/list\",\"params\":{}}'"
      },
      {
        "title": "Tool Call Pattern",
        "body": "All tool calls use:\n\n{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 10,\n  \"method\": \"tools/call\",\n  \"params\": {\n    \"name\": \"TOOL_NAME\",\n    \"arguments\": {}\n  }\n}"
      },
      {
        "title": "1) Current time (tides_time)",
        "body": "curl -sS -X POST https://hamandmore.net/api/harmonics/mcp \\\n  -H 'content-type: application/json' \\\n  --data '{\"jsonrpc\":\"2.0\",\"id\":10,\"method\":\"tools/call\",\"params\":{\"name\":\"tides_time\",\"arguments\":{}}}'"
      },
      {
        "title": "2) Single tide value (tides_single)",
        "body": "curl -sS -X POST https://hamandmore.net/api/harmonics/mcp \\\n  -H 'content-type: application/json' \\\n  --data '{\"jsonrpc\":\"2.0\",\"id\":11,\"method\":\"tools/call\",\"params\":{\"name\":\"tides_single\",\"arguments\":{\"latitude\":40.7128,\"longitude\":-74.0060,\"time\":\"2026-02-10T00:00:00Z\"}}}'"
      },
      {
        "title": "3) Tide extrema (tides_extrema)",
        "body": "curl -sS -X POST https://hamandmore.net/api/harmonics/mcp \\\n  -H 'content-type: application/json' \\\n  --data '{\"jsonrpc\":\"2.0\",\"id\":12,\"method\":\"tools/call\",\"params\":{\"name\":\"tides_extrema\",\"arguments\":{\"latitude\":40.7128,\"longitude\":-74.0060,\"start_time\":\"2026-02-10T00:00:00Z\",\"end_time\":\"2026-02-11T00:00:00Z\"}}}'"
      },
      {
        "title": "4) Weather points (weather_met)",
        "body": "curl -sS -X POST https://hamandmore.net/api/harmonics/mcp \\\n  -H 'content-type: application/json' \\\n  --data '{\"jsonrpc\":\"2.0\",\"id\":13,\"method\":\"tools/call\",\"params\":{\"name\":\"weather_met\",\"arguments\":{\"latitude\":40.7128,\"longitude\":-74.0060,\"start_time\":\"2026-02-10T00:00:00Z\",\"variables\":[\"wind/surface/0\",\"tmp/surface/0\"]}}}'"
      },
      {
        "title": "Response Shape",
        "body": "Successful responses include:\n\nresult.content[0].text: stringified JSON result\nresult.structuredContent: same result as an object (preferred)\n\nErrors use JSON-RPC error:\n\n-32602: invalid params\n-32601: method not found\n-32603: server/tool exception"
      }
    ],
    "body": "Tides JSON-RPC Access\n\nUse this guide to call the deployed API directly:\n\nBase URL: https://hamandmore.net/api/harmonics/mcp\nMethod: POST\nContent-Type: application/json\nProtocol: JSON-RPC 2.0 request envelope\nAuthentication\n\nUse one of these modes:\n\nAnonymous: no Authorization header (free tier rate limits)\nKeyed: add Authorization: Bearer <token> or Authorization: Basic <token>\nNeed higher usage tiers? Request authentication by emailing hamandmore@gmail.com.\n\nImportant:\n\nBasic here is an opaque token prefix, not RFC Basic base64 decoding.\nTokens do not need to be valid base64.\nJSON-RPC Envelope\n\nAlways send:\n\n{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 1,\n  \"method\": \"tools/list\",\n  \"params\": {}\n}\n\nid: any client correlation value\nmethod: one of initialize, tools/list, tools/call\nparams: object (required shape depends on method)\nQuick Start Commands\n\nInitialize:\n\ncurl -sS -X POST https://hamandmore.net/api/harmonics/mcp \\\n  -H 'content-type: application/json' \\\n  --data '{\"jsonrpc\":\"2.0\",\"id\":1,\"method\":\"initialize\",\"params\":{}}'\n\n\nList tools:\n\ncurl -sS -X POST https://hamandmore.net/api/harmonics/mcp \\\n  -H 'content-type: application/json' \\\n  --data '{\"jsonrpc\":\"2.0\",\"id\":2,\"method\":\"tools/list\",\"params\":{}}'\n\n\nList tools (keyed tier):\n\ncurl -sS -X POST https://hamandmore.net/api/harmonics/mcp \\\n  -H 'content-type: application/json' \\\n  -H 'authorization: Bearer YOUR_TOKEN' \\\n  --data '{\"jsonrpc\":\"2.0\",\"id\":3,\"method\":\"tools/list\",\"params\":{}}'\n\nTool Call Pattern\n\nAll tool calls use:\n\n{\n  \"jsonrpc\": \"2.0\",\n  \"id\": 10,\n  \"method\": \"tools/call\",\n  \"params\": {\n    \"name\": \"TOOL_NAME\",\n    \"arguments\": {}\n  }\n}\n\nCurl Examples\n1) Current time (tides_time)\ncurl -sS -X POST https://hamandmore.net/api/harmonics/mcp \\\n  -H 'content-type: application/json' \\\n  --data '{\"jsonrpc\":\"2.0\",\"id\":10,\"method\":\"tools/call\",\"params\":{\"name\":\"tides_time\",\"arguments\":{}}}'\n\n2) Single tide value (tides_single)\ncurl -sS -X POST https://hamandmore.net/api/harmonics/mcp \\\n  -H 'content-type: application/json' \\\n  --data '{\"jsonrpc\":\"2.0\",\"id\":11,\"method\":\"tools/call\",\"params\":{\"name\":\"tides_single\",\"arguments\":{\"latitude\":40.7128,\"longitude\":-74.0060,\"time\":\"2026-02-10T00:00:00Z\"}}}'\n\n3) Tide extrema (tides_extrema)\ncurl -sS -X POST https://hamandmore.net/api/harmonics/mcp \\\n  -H 'content-type: application/json' \\\n  --data '{\"jsonrpc\":\"2.0\",\"id\":12,\"method\":\"tools/call\",\"params\":{\"name\":\"tides_extrema\",\"arguments\":{\"latitude\":40.7128,\"longitude\":-74.0060,\"start_time\":\"2026-02-10T00:00:00Z\",\"end_time\":\"2026-02-11T00:00:00Z\"}}}'\n\n4) Weather points (weather_met)\ncurl -sS -X POST https://hamandmore.net/api/harmonics/mcp \\\n  -H 'content-type: application/json' \\\n  --data '{\"jsonrpc\":\"2.0\",\"id\":13,\"method\":\"tools/call\",\"params\":{\"name\":\"weather_met\",\"arguments\":{\"latitude\":40.7128,\"longitude\":-74.0060,\"start_time\":\"2026-02-10T00:00:00Z\",\"variables\":[\"wind/surface/0\",\"tmp/surface/0\"]}}}'\n\nResponse Shape\n\nSuccessful responses include:\n\nresult.content[0].text: stringified JSON result\nresult.structuredContent: same result as an object (preferred)\n\nErrors use JSON-RPC error:\n\n-32602: invalid params\n-32601: method not found\n-32603: server/tool exception"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/hamandmore/tides",
    "publisherUrl": "https://clawhub.ai/hamandmore/tides",
    "owner": "hamandmore",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/tides",
    "downloadUrl": "https://openagent3.xyz/downloads/tides",
    "agentUrl": "https://openagent3.xyz/skills/tides/agent",
    "manifestUrl": "https://openagent3.xyz/skills/tides/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/tides/agent.md"
  }
}