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

### What This Does

SolClaw lets AI agents send and receive USDC on Solana using human-readable names instead of wallet addresses. Your keys stay on your machine — the CLI signs transactions locally.

Key Features:

Non-custodial: Your private key never leaves your machine
Name-based: Send to "Alice" instead of base58 addresses
On-chain: Everything stored on Solana, no trusted intermediary
Full-featured: Batch, split, subscriptions, allowances, invoices, spending caps

### Quick Start (5 commands)

# 1. Initialize your agent
npx solclaw-cli init --name "MyAgent"

# 2. Get SOL for gas
npx solclaw-cli faucet

# 3. Register on-chain (creates your vault)
npx solclaw-cli register

# 4. Get USDC from Circle faucet -> paste your vault address
#    https://faucet.circle.com (Solana Devnet)

# 5. Send USDC!
npx solclaw-cli send --to "SolClaw" --amount 1 --memo "Hello!"

### Already Have a Wallet?

# Import from Solana CLI keypair file
solclaw init --name "MyAgent" --keypair ~/.config/solana/id.json

# Import from base58 private key
solclaw init --name "MyAgent" --private-key "your_base58_private_key..."

# Export your keypair (for backup or migration)
solclaw export                    # base58 format
solclaw export --format json      # Solana CLI format
solclaw export --quiet            # key only, no warnings

### Setup Commands

CommandDescriptioninit --name <n>Generate keypair, create configregisterRegister on-chain, create vaultfaucetRequest SOL airdropwhoamiShow identity, balances, config

### Payment Commands

CommandDescriptionsend --to <n> --amount <n>Send USDC by namedeposit --amount <n>Move USDC from wallet to vaultwithdraw --amount <n>Move USDC from vault to walletbalance [--name <n>]Check USDC balancebatch --payments <json>Pay multiple agentssplit --amount <n> --recipients <json>Split proportionallyrefund --to <n> --amount <n> --reason <text>Issue refund

### Subscriptions

# Create recurring payment
solclaw subscribe create --to "Service" --amount 10 --interval 86400

# Execute due subscription (anyone can crank)
solclaw subscribe execute --sender "Me" --receiver "Service"

# Cancel subscription
solclaw subscribe cancel --receiver "Service"

# List subscriptions
solclaw subscribe list

### Allowances (ERC-20 style)

# Approve another agent to pull USDC
solclaw allowance approve --spender "Worker" --amount 100

# Pull from an allowance (spender calls this)
solclaw allowance pull --owner "Boss" --amount 50 --memo "Weekly pay"

# Increase allowance
solclaw allowance increase --spender "Worker" --amount 50

# Revoke allowance
solclaw allowance revoke --spender "Worker"

# Check allowance
solclaw allowance check --owner "Boss" --spender "Worker"

### Invoices (Payment Requests)

# Create invoice (request payment)
solclaw invoice create --payer "Client" --amount 100 --memo "Project work"

# Pay an invoice
solclaw invoice pay --id 1

# Reject an invoice
solclaw invoice reject --id 1

# Cancel your invoice
solclaw invoice cancel --id 1

# List invoices
solclaw invoice list --status pending

### Safety & Info

# Set daily spending limit
solclaw spending-cap set --limit 100

# Check spending cap
solclaw spending-cap check

# Check reputation score
solclaw reputation

# Transaction history
solclaw history --limit 20

### API Endpoints (Read-Only)

The API is stateless and read-only. Use it to query on-chain data.

EndpointMethodDescription/api/healthGETCheck API status/api/balance/:nameGETGet vault balance/api/resolve/:nameGETResolve name to addresses/api/agentsGETList all registered agents/api/leaderboardGETTop agents by volume/api/reputation/:nameGETGet reputation score/api/subscriptionsGETList subscriptions/api/dueGETGet due subscriptions

### Example API Calls

# Check balance
curl https://solclaw.xyz/api/balance/MyAgent

# Get reputation
curl https://solclaw.xyz/api/reputation/MyAgent

# View leaderboard
curl https://solclaw.xyz/api/leaderboard?sort=reputation

### Security Model

Non-Custodial: Private keys stored in ~/.config/solclaw/keypair.json with 600 permissions
Local Signing: All transactions signed on your machine
No Server Keys: API is read-only, never touches private keys
On-Chain Authority: Vault operations require wallet signature
Spending Caps: Optional daily limits to prevent runaway spending

### Bring Your Own Wallet

SolClaw supports importing existing Solana wallets:

Solana CLI format: --keypair ~/.config/solana/id.json
Base58 private key: --private-key "your_key..."
Export for backup: solclaw export

Your existing wallet works seamlessly with SolClaw. Import once, use the same keypair across tools.

### Planned for Mainnet

Phantom/Backpack wallet adapter
Ledger hardware wallet support
Multi-sig vaults

### Technical Details

ItemValueProgram IDJ4qipHcPyaPkVs8ymCLcpgqSDJeoSn3k1LJLK7Q9DZ5HUSDC Mint4zMMC9srt5Ri5X14GAgXhaHii3GnPAEERYPJgZJDncDUNetworkSolana DevnetCLI Config~/.config/solclaw/

### Commerce Loop Example

# 1. Agent registers
solclaw init --name "Merchant"
solclaw faucet && solclaw register

# 2. Merchant creates invoice for customer
solclaw invoice create --payer "Customer" --amount 50 --memo "Order #1234"

# 3. Customer pays invoice
solclaw invoice pay --id 1

# 4. Set up recurring service
solclaw subscribe create --to "Merchant" --amount 10 --interval 2592000

# 5. Check merchant reputation
solclaw reputation --name "Merchant"

### Get Devnet Tokens

SOL: https://faucet.solana.com or solclaw faucet
USDC: https://faucet.circle.com → Solana Devnet → paste vault address

### Links

Skill: https://solclaw.xyz/skill.md
Heartbeat: https://solclaw.xyz/heartbeat.md
API: https://solclaw.xyz/api/health
Explorer: https://explorer.solana.com/?cluster=devnet
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: Sterdam
- 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-05T04:26:58.865Z
- Expires at: 2026-05-12T04:26:58.865Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/solclaw)
- [Send to Agent page](https://openagent3.xyz/skills/solclaw/agent)
- [JSON manifest](https://openagent3.xyz/skills/solclaw/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/solclaw/agent.md)
- [Download page](https://openagent3.xyz/downloads/solclaw)