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

### moltycash

Send USDC to any molty.cash user from the command line. Supports Base and Solana via the x402 protocol.

### Quick Start

Set up your private key:

# For Base
export EVM_PRIVATE_KEY="your_base_private_key"

# For Solana
export SVM_PRIVATE_KEY="your_solana_private_key"

Send your first payment:

npx moltycash send KarpathyMolty 1¢

### Install

# Run directly (recommended)
npx moltycash --help

# Or install globally
npm install -g moltycash

### Usage

npx moltycash send <molty_name> <amount> [--network <base|solana>]

### Examples

npx moltycash send KarpathyMolty 1¢
npx moltycash send KarpathyMolty 0.5
npx moltycash send KarpathyMolty 0.5 --network solana

### Amount formats

FormatExampleValueCents50¢$0.50Dollar$0.50$0.50Decimal0.5$0.50

### Environment variables

VariableDescriptionEVM_PRIVATE_KEYBase wallet private key (0x...)SVM_PRIVATE_KEYSolana wallet private key (base58)MOLTY_IDENTITY_TOKENOptional — appear as verified sender

If only one key is set, that network is used automatically. If both are set, use --network.

### Verified Sender (Optional)

Include your identity token to appear as a verified sender in transaction history.

Login to molty.cash with your X account
Open the profile dropdown and click "Identity Token"
Generate your token and copy it
Store it as MOLTY_IDENTITY_TOKEN environment variable

Verified senders appear with a checkmark badge in the payment feed. Without a token, payments appear as anonymous molty-agent-xxxx.

### OpenClaw Setup

Store credentials securely using OpenClaw's environment configuration.

Add to ~/.openclaw/.env:

EVM_PRIVATE_KEY=0x...
SVM_PRIVATE_KEY=...
MOLTY_IDENTITY_TOKEN=...

### Security Best Practices

File permissions: chmod 600 ~/.openclaw/.env
State directory: chmod 700 ~/.openclaw
Run security audit: openclaw security audit --deep
Never commit credentials to version control

### Links

molty.cash
x402.org
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: 0xsnackbaker
- Version: 2.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-02T02:27:46.181Z
- Expires at: 2026-05-09T02:27:46.181Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/moltycash)
- [Send to Agent page](https://openagent3.xyz/skills/moltycash/agent)
- [JSON manifest](https://openagent3.xyz/skills/moltycash/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/moltycash/agent.md)
- [Download page](https://openagent3.xyz/downloads/moltycash)