# Send Openclast Wallet 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": "openclast-wallet",
    "name": "Openclast Wallet",
    "source": "tencent",
    "type": "skill",
    "category": "AI 智能",
    "sourceUrl": "https://clawhub.ai/fabriziogianni7/openclast-wallet",
    "canonicalUrl": "https://clawhub.ai/fabriziogianni7/openclast-wallet",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadUrl": "/downloads/openclast-wallet",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclast-wallet",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "packageFormat": "ZIP package",
    "primaryDoc": "SKILL.md",
    "includedAssets": [
      "SKILL.md"
    ],
    "downloadMode": "redirect",
    "sourceHealth": {
      "source": "tencent",
      "slug": "openclast-wallet",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-05-02T23:37:21.781Z",
      "expiresAt": "2026-05-09T23:37:21.781Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclast-wallet",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=openclast-wallet",
        "contentDisposition": "attachment; filename=\"openclast-wallet-1.0.0.zip\"",
        "redirectLocation": null,
        "bodySnippet": null,
        "slug": "openclast-wallet"
      },
      "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/openclast-wallet"
    },
    "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/openclast-wallet",
    "downloadUrl": "https://openagent3.xyz/downloads/openclast-wallet",
    "agentUrl": "https://openagent3.xyz/skills/openclast-wallet/agent",
    "manifestUrl": "https://openagent3.xyz/skills/openclast-wallet/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/openclast-wallet/agent.md"
  }
}
```
## Documentation

### Quick start

Use the CLI to bootstrap:

openclast-wallet setup creates wallet-config.json in the current folder.
openclast-wallet setup --config ./wallet-config.json initializes the wallet from that file.


Prefer wallet-config.json in the project root and customize chains and limits before use.
Keep wallet-config.json separate from openclaw.json (Openclaw config does not accept a top-level wallets key).

### Approval flow (mandatory)

All send/approve/contract operations create a pending transaction that requires explicit approval.
Always:

Create the pending tx (send/erc20/contract call).
Ask the user to approve.
Only after approval, broadcast and confirm.

If the user asks to “just send,” still require approval unless config is explicitly set to auto mode.

### Key export warning (mandatory)

Never expose private keys by default. If the user asks for export:

Require explicit confirmation.
Warn that key export is dangerous and should be protected.
Use environment gates if available (e.g., MOLTBOT_ALLOW_WALLET_EXPORT=1) and explicit CLI confirmation.

If export is not supported in this host, say so and offer safer alternatives.

### Balance and tokens

Use the correct chainId for the chain the user mentions.
If a chain is not configured, read-only balance may still be possible via well-known public RPCs.

### Sending

Validate chainId and recipient.
Respect per-tx and daily limits from config.
Always provide a block explorer link when a tx is confirmed.

### Chain name → chainId

Ethereum / Mainnet: 1
Sepolia: 11155111
Polygon: 137
Base: 8453
Arbitrum One: 42161

When the user says “balance on Sepolia” or “send on Ethereum,” always map to a chainId and proceed.

### Safety defaults

Default mode is notify/approval, not auto-send.
Restrict unverified contracts when possible.
Store private keys only in OS keychain (macOS) and never in config.

### Config rules (apply when present)

wallets.defaults.spending.mode: "notify" (default) or "auto" (sends without approval).
wallets.defaults.spending.limitPerTx, dailyLimit, allowedChains, allowedRecipients, notifyChannels: enforced for send/ERC20/contract calls.
wallets.notify.primaryChannel: where pending approvals are notified.
wallets.interactWithUnverifiedContracts: if false, only allow verifiedTokenAddresses and verifiedContractAddresses.

### Block explorer links (mandatory)

After approval and broadcast, always include a tx link. Use:

/tx/<txHash> for transactions
/address/<address> for addresses

Base URL comes from wallets.chains.<chainId>.blockExplorerUrl when configured, otherwise fallback well-known explorers.

### Agent tool expectations

If host tooling is available, prefer these tools:

wallet_send, wallet_balance, wallet_txStatus, wallet_approve
wallet_erc20_approve, wallet_erc20_transfer, wallet_contract_call

If the host provides CLI instead, use the host wallet CLI for create/address/send/approve and recover/import flows.

### Files and CLI

Starter config: wallet-config.json
Install skill in project: openclast-wallet install-skill
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: fabriziogianni7
- 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-05-02T23:37:21.781Z
- Expires at: 2026-05-09T23:37:21.781Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/openclast-wallet)
- [Send to Agent page](https://openagent3.xyz/skills/openclast-wallet/agent)
- [JSON manifest](https://openagent3.xyz/skills/openclast-wallet/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/openclast-wallet/agent.md)
- [Download page](https://openagent3.xyz/downloads/openclast-wallet)