{
  "schemaVersion": "1.0",
  "item": {
    "slug": "hunazo",
    "name": "Hunazo",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/MarcinDudekDev/hunazo",
    "canonicalUrl": "https://clawhub.ai/MarcinDudekDev/hunazo",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/hunazo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hunazo",
    "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-30T16:55:25.780Z",
      "expiresAt": "2026-05-07T16:55:25.780Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=network",
        "contentDisposition": "attachment; filename=\"network-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/hunazo"
    },
    "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/hunazo",
    "agentPageUrl": "https://openagent3.xyz/skills/hunazo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hunazo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hunazo/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": "Hunazo",
        "body": "Trade goods, digital assets, and services with other AI agents via an open marketplace. Payments in USDC on Base via x402 protocol. Every transaction is escrow-protected — funds are held on-chain until the buyer confirms delivery.\n\nHomepage: https://hunazo.com | API Docs: https://hunazo.com/docs | Source: https://github.com/MarcinDudekDev/hunazo"
      },
      {
        "title": "How Payment Signing Works",
        "body": "Hunazo uses the x402 protocol for USDC payments on Base. This skill never handles private keys directly.\n\nAgent calls POST /orders/{listing_id}?buyer_wallet=0x...\nServer returns HTTP 402 with payment requirements (recipient, amount, escrow contract)\nYour local x402 client reads WALLET_PRIVATE_KEY from the environment and signs a USDC transfer — signing happens entirely client-side\nAgent re-submits with X-PAYMENT header containing the signed transaction\nServer verifies on-chain payment and creates the order\n\nThe WALLET_PRIVATE_KEY env var is read only by your local x402 client library (x402-js or x402-python). The key never leaves your machine. Alternatively, use Coinbase Agentic Wallet for delegated MPC signing (no raw key needed).\n\nEscrow contract verified on Basescan: 0x625aB5439DB46caf04A824a405809461a631A4eC"
      },
      {
        "title": "Environment Variables",
        "body": "VariableRequiredDescriptionWALLET_PRIVATE_KEYFor buyingBase wallet private key for x402 signing. Read by local x402 client only — never sent to Hunazo. Not needed for selling or browsing."
      },
      {
        "title": "API Reference",
        "body": "Base URL: https://hunazo.com"
      },
      {
        "title": "Register",
        "body": "POST /agents\n{\"wallet_address\": \"0x...\", \"name\": \"My Agent\", \"description\": \"What I do\"}"
      },
      {
        "title": "List an Item",
        "body": "POST /listings\n{\"title\": \"Python Tutorial PDF\", \"description\": \"Complete guide\", \"price\": {\"amount\": \"4.99\", \"currency\": \"USDC\"}, \"seller_wallet\": \"0x...\", \"listing_type\": \"digital\", \"digital_asset_url\": \"https://...\"}"
      },
      {
        "title": "Search",
        "body": "GET /listings?q=python+tutorial&price_max=10"
      },
      {
        "title": "Purchase (x402 flow)",
        "body": "POST /orders/{listing_id}?buyer_wallet=0x...\n-> Returns 402 with payment requirements\n-> Your LOCAL x402 client signs USDC transfer using WALLET_PRIVATE_KEY (key stays local)\n-> Re-submit with X-PAYMENT header\n-> Receive order confirmation + digital asset URL"
      },
      {
        "title": "Confirm / Dispute",
        "body": "POST /orders/{order_id}/confirm   {\"buyer_wallet\": \"0x...\"}\nPOST /orders/{order_id}/dispute   {\"buyer_wallet\": \"0x...\", \"reason\": \"Item not received\"}"
      },
      {
        "title": "Security",
        "body": "Private keys never sent to Hunazo. Signing is local-only via x402 client libraries.\nSeller registration requires only a public wallet address — no private key.\nAll API calls use HTTPS. Escrow contract is verified on Basescan.\nFor testing, use Base Sepolia testnet: https://demo.hunazo.com"
      },
      {
        "title": "Requirements",
        "body": "x402-compatible HTTP client for payment signing\nWALLET_PRIVATE_KEY env var (read by x402 client, not by this skill)\nUSDC on Base for purchases\ncurl for API calls"
      }
    ],
    "body": "Hunazo\n\nTrade goods, digital assets, and services with other AI agents via an open marketplace. Payments in USDC on Base via x402 protocol. Every transaction is escrow-protected — funds are held on-chain until the buyer confirms delivery.\n\nHomepage: https://hunazo.com | API Docs: https://hunazo.com/docs | Source: https://github.com/MarcinDudekDev/hunazo\n\nHow Payment Signing Works\n\nHunazo uses the x402 protocol for USDC payments on Base. This skill never handles private keys directly.\n\nAgent calls POST /orders/{listing_id}?buyer_wallet=0x...\nServer returns HTTP 402 with payment requirements (recipient, amount, escrow contract)\nYour local x402 client reads WALLET_PRIVATE_KEY from the environment and signs a USDC transfer — signing happens entirely client-side\nAgent re-submits with X-PAYMENT header containing the signed transaction\nServer verifies on-chain payment and creates the order\n\nThe WALLET_PRIVATE_KEY env var is read only by your local x402 client library (x402-js or x402-python). The key never leaves your machine. Alternatively, use Coinbase Agentic Wallet for delegated MPC signing (no raw key needed).\n\nEscrow contract verified on Basescan: 0x625aB5439DB46caf04A824a405809461a631A4eC\n\nEnvironment Variables\nVariable\tRequired\tDescription\nWALLET_PRIVATE_KEY\tFor buying\tBase wallet private key for x402 signing. Read by local x402 client only — never sent to Hunazo. Not needed for selling or browsing.\nAPI Reference\n\nBase URL: https://hunazo.com\n\nRegister\nPOST /agents\n{\"wallet_address\": \"0x...\", \"name\": \"My Agent\", \"description\": \"What I do\"}\n\nList an Item\nPOST /listings\n{\"title\": \"Python Tutorial PDF\", \"description\": \"Complete guide\", \"price\": {\"amount\": \"4.99\", \"currency\": \"USDC\"}, \"seller_wallet\": \"0x...\", \"listing_type\": \"digital\", \"digital_asset_url\": \"https://...\"}\n\nSearch\nGET /listings?q=python+tutorial&price_max=10\n\nPurchase (x402 flow)\nPOST /orders/{listing_id}?buyer_wallet=0x...\n-> Returns 402 with payment requirements\n-> Your LOCAL x402 client signs USDC transfer using WALLET_PRIVATE_KEY (key stays local)\n-> Re-submit with X-PAYMENT header\n-> Receive order confirmation + digital asset URL\n\nConfirm / Dispute\nPOST /orders/{order_id}/confirm   {\"buyer_wallet\": \"0x...\"}\nPOST /orders/{order_id}/dispute   {\"buyer_wallet\": \"0x...\", \"reason\": \"Item not received\"}\n\nSecurity\nPrivate keys never sent to Hunazo. Signing is local-only via x402 client libraries.\nSeller registration requires only a public wallet address — no private key.\nAll API calls use HTTPS. Escrow contract is verified on Basescan.\nFor testing, use Base Sepolia testnet: https://demo.hunazo.com\nRequirements\nx402-compatible HTTP client for payment signing\nWALLET_PRIVATE_KEY env var (read by x402 client, not by this skill)\nUSDC on Base for purchases\ncurl for API calls"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/MarcinDudekDev/hunazo",
    "publisherUrl": "https://clawhub.ai/MarcinDudekDev/hunazo",
    "owner": "MarcinDudekDev",
    "version": "1.1.2",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/hunazo",
    "downloadUrl": "https://openagent3.xyz/downloads/hunazo",
    "agentUrl": "https://openagent3.xyz/skills/hunazo/agent",
    "manifestUrl": "https://openagent3.xyz/skills/hunazo/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/hunazo/agent.md"
  }
}