{
  "schemaVersion": "1.0",
  "item": {
    "slug": "planetexpress-marketplace",
    "name": "Planet Express Marketplace",
    "source": "tencent",
    "type": "skill",
    "category": "通讯协作",
    "sourceUrl": "https://clawhub.ai/timowhite88/planetexpress-marketplace",
    "canonicalUrl": "https://clawhub.ai/timowhite88/planetexpress-marketplace",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/planetexpress-marketplace",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=planetexpress-marketplace",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "claw.json"
    ],
    "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/planetexpress-marketplace"
    },
    "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/planetexpress-marketplace",
    "agentPageUrl": "https://openagent3.xyz/skills/planetexpress-marketplace/agent",
    "manifestUrl": "https://openagent3.xyz/skills/planetexpress-marketplace/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/planetexpress-marketplace/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": "Planet Express Marketplace — Decentralized File Commerce",
        "body": "A decentralized marketplace for buying and selling encrypted files on Monad blockchain. Escrow-secured transactions with multi-chain payment support via x402."
      },
      {
        "title": "Quick Reference",
        "body": "API Base: https://dropclaw.cloud/marketplace\nProtocol: x402 (HTTP 402 payment flow)\nChain: Monad (chainId 143)\nContract: 0xeFc5D4f6ee82849492b1F297134872dA2Abb260d\nPayment: MON, SOL, or Base USDC\nFrontend: https://planetexpress.dropclaw.cloud"
      },
      {
        "title": "Browse Listings (Free)",
        "body": "GET /marketplace/listings\n\nReturns all active marketplace listings."
      },
      {
        "title": "Get Listing Detail (Free)",
        "body": "GET /marketplace/listing/{id}\n\nReturns listing detail with pricing in MON/SOL/USDC."
      },
      {
        "title": "Purchase a File (x402 Payment)",
        "body": "POST /marketplace/purchase\nContent-Type: application/json\n\n{\n  \"listingId\": 123,\n  \"buyerAddress\": \"0x...\"  // optional\n}\n\nTriggers x402 flow: receive 402 → pay on preferred chain → retry with X-PAYMENT header."
      },
      {
        "title": "List a File for Sale ($30 Listing Fee)",
        "body": "POST /marketplace/list\nContent-Type: application/json\n\n{\n  \"fileId\": \"dropclaw-file-id\",\n  \"title\": \"My File\",\n  \"description\": \"What this file contains\",\n  \"skillFileUri\": \"ipfs://Qm...\",\n  \"keyHash\": \"0x...\",\n  \"price\": \"0.5\"\n}\n\nRequires x402 payment of $30 listing fee."
      },
      {
        "title": "Purchase Flow",
        "body": "GET /marketplace/listings to browse available files\nGET /marketplace/listing/{id} for detail + pricing\nPOST /marketplace/purchase with { listingId } — receive 402 with payment options\nSend payment on your preferred chain (MON, SOL, or USDC on Base)\nRetry POST with X-PAYMENT: base64(JSON({ network, txHash }))\nReceive the encrypted file + skill file for decryption"
      },
      {
        "title": "Listing Flow",
        "body": "First store your file via DropClaw (POST /vault/store) — this gives you a fileId\nPOST /marketplace/list with file details and price — triggers $30 listing fee via x402\nPay the listing fee on any supported chain\nYour file appears in the marketplace for others to purchase"
      },
      {
        "title": "Fees",
        "body": "FeeAmountNotesListing fee$30 USDPaid when listing a file for saleBuyer fee~$1 USDAdded to purchase priceDelivery fee2.5%Of listing priceFARNS buyback50%Half of all protocol fees buy $FARNS"
      },
      {
        "title": "Payment Chains",
        "body": "Monad (eip155:143) — MON native, direct contract interaction\nSolana (solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp) — SOL, facilitated\nBase (eip155:8453) — USDC, facilitated"
      },
      {
        "title": "Frontend",
        "body": "The marketplace has a fully decentralized frontend hosted on IPFS:\n\nWeb: https://planetexpress.dropclaw.cloud\nIPNS: k51qzi5uqu5di1vh2ybr8qipy8mod859fjb0i548af7qyopyctlv7zpjblukee\n\nInstall SDK: npm i dropclaw or pip install dropclaw"
      }
    ],
    "body": "Planet Express Marketplace — Decentralized File Commerce\n\nA decentralized marketplace for buying and selling encrypted files on Monad blockchain. Escrow-secured transactions with multi-chain payment support via x402.\n\nQuick Reference\nAPI Base: https://dropclaw.cloud/marketplace\nProtocol: x402 (HTTP 402 payment flow)\nChain: Monad (chainId 143)\nContract: 0xeFc5D4f6ee82849492b1F297134872dA2Abb260d\nPayment: MON, SOL, or Base USDC\nFrontend: https://planetexpress.dropclaw.cloud\nEndpoints\nBrowse Listings (Free)\nGET /marketplace/listings\n\n\nReturns all active marketplace listings.\n\nGet Listing Detail (Free)\nGET /marketplace/listing/{id}\n\n\nReturns listing detail with pricing in MON/SOL/USDC.\n\nPurchase a File (x402 Payment)\nPOST /marketplace/purchase\nContent-Type: application/json\n\n{\n  \"listingId\": 123,\n  \"buyerAddress\": \"0x...\"  // optional\n}\n\n\nTriggers x402 flow: receive 402 → pay on preferred chain → retry with X-PAYMENT header.\n\nList a File for Sale ($30 Listing Fee)\nPOST /marketplace/list\nContent-Type: application/json\n\n{\n  \"fileId\": \"dropclaw-file-id\",\n  \"title\": \"My File\",\n  \"description\": \"What this file contains\",\n  \"skillFileUri\": \"ipfs://Qm...\",\n  \"keyHash\": \"0x...\",\n  \"price\": \"0.5\"\n}\n\n\nRequires x402 payment of $30 listing fee.\n\nPurchase Flow\nGET /marketplace/listings to browse available files\nGET /marketplace/listing/{id} for detail + pricing\nPOST /marketplace/purchase with { listingId } — receive 402 with payment options\nSend payment on your preferred chain (MON, SOL, or USDC on Base)\nRetry POST with X-PAYMENT: base64(JSON({ network, txHash }))\nReceive the encrypted file + skill file for decryption\nListing Flow\nFirst store your file via DropClaw (POST /vault/store) — this gives you a fileId\nPOST /marketplace/list with file details and price — triggers $30 listing fee via x402\nPay the listing fee on any supported chain\nYour file appears in the marketplace for others to purchase\nFees\nFee\tAmount\tNotes\nListing fee\t$30 USD\tPaid when listing a file for sale\nBuyer fee\t~$1 USD\tAdded to purchase price\nDelivery fee\t2.5%\tOf listing price\nFARNS buyback\t50%\tHalf of all protocol fees buy $FARNS\nPayment Chains\nMonad (eip155:143) — MON native, direct contract interaction\nSolana (solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp) — SOL, facilitated\nBase (eip155:8453) — USDC, facilitated\nFrontend\n\nThe marketplace has a fully decentralized frontend hosted on IPFS:\n\nWeb: https://planetexpress.dropclaw.cloud\nIPNS: k51qzi5uqu5di1vh2ybr8qipy8mod859fjb0i548af7qyopyctlv7zpjblukee\n\nInstall SDK: npm i dropclaw or pip install dropclaw"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/timowhite88/planetexpress-marketplace",
    "publisherUrl": "https://clawhub.ai/timowhite88/planetexpress-marketplace",
    "owner": "timowhite88",
    "version": "2.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/planetexpress-marketplace",
    "downloadUrl": "https://openagent3.xyz/downloads/planetexpress-marketplace",
    "agentUrl": "https://openagent3.xyz/skills/planetexpress-marketplace/agent",
    "manifestUrl": "https://openagent3.xyz/skills/planetexpress-marketplace/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/planetexpress-marketplace/agent.md"
  }
}