# Send Weave 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": "weave",
    "name": "Weave",
    "source": "tencent",
    "type": "skill",
    "category": "开发工具",
    "sourceUrl": "https://clawhub.ai/AryanJ-NYC/weave",
    "canonicalUrl": "https://clawhub.ai/AryanJ-NYC/weave",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/weave",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=weave",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "LICENSE.txt",
      "SKILL.md",
      "agents/openai.yaml",
      "references/cli-contract.md",
      "references/publishing.md",
      "references/scenarios.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "weave",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-10T20:42:51.483Z",
      "expiresAt": "2026-05-17T20:42:51.483Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=weave",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=weave",
        "contentDisposition": "attachment; filename=\"weave-0.1.6.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "weave"
      },
      "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/weave"
    },
    "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/weave",
    "downloadUrl": "https://openagent3.xyz/downloads/weave",
    "agentUrl": "https://openagent3.xyz/skills/weave/agent",
    "manifestUrl": "https://openagent3.xyz/skills/weave/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/weave/agent.md"
  }
}
```
## Documentation

### Weave

Weave is a CLI for crypto invoicing and cross-chain payment workflows. Use this when you need to create Bitcoin, Ethereum, Solana, USDC, or USDT invoices, generate payment quotes, and monitor settlement across supported networks such as Base, Tron, and Zcash for agent workflows or operations.

### Overview

Use weave for full Weave Cash invoice lifecycle workflows:

Create an invoice (weave create)
Generate payment instructions (weave quote)
Track settlement (weave status or weave status --watch)

### Guardrails

Crypto-to-crypto only. Do not introduce fiat currencies, fiat conversions, or fiat-denominated behavior.
Prefer machine-readable JSON output. Use --human only when explicitly requested.
Never expose secrets (private keys, tokens, JWTs) in outputs.
Treat network/API calls as failure-prone and handle non-zero exits explicitly.

### When Not To Use

Do not use this skill for fiat invoice or fiat settlement workflows.
Do not use this skill for editing Weave web UI/frontend code.
Do not use this skill for unrelated wallet custody or private-key management tasks.
Do not use this skill when the user wants non-Weave payment rails.

### Preflight

Confirm CLI availability:

weave --help

Discover runtime token/network support before choosing assets:

weave tokens

If weave is missing, provide compliant install guidance and ask before running:

go install github.com/AryanJ-NYC/weave-cash/apps/cli/cmd/weave@latest
weave --help

If Go is unavailable, use npm fallback:

npm i -g weave-cash-cli
weave --help

If both Go and npm are unavailable, report the missing prerequisites.

### Compliant Install Policy

Prefer metadata.openclaw.install / metadata.clawdbot.install package-manager installs.
Never suggest remote download commands piped directly to a shell interpreter.
Detect and instruct; do not auto-install dependencies without explicit user approval.

### Token And Network Selection

Always trust live weave tokens output from the runtime binary.
Do not hardcode token/network lists in reasoning.
--receive-network is required only for receive tokens that support multiple networks.
Network aliases are accepted (for example Ethereum|ETH, Solana|SOL, Tron|TRX when supported by runtime output).

### 1) Create Invoice

Collect:

receive-token
amount (positive numeric string)
wallet-address
receive-network only when required by runtime token/network map
optional buyer fields (description, buyer-name, buyer-email, buyer-address)

Command:

weave create \\
  --receive-token USDC \\
  --receive-network Ethereum \\
  --amount 25 \\
  --wallet-address 0x1111111111111111111111111111111111111111

Expected JSON shape:

{
  "id": "inv_123",
  "invoiceUrl": "https://www.weavecash.com/invoice/inv_123"
}

Capture id for downstream quote/status calls.

### 2) Generate Quote

Collect:

invoice-id
pay-token
pay-network
refund-address

Command:

weave quote inv_123 \\
  --pay-token USDT \\
  --pay-network Ethereum \\
  --refund-address 0x2222222222222222222222222222222222222222

Expected fields:

depositAddress
depositMemo (optional)
amountIn
amountOut
timeEstimate
expiresAt

### 3) Check Status

One-shot:

weave status inv_123

Watch mode:

weave status inv_123 --watch --interval-seconds 5 --timeout-seconds 900

Interpretation:

Exit 0: reached terminal status (COMPLETED, FAILED, REFUNDED, EXPIRED)
Exit 2: watch timeout (not a command failure)
Exit 1: command/API/network/validation failure

### Error Handling

When exit code is 1, surface structured stderr JSON when present. Common API-derived shape:

{
  "error": "api message",
  "status": 409,
  "details": {
    "error": "Invoice is not in PENDING status"
  }
}

If watch times out (exit 2), treat as incomplete progress, not fatal failure. Recommend extending --timeout-seconds or rerunning a one-shot weave status <invoice-id>.

### Runtime Drift Rule

The installed binary and source tree can drift in token support. Always use runtime discovery (weave tokens) when deciding valid token/network combinations.
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: AryanJ-NYC
- Version: 0.1.6
## 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-10T20:42:51.483Z
- Expires at: 2026-05-17T20:42:51.483Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/weave)
- [Send to Agent page](https://openagent3.xyz/skills/weave/agent)
- [JSON manifest](https://openagent3.xyz/skills/weave/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/weave/agent.md)
- [Download page](https://openagent3.xyz/downloads/weave)