{
  "schemaVersion": "1.0",
  "item": {
    "slug": "clawdwallet",
    "name": "Clawdwallet",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/NeOMakinG/clawdwallet",
    "canonicalUrl": "https://clawhub.ai/NeOMakinG/clawdwallet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/clawdwallet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=clawdwallet",
    "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/clawdwallet"
    },
    "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/clawdwallet",
    "agentPageUrl": "https://openagent3.xyz/skills/clawdwallet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawdwallet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawdwallet/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": "ClawdWallet",
        "body": "Multi-chain wallet extension your agent controls via WebSocket."
      },
      {
        "title": "Quick Install",
        "body": "# Clone and build\ngit clone https://github.com/NeOMakinG/clawdwallet.git\ncd clawdwallet\nnpm install\nnpm run build\n\n# Or use pre-built dist/ folder directly"
      },
      {
        "title": "Load in Chrome",
        "body": "chrome://extensions → Enable Developer mode\nLoad unpacked → select dist/ folder\nClick extension icon → set WebSocket URL (default: ws://localhost:3033/clawdwallet)"
      },
      {
        "title": "Clawdbot Gateway Config",
        "body": "Add to your gateway config:\n\nextensions:\n  clawdwallet:\n    enabled: true"
      },
      {
        "title": "Initialize with existing seed",
        "body": "{\"type\": \"init_wallet\", \"mnemonic\": \"your twenty four words...\"}"
      },
      {
        "title": "Generate new wallet",
        "body": "{\"type\": \"generate_wallet\"}\n\nReturns addresses for all supported chains."
      },
      {
        "title": "Approve dApp request",
        "body": "{\"type\": \"sign_and_respond\", \"requestId\": \"uuid\"}"
      },
      {
        "title": "Reject request",
        "body": "{\"type\": \"reject_request\", \"requestId\": \"uuid\", \"reason\": \"Looks suspicious\"}"
      },
      {
        "title": "Check status",
        "body": "{\"type\": \"get_status\"}"
      },
      {
        "title": "Incoming Requests",
        "body": "When dApp requests signature, you receive:\n\n{\n  \"type\": \"wallet_request\",\n  \"id\": \"uuid\",\n  \"chain\": \"ethereum\",\n  \"method\": \"eth_sendTransaction\",\n  \"params\": [{\"to\": \"0x...\", \"value\": \"0x...\"}],\n  \"origin\": \"https://app.uniswap.org\"\n}\n\nReview and approve/reject based on context."
      },
      {
        "title": "Supported Chains",
        "body": "FamilyChainsEVMEthereum, Polygon, Optimism, Arbitrum, Base, Avalanche, Gnosis, BSCUTXOBitcoin, Litecoin, Dogecoin, Bitcoin CashCosmosCosmos Hub, Osmosis, THORChain, MayachainOtherSolana, TON, Near, Sui, Tron"
      },
      {
        "title": "Security Notes",
        "body": "Only use with trusted agents\nConsider dedicated wallet for agent operations\nNever expose mnemonic or WebSocket URL publicly"
      }
    ],
    "body": "ClawdWallet\n\nMulti-chain wallet extension your agent controls via WebSocket.\n\nQuick Install\n# Clone and build\ngit clone https://github.com/NeOMakinG/clawdwallet.git\ncd clawdwallet\nnpm install\nnpm run build\n\n# Or use pre-built dist/ folder directly\n\nLoad in Chrome\nchrome://extensions → Enable Developer mode\nLoad unpacked → select dist/ folder\nClick extension icon → set WebSocket URL (default: ws://localhost:3033/clawdwallet)\nClawdbot Gateway Config\n\nAdd to your gateway config:\n\nextensions:\n  clawdwallet:\n    enabled: true\n\nAgent Commands\nInitialize with existing seed\n{\"type\": \"init_wallet\", \"mnemonic\": \"your twenty four words...\"}\n\nGenerate new wallet\n{\"type\": \"generate_wallet\"}\n\n\nReturns addresses for all supported chains.\n\nApprove dApp request\n{\"type\": \"sign_and_respond\", \"requestId\": \"uuid\"}\n\nReject request\n{\"type\": \"reject_request\", \"requestId\": \"uuid\", \"reason\": \"Looks suspicious\"}\n\nCheck status\n{\"type\": \"get_status\"}\n\nIncoming Requests\n\nWhen dApp requests signature, you receive:\n\n{\n  \"type\": \"wallet_request\",\n  \"id\": \"uuid\",\n  \"chain\": \"ethereum\",\n  \"method\": \"eth_sendTransaction\",\n  \"params\": [{\"to\": \"0x...\", \"value\": \"0x...\"}],\n  \"origin\": \"https://app.uniswap.org\"\n}\n\n\nReview and approve/reject based on context.\n\nSupported Chains\nFamily\tChains\nEVM\tEthereum, Polygon, Optimism, Arbitrum, Base, Avalanche, Gnosis, BSC\nUTXO\tBitcoin, Litecoin, Dogecoin, Bitcoin Cash\nCosmos\tCosmos Hub, Osmosis, THORChain, Mayachain\nOther\tSolana, TON, Near, Sui, Tron\nSecurity Notes\nOnly use with trusted agents\nConsider dedicated wallet for agent operations\nNever expose mnemonic or WebSocket URL publicly"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/NeOMakinG/clawdwallet",
    "publisherUrl": "https://clawhub.ai/NeOMakinG/clawdwallet",
    "owner": "NeOMakinG",
    "version": "0.1.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/clawdwallet",
    "downloadUrl": "https://openagent3.xyz/downloads/clawdwallet",
    "agentUrl": "https://openagent3.xyz/skills/clawdwallet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/clawdwallet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/clawdwallet/agent.md"
  }
}