{
  "schemaVersion": "1.0",
  "item": {
    "slug": "routemesh-crypto-rpc",
    "name": "RouteMesh Crypto RPC",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/kermankohli/routemesh-crypto-rpc",
    "canonicalUrl": "https://clawhub.ai/kermankohli/routemesh-crypto-rpc",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/routemesh-crypto-rpc",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=routemesh-crypto-rpc",
    "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-05-07T17:22:31.273Z",
      "expiresAt": "2026-05-14T17:22:31.273Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=afrexai-annual-report",
        "contentDisposition": "attachment; filename=\"afrexai-annual-report-1.0.0.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/routemesh-crypto-rpc"
    },
    "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/routemesh-crypto-rpc",
    "agentPageUrl": "https://openagent3.xyz/skills/routemesh-crypto-rpc/agent",
    "manifestUrl": "https://openagent3.xyz/skills/routemesh-crypto-rpc/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/routemesh-crypto-rpc/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": "RouteMesh RPC (JSON-RPC)",
        "body": "This skill standardizes how to call RouteMesh’s unified RPC endpoint:\n\nEndpoint: POST https://lb.routeme.sh/rpc/{chainId}/{apiKey}\nBody: JSON-RPC 2.0 (jsonrpc, id, method, optional params)"
      },
      {
        "title": "Quick start",
        "body": "Set your API key (recommended):\n\nexport ROUTEMESH_API_KEY=\"rm_...your_key...\"\n\nMake a request (example: Ethereum mainnet, eth_blockNumber):\n\npython3 \"{baseDir}/scripts/routemesh_rpc.py\" \\\n  --chain-id 1 \\\n  --method eth_blockNumber \\\n  --params '[]'"
      },
      {
        "title": "Usage pattern",
        "body": "Prefer calling via the helper script so output stays consistent and you don’t accidentally break JSON encoding."
      },
      {
        "title": "Script arguments",
        "body": "--chain-id: EVM chain id (string or int, e.g. 1, 137, 42161)\n--api-key: optional; falls back to ROUTEMESH_API_KEY\n--method: JSON-RPC method (e.g. eth_getBlockByNumber, eth_call)\n--params: JSON string for params (default [])\n--url: optional base URL (default https://lb.routeme.sh)"
      },
      {
        "title": "Common examples",
        "body": "Get the latest block (Polygon):\n\npython3 \"{baseDir}/scripts/routemesh_rpc.py\" \\\n  --chain-id 137 \\\n  --method eth_getBlockByNumber \\\n  --params '[\"latest\", false]'\n\nGet chain id (any EVM chain):\n\npython3 \"{baseDir}/scripts/routemesh_rpc.py\" \\\n  --chain-id 8453 \\\n  --method eth_chainId \\\n  --params '[]'\n\neth_call (Base). data must be hex-encoded calldata:\n\npython3 \"{baseDir}/scripts/routemesh_rpc.py\" \\\n  --chain-id 8453 \\\n  --method eth_call \\\n  --params '[{\"to\":\"0x0000000000000000000000000000000000000000\",\"data\":\"0x\"}, \"latest\"]'"
      },
      {
        "title": "Notes / error handling",
        "body": "RouteMesh returns standard JSON-RPC responses (result or error) and may also use HTTP error codes.\nIf you get a JSON-RPC error.code, refer to RouteMesh RPC error code docs in this repo: docs/reference/Reference/get_new-endpoint.md.\nKeep ROUTEMESH_API_KEY out of logs, issues, and commits."
      }
    ],
    "body": "RouteMesh RPC (JSON-RPC)\n\nThis skill standardizes how to call RouteMesh’s unified RPC endpoint:\n\nEndpoint: POST https://lb.routeme.sh/rpc/{chainId}/{apiKey}\nBody: JSON-RPC 2.0 (jsonrpc, id, method, optional params)\nQuick start\n\nSet your API key (recommended):\n\nexport ROUTEMESH_API_KEY=\"rm_...your_key...\"\n\n\nMake a request (example: Ethereum mainnet, eth_blockNumber):\n\npython3 \"{baseDir}/scripts/routemesh_rpc.py\" \\\n  --chain-id 1 \\\n  --method eth_blockNumber \\\n  --params '[]'\n\nUsage pattern\n\nPrefer calling via the helper script so output stays consistent and you don’t accidentally break JSON encoding.\n\nScript arguments\n--chain-id: EVM chain id (string or int, e.g. 1, 137, 42161)\n--api-key: optional; falls back to ROUTEMESH_API_KEY\n--method: JSON-RPC method (e.g. eth_getBlockByNumber, eth_call)\n--params: JSON string for params (default [])\n--url: optional base URL (default https://lb.routeme.sh)\nCommon examples\n\nGet the latest block (Polygon):\n\npython3 \"{baseDir}/scripts/routemesh_rpc.py\" \\\n  --chain-id 137 \\\n  --method eth_getBlockByNumber \\\n  --params '[\"latest\", false]'\n\n\nGet chain id (any EVM chain):\n\npython3 \"{baseDir}/scripts/routemesh_rpc.py\" \\\n  --chain-id 8453 \\\n  --method eth_chainId \\\n  --params '[]'\n\n\neth_call (Base). data must be hex-encoded calldata:\n\npython3 \"{baseDir}/scripts/routemesh_rpc.py\" \\\n  --chain-id 8453 \\\n  --method eth_call \\\n  --params '[{\"to\":\"0x0000000000000000000000000000000000000000\",\"data\":\"0x\"}, \"latest\"]'\n\nNotes / error handling\nRouteMesh returns standard JSON-RPC responses (result or error) and may also use HTTP error codes.\nIf you get a JSON-RPC error.code, refer to RouteMesh RPC error code docs in this repo: docs/reference/Reference/get_new-endpoint.md.\nKeep ROUTEMESH_API_KEY out of logs, issues, and commits."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/kermankohli/routemesh-crypto-rpc",
    "publisherUrl": "https://clawhub.ai/kermankohli/routemesh-crypto-rpc",
    "owner": "kermankohli",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/routemesh-crypto-rpc",
    "downloadUrl": "https://openagent3.xyz/downloads/routemesh-crypto-rpc",
    "agentUrl": "https://openagent3.xyz/skills/routemesh-crypto-rpc/agent",
    "manifestUrl": "https://openagent3.xyz/skills/routemesh-crypto-rpc/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/routemesh-crypto-rpc/agent.md"
  }
}