# Send Trustra Escrow 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": "trustra-escrow",
    "name": "Trustra Escrow",
    "source": "tencent",
    "type": "skill",
    "category": "金融交易",
    "sourceUrl": "https://clawhub.ai/Xasus1/trustra-escrow",
    "canonicalUrl": "https://clawhub.ai/Xasus1/trustra-escrow",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/trustra-escrow",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=trustra-escrow",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      ".gitignore",
      "SKILL.md",
      "scripts/balance.py",
      "scripts/config.py",
      "scripts/escrow_cancel.py",
      "scripts/escrow_confirm.py"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "trustra-escrow",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-29T06:03:22.746Z",
      "expiresAt": "2026-05-06T06:03:22.746Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=trustra-escrow",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=trustra-escrow",
        "contentDisposition": "attachment; filename=\"trustra-escrow-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "trustra-escrow"
      },
      "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/trustra-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."
      ]
    }
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/trustra-escrow",
    "downloadUrl": "https://openagent3.xyz/downloads/trustra-escrow",
    "agentUrl": "https://openagent3.xyz/skills/trustra-escrow/agent",
    "manifestUrl": "https://openagent3.xyz/skills/trustra-escrow/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/trustra-escrow/agent.md"
  }
}
```
## Documentation

### Trustra Escrow 🔐

Trustless USDC escrow for agent-to-agent transactions on Solana.

### I Want To BUY Something (Pay Someone)

# 1. Register (once)
python register.py --name "My Agent"

# 2. Check your balance
python balance.py

# 3. Create escrow with seller's wallet
python escrow_create.py <SELLER_WALLET> <AMOUNT> -d "Payment for service"

# 4. Pay into escrow (funds held until delivery)
python escrow_pay.py <ESCROW_ID>

# 5. Wait for seller to deliver, then confirm to release funds
python escrow_confirm.py <ESCROW_ID>

If there's a problem: python escrow_dispute.py <ESCROW_ID> --reason "Issue description"

### I Want To SELL Something (Receive Payment)

# 1. Register (once)
python register.py --name "My Agent"

# 2. Share your wallet address with buyer
python balance.py  # Shows your wallet address

# 3. Wait for buyer to create & pay escrow
python escrow_list.py --status paid

# 4. After delivering service/product, mark as delivered (12h after payment)
python escrow_deliver.py <ESCROW_ID>

# 5. Wait for buyer to confirm (or 7 days auto-release)
python escrow_withdraw.py <ESCROW_ID>  # After 7 days if no response

### Quick Reference

ActionCommandRegisterpython register.py --name "Agent Name"Balancepython balance.pyCreate escrowpython escrow_create.py <WALLET> <AMOUNT> [-d "desc"]Pay escrowpython escrow_pay.py <ID>List escrowspython escrow_list.py [--status STATUS]Mark deliveredpython escrow_deliver.py <ID> (seller)Confirm releasepython escrow_confirm.py <ID> (buyer)Disputepython escrow_dispute.py <ID> --reason "..."Cancelpython escrow_cancel.py <ID> (buyer, before delivery)Withdrawpython escrow_withdraw.py <ID> (seller, after 7d)Export keypython export_key.py

### Escrow Flow

BUYER creates escrow → BUYER pays → (12h wait) → SELLER delivers → BUYER confirms
                                                                 ↘ Funds released to SELLER

If problem: Either party can DISPUTE → Trustra resolves
If no response: SELLER can WITHDRAW after 7 days

### Escrow Statuses

StatusWho acts next?createdBuyer payspaidSeller delivers (after 12h wait)deliveredBuyer confirms (or wait 7d)completedDone - funds releaseddisputedTrustra team resolvescanceledEscrow canceledwithdrawnSeller got funds after 7d

### Time Constraints

ConstraintDurationPurposeCancel window12 hoursBuyer can cancel within 12h after payingSeller deliverAfter 12hSeller can only mark delivered after cancel windowAuto-release7 daysSeller can withdraw if buyer doesn't respond

### Setup (one-time)

python register.py --name "My Agent"

Creates a managed wallet + API key stored in credentials.json. Fund wallet with SOL (for tx fees) and USDC to use escrows.

### Errors

ErrorFixNo API key foundRun register.pyEscrow not foundWrong ID or you're not buyer/sellerInvalid statusCheck escrow_list.py for current statusCancelDurationNotEndedWait 12 hours after payment to mark deliveredToo early to withdrawWait 7 days after delivery

### Credentials

{
  "api_key": "trustra_sk_...",
  "wallet_address": "7xKXtg..."
}

Never share your API key.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Xasus1
- Version: 1.0.0
## 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-04-29T06:03:22.746Z
- Expires at: 2026-05-06T06:03:22.746Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/trustra-escrow)
- [Send to Agent page](https://openagent3.xyz/skills/trustra-escrow/agent)
- [JSON manifest](https://openagent3.xyz/skills/trustra-escrow/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/trustra-escrow/agent.md)
- [Download page](https://openagent3.xyz/downloads/trustra-escrow)