{
  "schemaVersion": "1.0",
  "item": {
    "slug": "hashpack-wallet",
    "name": "HashPack Wallet",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/HarleysCodes/hashpack-wallet",
    "canonicalUrl": "https://clawhub.ai/HarleysCodes/hashpack-wallet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/hashpack-wallet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hashpack-wallet",
    "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/hashpack-wallet"
    },
    "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/hashpack-wallet",
    "agentPageUrl": "https://openagent3.xyz/skills/hashpack-wallet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hashpack-wallet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hashpack-wallet/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": "Quick Start",
        "body": "// Detect HashPack\nconst hashpack = (window as any).hashpack;\n\n// Connect\nconst result = await hashpack.connect();\n\n// Get account ID\nconst accountId = result.accountId; // e.g., \"0.0.12345\""
      },
      {
        "title": "Account ID Format",
        "body": "Hedera account IDs are format: 0.0.12345 (shard.realm.num)"
      },
      {
        "title": "Key Methods",
        "body": "// Connect (opens popup)\nawait hashpack.connect();\n\n// Sign and submit transaction\nconst tx = new TransferTransaction()\n  .addHbarTransfer(from, -10)\n  .addHbarTransfer(to, 10);\nawait hashpack.signTransaction(tx);\n\n// Get balance\nconst balance = await new AccountBalanceQuery()\n  .setAccountId(accountId)\n  .execute(client);\n\n// Disconnect\nhashpack.disconnect();"
      },
      {
        "title": "Environment",
        "body": "Mainnet: https://mainnet.hashio.io/api\nTestnet: https://testnet.hashio.io/api\nPreviewnet: https://previewnet.hashio.io/api"
      },
      {
        "title": "Transaction Types",
        "body": "TransferTransaction - Send HBAR/tokens\nContractExecuteTransaction - Call contract\nTokenAssociateTransaction - Associate with token\nTokenMintTransaction - Mint tokens\nTopicCreateTransaction - Create HCS topic"
      }
    ],
    "body": "HashPack Wallet Integration\nQuick Start\n// Detect HashPack\nconst hashpack = (window as any).hashpack;\n\n// Connect\nconst result = await hashpack.connect();\n\n// Get account ID\nconst accountId = result.accountId; // e.g., \"0.0.12345\"\n\nAccount ID Format\n\nHedera account IDs are format: 0.0.12345 (shard.realm.num)\n\nKey Methods\n// Connect (opens popup)\nawait hashpack.connect();\n\n// Sign and submit transaction\nconst tx = new TransferTransaction()\n  .addHbarTransfer(from, -10)\n  .addHbarTransfer(to, 10);\nawait hashpack.signTransaction(tx);\n\n// Get balance\nconst balance = await new AccountBalanceQuery()\n  .setAccountId(accountId)\n  .execute(client);\n\n// Disconnect\nhashpack.disconnect();\n\nEnvironment\nMainnet: https://mainnet.hashio.io/api\nTestnet: https://testnet.hashio.io/api\nPreviewnet: https://previewnet.hashio.io/api\nTransaction Types\nTransferTransaction - Send HBAR/tokens\nContractExecuteTransaction - Call contract\nTokenAssociateTransaction - Associate with token\nTokenMintTransaction - Mint tokens\nTopicCreateTransaction - Create HCS topic"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/HarleysCodes/hashpack-wallet",
    "publisherUrl": "https://clawhub.ai/HarleysCodes/hashpack-wallet",
    "owner": "HarleysCodes",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/hashpack-wallet",
    "downloadUrl": "https://openagent3.xyz/downloads/hashpack-wallet",
    "agentUrl": "https://openagent3.xyz/skills/hashpack-wallet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hashpack-wallet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hashpack-wallet/agent.md"
  }
}