{
  "schemaVersion": "1.0",
  "item": {
    "slug": "usdc-escrow",
    "name": "USDC Escrow",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/zeroaddresss/usdc-escrow",
    "canonicalUrl": "https://clawhub.ai/zeroaddresss/usdc-escrow",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/usdc-escrow",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=usdc-escrow",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "references/api-docs.md",
      "scripts/claim-expired.sh",
      "scripts/create-escrow.sh",
      "scripts/dispute-escrow.sh",
      "scripts/get-escrow.sh"
    ],
    "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/usdc-escrow"
    },
    "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/usdc-escrow",
    "agentPageUrl": "https://openagent3.xyz/skills/usdc-escrow/agent",
    "manifestUrl": "https://openagent3.xyz/skills/usdc-escrow/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/usdc-escrow/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": "Overview",
        "body": "This skill provides trustless USDC escrow services for agent-to-agent payments on Base. It allows AI agents to create, manage, and resolve payment escrows using smart contracts."
      },
      {
        "title": "API",
        "body": "All scripts point to https://api.payclawback.xyz by default. To use a different backend, set:\n\nESCROW_API_URL - Override API URL (optional)"
      },
      {
        "title": "Create an Escrow",
        "body": "Creates a new escrow holding USDC for a beneficiary.\n\n./scripts/create-escrow.sh <beneficiary_address> <amount_usdc> \"<description>\" <deadline_hours>\n\nExample: ./scripts/create-escrow.sh 0x742d35Cc6634C0532925a3b844Bc9e7595f2bD28 10 \"Payment for data analysis\" 48"
      },
      {
        "title": "List Escrows",
        "body": "List all escrows, optionally filtered by state or depositor.\n\n./scripts/list-escrows.sh [--state active|released|disputed|refunded|expired] [--depositor 0x...]"
      },
      {
        "title": "Get Escrow Details",
        "body": "Get details of a specific escrow by ID.\n\n./scripts/get-escrow.sh <escrow_id>"
      },
      {
        "title": "Release Escrow",
        "body": "Release escrowed funds to the beneficiary.\n\n./scripts/release-escrow.sh <escrow_id>"
      },
      {
        "title": "Dispute Escrow",
        "body": "Open a dispute on an active escrow.\n\n./scripts/dispute-escrow.sh <escrow_id>"
      },
      {
        "title": "Resolve Dispute",
        "body": "Resolve a disputed escrow as arbiter.\n\n./scripts/resolve-dispute.sh <escrow_id> <true|false>\n\ntrue = release funds to beneficiary\nfalse = refund to depositor"
      },
      {
        "title": "Claim Expired Escrow",
        "body": "Reclaim funds from an expired escrow.\n\n./scripts/claim-expired.sh <escrow_id>"
      },
      {
        "title": "Workflow Example",
        "body": "Agent A wants to pay Agent B for a service\nAgent A creates an escrow: ./scripts/create-escrow.sh 0xAgentB 50 \"Sentiment analysis job\" 24\nAgent B performs the service\nAgent A releases payment: ./scripts/release-escrow.sh 1"
      },
      {
        "title": "How It Works",
        "body": "USDC is locked in a verified smart contract on Base\nThe escrow has a deadline - funds return to depositor if expired\nEither party can open a dispute for arbiter resolution\nThe AI arbiter agent resolves disputes impartially\nAll transactions are on-chain and verifiable"
      },
      {
        "title": "API Reference",
        "body": "See references/api-docs.md for complete API documentation."
      }
    ],
    "body": "USDC Escrow Skill\nOverview\n\nThis skill provides trustless USDC escrow services for agent-to-agent payments on Base. It allows AI agents to create, manage, and resolve payment escrows using smart contracts.\n\nAPI\n\nAll scripts point to https://api.payclawback.xyz by default. To use a different backend, set:\n\nESCROW_API_URL - Override API URL (optional)\nAvailable Commands\nCreate an Escrow\n\nCreates a new escrow holding USDC for a beneficiary.\n\n./scripts/create-escrow.sh <beneficiary_address> <amount_usdc> \"<description>\" <deadline_hours>\n\n\nExample: ./scripts/create-escrow.sh 0x742d35Cc6634C0532925a3b844Bc9e7595f2bD28 10 \"Payment for data analysis\" 48\n\nList Escrows\n\nList all escrows, optionally filtered by state or depositor.\n\n./scripts/list-escrows.sh [--state active|released|disputed|refunded|expired] [--depositor 0x...]\n\nGet Escrow Details\n\nGet details of a specific escrow by ID.\n\n./scripts/get-escrow.sh <escrow_id>\n\nRelease Escrow\n\nRelease escrowed funds to the beneficiary.\n\n./scripts/release-escrow.sh <escrow_id>\n\nDispute Escrow\n\nOpen a dispute on an active escrow.\n\n./scripts/dispute-escrow.sh <escrow_id>\n\nResolve Dispute\n\nResolve a disputed escrow as arbiter.\n\n./scripts/resolve-dispute.sh <escrow_id> <true|false>\n\ntrue = release funds to beneficiary\nfalse = refund to depositor\nClaim Expired Escrow\n\nReclaim funds from an expired escrow.\n\n./scripts/claim-expired.sh <escrow_id>\n\nWorkflow Example\nAgent A wants to pay Agent B for a service\nAgent A creates an escrow: ./scripts/create-escrow.sh 0xAgentB 50 \"Sentiment analysis job\" 24\nAgent B performs the service\nAgent A releases payment: ./scripts/release-escrow.sh 1\nHow It Works\nUSDC is locked in a verified smart contract on Base\nThe escrow has a deadline - funds return to depositor if expired\nEither party can open a dispute for arbiter resolution\nThe AI arbiter agent resolves disputes impartially\nAll transactions are on-chain and verifiable\nAPI Reference\n\nSee references/api-docs.md for complete API documentation."
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/zeroaddresss/usdc-escrow",
    "publisherUrl": "https://clawhub.ai/zeroaddresss/usdc-escrow",
    "owner": "zeroaddresss",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/usdc-escrow",
    "downloadUrl": "https://openagent3.xyz/downloads/usdc-escrow",
    "agentUrl": "https://openagent3.xyz/skills/usdc-escrow/agent",
    "manifestUrl": "https://openagent3.xyz/skills/usdc-escrow/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/usdc-escrow/agent.md"
  }
}