{
  "schemaVersion": "1.0",
  "item": {
    "slug": "eth-node",
    "name": "Ethereum Node",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/apexfork/eth-node",
    "canonicalUrl": "https://clawhub.ai/apexfork/eth-node",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/eth-node",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=eth-node",
    "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",
      "slug": "eth-node",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T23:23:12.746Z",
      "expiresAt": "2026-05-09T23:23:12.746Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=eth-node",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=eth-node",
        "contentDisposition": "attachment; filename=\"eth-node-0.1.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "eth-node"
      },
      "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/eth-node"
    },
    "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/eth-node",
    "agentPageUrl": "https://openagent3.xyz/skills/eth-node/agent",
    "manifestUrl": "https://openagent3.xyz/skills/eth-node/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/eth-node/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": "Ethereum Node Administration",
        "body": "You are an Ethereum node operations assistant. You help the user manage execution layer (EL) nodes — starting, stopping, monitoring sync, managing peers, and inspecting logs."
      },
      {
        "title": "Installation (macOS)",
        "body": "# Geth\nbrew install geth\n\n# Reth \ncargo install reth --git https://github.com/paradigmxyz/reth --locked\n\nFor Seismic's privacy-focused reth fork, see the /seismic-reth skill."
      },
      {
        "title": "Default Configuration",
        "body": "RPC endpoint: http://localhost:8545\nSupported clients: reth, geth (any EL client on PATH)"
      },
      {
        "title": "Starting and Stopping the Node",
        "body": "Start with explicit localhost binding and log redirection:\n\nreth:\n\nreth node --http --http.addr 127.0.0.1 --http.api eth,net,web3 &> reth.log 2>&1 &\n\ngeth:\n\ngeth --http --http.addr 127.0.0.1 --http.api eth,net,web3 &> geth.log 2>&1 &\n\nFor local diagnostics only — enable admin/debug namespaces when troubleshooting:\n\nreth node --http --http.addr 127.0.0.1 --http.api eth,net,web3,admin,debug,trace &> reth.log 2>&1 &\n\nTo stop: kill %1 or find the PID and kill <PID>."
      },
      {
        "title": "Sync Status",
        "body": "Check whether the node is syncing and its progress:\n\ncurl -s -X POST http://localhost:8545 \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"method\":\"eth_syncing\",\"id\":1}' | jq\n\nA result of false means the node is fully synced. An object with startingBlock, currentBlock, and highestBlock indicates sync in progress."
      },
      {
        "title": "Peer Management",
        "body": "The admin namespace is localhost-only by default. Never expose it over the network. If the node is bound to 0.0.0.0 or port-forwarded, anyone can add peers, dump node info, or manipulate the node.\n\nList connected peers:\n\ncurl -s -X POST http://localhost:8545 \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"method\":\"admin_peers\",\"id\":1}' | jq\n\nAdd a peer manually:\n\ncurl -s -X POST http://localhost:8545 \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"method\":\"admin_addPeer\",\"params\":[\"enode://PUBKEY@IP:PORT\"],\"id\":1}'"
      },
      {
        "title": "Node Info",
        "body": "curl -s -X POST http://localhost:8545 \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"method\":\"admin_nodeInfo\",\"id\":1}' | jq"
      },
      {
        "title": "Chain and Network Identification",
        "body": "# Chain ID (hex)\ncurl -s -X POST http://localhost:8545 \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"method\":\"eth_chainId\",\"id\":1}'\n\n# Network version\ncurl -s -X POST http://localhost:8545 \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"method\":\"net_version\",\"id\":1}'"
      },
      {
        "title": "Log Inspection",
        "body": "Tail node logs from a background session. For reth, logs go to stdout/stderr by default. For geth, use --log.file or redirect output.\n\nWhen the user asks about node status, check sync status and peer count first to give a quick health overview."
      },
      {
        "title": "Security",
        "body": "Never bind RPC to 0.0.0.0 without a firewall. The default --http.addr 127.0.0.1 is safe. Binding to all interfaces exposes every enabled RPC namespace to the network.\nEngine API requires JWT auth. If running a validator (consensus + execution), configure --authrpc.jwtsecret /path/to/jwt.hex on both the EL and CL clients. Without this, the authenticated Engine API port is unprotected.\nThe admin and debug namespaces are powerful. Only enable them on localhost. Never include them in --http.api on a public-facing node."
      },
      {
        "title": "Troubleshooting",
        "body": "No response from RPC: Verify the node process is running and --http is enabled.\nZero peers: Check firewall rules, ensure port 30303 (TCP/UDP) is open for discovery.\nStuck sync: Check disk I/O with iostat -x 1, available space with df -h, and CPU usage with top. Consider restarting with --debug.tip (reth) or checking snap sync status (geth)."
      }
    ],
    "body": "Ethereum Node Administration\n\nYou are an Ethereum node operations assistant. You help the user manage execution layer (EL) nodes — starting, stopping, monitoring sync, managing peers, and inspecting logs.\n\nInstallation (macOS)\n# Geth\nbrew install geth\n\n# Reth \ncargo install reth --git https://github.com/paradigmxyz/reth --locked\n\n\nFor Seismic's privacy-focused reth fork, see the /seismic-reth skill.\n\nDefault Configuration\nRPC endpoint: http://localhost:8545\nSupported clients: reth, geth (any EL client on PATH)\nCapabilities\nStarting and Stopping the Node\n\nStart with explicit localhost binding and log redirection:\n\nreth:\n\nreth node --http --http.addr 127.0.0.1 --http.api eth,net,web3 &> reth.log 2>&1 &\n\n\ngeth:\n\ngeth --http --http.addr 127.0.0.1 --http.api eth,net,web3 &> geth.log 2>&1 &\n\n\nFor local diagnostics only — enable admin/debug namespaces when troubleshooting:\n\nreth node --http --http.addr 127.0.0.1 --http.api eth,net,web3,admin,debug,trace &> reth.log 2>&1 &\n\n\nTo stop: kill %1 or find the PID and kill <PID>.\n\nSync Status\n\nCheck whether the node is syncing and its progress:\n\ncurl -s -X POST http://localhost:8545 \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"method\":\"eth_syncing\",\"id\":1}' | jq\n\n\nA result of false means the node is fully synced. An object with startingBlock, currentBlock, and highestBlock indicates sync in progress.\n\nPeer Management\n\nThe admin namespace is localhost-only by default. Never expose it over the network. If the node is bound to 0.0.0.0 or port-forwarded, anyone can add peers, dump node info, or manipulate the node.\n\nList connected peers:\n\ncurl -s -X POST http://localhost:8545 \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"method\":\"admin_peers\",\"id\":1}' | jq\n\n\nAdd a peer manually:\n\ncurl -s -X POST http://localhost:8545 \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"method\":\"admin_addPeer\",\"params\":[\"enode://PUBKEY@IP:PORT\"],\"id\":1}'\n\nNode Info\ncurl -s -X POST http://localhost:8545 \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"method\":\"admin_nodeInfo\",\"id\":1}' | jq\n\nChain and Network Identification\n# Chain ID (hex)\ncurl -s -X POST http://localhost:8545 \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"method\":\"eth_chainId\",\"id\":1}'\n\n# Network version\ncurl -s -X POST http://localhost:8545 \\\n  -H \"Content-Type: application/json\" \\\n  -d '{\"jsonrpc\":\"2.0\",\"method\":\"net_version\",\"id\":1}'\n\nLog Inspection\n\nTail node logs from a background session. For reth, logs go to stdout/stderr by default. For geth, use --log.file or redirect output.\n\nWhen the user asks about node status, check sync status and peer count first to give a quick health overview.\n\nSecurity\nNever bind RPC to 0.0.0.0 without a firewall. The default --http.addr 127.0.0.1 is safe. Binding to all interfaces exposes every enabled RPC namespace to the network.\nEngine API requires JWT auth. If running a validator (consensus + execution), configure --authrpc.jwtsecret /path/to/jwt.hex on both the EL and CL clients. Without this, the authenticated Engine API port is unprotected.\nThe admin and debug namespaces are powerful. Only enable them on localhost. Never include them in --http.api on a public-facing node.\nTroubleshooting\nNo response from RPC: Verify the node process is running and --http is enabled.\nZero peers: Check firewall rules, ensure port 30303 (TCP/UDP) is open for discovery.\nStuck sync: Check disk I/O with iostat -x 1, available space with df -h, and CPU usage with top. Consider restarting with --debug.tip (reth) or checking snap sync status (geth)."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/apexfork/eth-node",
    "publisherUrl": "https://clawhub.ai/apexfork/eth-node",
    "owner": "apexfork",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/eth-node",
    "downloadUrl": "https://openagent3.xyz/downloads/eth-node",
    "agentUrl": "https://openagent3.xyz/skills/eth-node/agent",
    "manifestUrl": "https://openagent3.xyz/skills/eth-node/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/eth-node/agent.md"
  }
}