# Send Hunazo to your agent
Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.
## Fast path
- 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.
## Suggested prompts
### New install

```text
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.
```
### Upgrade existing

```text
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.
```
## Machine-readable fields
```json
{
  "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": {
    "downloadUrl": "/downloads/hunazo",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hunazo",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "hunazo",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-04T06:51:59.311Z",
      "expiresAt": "2026-05-11T06:51:59.311Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hunazo",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=hunazo",
        "contentDisposition": "attachment; filename=\"hunazo-1.1.2.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "hunazo"
      },
      "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/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."
      ]
    }
  },
  "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"
  }
}
```
## Documentation

### Hunazo

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.

Homepage: https://hunazo.com | API Docs: https://hunazo.com/docs | Source: https://github.com/MarcinDudekDev/hunazo

### How Payment Signing Works

Hunazo uses the x402 protocol for USDC payments on Base. This skill never handles private keys directly.

Agent calls POST /orders/{listing_id}?buyer_wallet=0x...
Server returns HTTP 402 with payment requirements (recipient, amount, escrow contract)
Your local x402 client reads WALLET_PRIVATE_KEY from the environment and signs a USDC transfer — signing happens entirely client-side
Agent re-submits with X-PAYMENT header containing the signed transaction
Server verifies on-chain payment and creates the order

The 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).

Escrow contract verified on Basescan: 0x625aB5439DB46caf04A824a405809461a631A4eC

### Environment Variables

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.

### API Reference

Base URL: https://hunazo.com

### Register

POST /agents
{"wallet_address": "0x...", "name": "My Agent", "description": "What I do"}

### List an Item

POST /listings
{"title": "Python Tutorial PDF", "description": "Complete guide", "price": {"amount": "4.99", "currency": "USDC"}, "seller_wallet": "0x...", "listing_type": "digital", "digital_asset_url": "https://..."}

### Search

GET /listings?q=python+tutorial&price_max=10

### Purchase (x402 flow)

POST /orders/{listing_id}?buyer_wallet=0x...
-> Returns 402 with payment requirements
-> Your LOCAL x402 client signs USDC transfer using WALLET_PRIVATE_KEY (key stays local)
-> Re-submit with X-PAYMENT header
-> Receive order confirmation + digital asset URL

### Confirm / Dispute

POST /orders/{order_id}/confirm   {"buyer_wallet": "0x..."}
POST /orders/{order_id}/dispute   {"buyer_wallet": "0x...", "reason": "Item not received"}

### Security

Private keys never sent to Hunazo. Signing is local-only via x402 client libraries.
Seller registration requires only a public wallet address — no private key.
All API calls use HTTPS. Escrow contract is verified on Basescan.
For testing, use Base Sepolia testnet: https://demo.hunazo.com

### Requirements

x402-compatible HTTP client for payment signing
WALLET_PRIVATE_KEY env var (read by x402 client, not by this skill)
USDC on Base for purchases
curl for API calls
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: MarcinDudekDev
- Version: 1.1.2
## Source health
- Status: healthy
- Item download looks usable.
- Yavira can redirect you to the upstream package for this item.
- Health scope: item
- Reason: direct_download_ok
- Checked at: 2026-05-04T06:51:59.311Z
- Expires at: 2026-05-11T06:51:59.311Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/hunazo)
- [Send to Agent page](https://openagent3.xyz/skills/hunazo/agent)
- [JSON manifest](https://openagent3.xyz/skills/hunazo/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/hunazo/agent.md)
- [Download page](https://openagent3.xyz/downloads/hunazo)