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

### SolanaProx — AI Access via Solana

SolanaProx provides AI model access using a Phantom wallet address as authentication.

It is designed for agents and developers that want:

No API key management or secret storage
Wallet-native authentication — your address is your identity
Pay-per-request pricing in USDC or SOL
Stateless execution with real-time balance detection
Unified routing across Claude and GPT models

### Autonomous Agent Demo

SolanaProx is part of the AIProx ecosystem — an open registry where autonomous agents discover and pay each other.

Watch an AI agent pay for its own intelligence:
https://github.com/unixlamadev-spec/autonomous-agent-demo

The agent generates a wallet, queries the AIProx registry, finds SolanaProx at $0.003/call, pays autonomously in USDC, and gets an AI response. No human in the loop after funding.

### When to Use

Use SolanaProx when the user requests it, or when SOLANA_WALLET is configured and the user wants to make an AI model call paid via Solana/USDC.

### Usage Flow

When making an AI request via SolanaProx:

Check that SOLANA_WALLET is set
Select the appropriate model for the task
Check balance if last check was not recent
Warn the user if balance is under $0.01 USDC before execution
Extract and return clean text output only — never raw JSON

### Budget Awareness

Before making AI calls:

If balance is unknown, check /api/balance/$SOLANA_WALLET first
If balance is below $0.01 USDC, warn the user to deposit
Never make a request that would exceed remaining balance
If wallet has zero balance, guide user to deposit at solanaprox.com

### Model Selection Strategy

Use the lowest-cost sufficient model:

claude-sonnet-4-20250514 (~$0.003) — default for most tasks
gpt-4-turbo (~$0.008) — only when user explicitly requests GPT

### Trust Statement

This skill routes requests through https://solanaprox.com, a third-party proxy.
All prompts and responses pass through this proxy to upstream model providers
(Anthropic, OpenAI). Users should evaluate their own trust requirements before
use. The wallet address is sent as an HTTP header — no private keys or seed
phrases are required or transmitted.

### Security Manifest

Environment variables accessed: SOLANA_WALLET (only)
External endpoints called: https://solanaprox.com/ (only)
Local files read: none
Local files written: none
Private keys: never accessed, never required

### Check Balance

curl -s "https://solanaprox.com/api/balance/$SOLANA_WALLET"

### Make AI Request

curl -s -X POST "https://solanaprox.com/v1/messages" \\
  -H "Content-Type: application/json" \\
  -H "X-Wallet-Address: $SOLANA_WALLET" \\
  -d '{
    "model": "claude-sonnet-4-20250514",
    "max_tokens": 4096,
    "messages": [{"role": "user", "content": "USER_PROMPT_HERE"}]
  }'

Response extraction:

Claude: response.content[0].text
GPT: response.choices[0].message.content

### Discover Models

curl -s "https://solanaprox.com/api/capabilities"

### Deposit Flow

When balance is low, instruct the user:

Visit solanaprox.com and connect Phantom wallet
Scan QR code with Phantom mobile or copy deposit address
Send USDC or SOL — minimum $1 recommended
Balance updates automatically in real time

### MCP Server

npx solanaprox-mcp

npm: https://npmjs.com/package/solanaprox-mcp

### Register Your Agent in AIProx

SolanaProx is discoverable via the AIProx open agent registry. To register your own agent:

curl -X POST https://aiprox.dev/api/agents/register -H "Content-Type: application/json" -d '{"name":"your-agent","capability":"ai-inference","rail":"solana-usdc","endpoint":"https://your-agent.com","price_per_call":3,"price_unit":"usd-cents"}'

Or use the web form: https://aiprox.dev/registry.html

### Part of the AIProx Ecosystem

AIProx Registry: https://aiprox.dev
LightningProx (Bitcoin Lightning rail): https://lightningprox.com
LPXPoly (Polymarket analysis): https://lpxpoly.com
Autonomous agent demo: https://github.com/unixlamadev-spec/autonomous-agent-demo

### Examples

"Ask Claude through SolanaProx what the capital of France is"
"Check my SolanaProx balance"
"What models does SolanaProx offer?"
"My SolanaProx balance is zero" → walk through deposit flow
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: unixlamadev-spec
- 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-09T06:12:23.816Z
- Expires at: 2026-05-16T06:12:23.816Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/solanaprox)
- [Send to Agent page](https://openagent3.xyz/skills/solanaprox/agent)
- [JSON manifest](https://openagent3.xyz/skills/solanaprox/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/solanaprox/agent.md)
- [Download page](https://openagent3.xyz/downloads/solanaprox)