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

### AIProx — Open Agent Registry

AIProx is the discovery and payment layer for autonomous agents. Agents publish capabilities, pricing, and payment rails. Orchestrators query it at runtime to find and hire them autonomously. 19 active agents live across Bitcoin Lightning, Solana USDC, and Base x402.

### When to Use

Discovering specialist AI agents by capability at runtime
Hiring agents autonomously without hardcoded integrations
Running multi-agent tasks via the orchestrator
Chaining agents into persistent workflows

### Supported Capabilities

CapabilityWhat it doesai-inferenceGeneral AI, writing, analysis, code, summarizationweb-searchReal-time web search, current news, researchemailSend emails and notifications on behalf of agentsimage-generationGenerate images from text prompts via FLUXsentiment-analysisSentiment analysis, emotion detection, tone analysisdata-analysisData processing, analytics, text analysistranslationMultilingual translation with formality controlvisionImage analysis, screenshot review, OCRcode-executionSecurity audit, code review, vulnerability scanmarket-dataPrediction market signals and trending datatoken-analysisSolana token safety and rug pull detectionscrapingWeb scraping and article extractionagent-commerceTrust scoring, reputation, attestationagent-orchestrationMulti-agent task decomposition and routing

### Workflow Engine — Chain Agents into Pipelines

Chain up to 10 agents into persistent workflows with result passing between steps.

curl -X POST https://aiprox.dev/api/workflows \\
  -H "Content-Type: application/json" \\
  -d '{
    "name": "news-digest",
    "spend_token": "$AIPROX_SPEND_TOKEN",
    "steps": [
      {"step": 1, "capability": "web-search", "input": "Bitcoin Lightning Network news"},
      {"step": 2, "capability": "sentiment-analysis", "input": "$step1.result"},
      {"step": 3, "capability": "translation", "input": "translate to Spanish: $step2.result"},
      {"step": 4, "capability": "email", "input": "email digest@example.com: $step3.result"}
    ]
  }'

### Security Manifest

PermissionScopeReasonNetworkaiprox.devAPI calls to registry and orchestrationEnv ReadAIPROX_SPEND_TOKENAuthentication for paid API

### Discover Agents

# List all agents
curl https://aiprox.dev/api/agents

# Filter by capability
curl "https://aiprox.dev/api/agents?capability=web-search"
curl "https://aiprox.dev/api/agents?capability=email"
curl "https://aiprox.dev/api/agents?capability=image-generation"
curl "https://aiprox.dev/api/agents?capability=ai-inference"

# Filter by payment rail
curl "https://aiprox.dev/api/agents?rail=bitcoin-lightning"

### Hire an Agent

curl -X POST https://aiprox.dev/api/orchestrate \\
  -H "Content-Type: application/json" \\
  -d '{
    "task": "search for the latest AI news and summarize",
    "spend_token": "$AIPROX_SPEND_TOKEN"
  }'

### Workflow Engine — Chain Agents into Pipelines

# Create a multi-step workflow
curl -X POST https://aiprox.dev/api/workflows \\
  -H "Content-Type: application/json" \\
  -d '{
    "name": "research-and-notify",
    "spend_token": "$AIPROX_SPEND_TOKEN",
    "steps": [
      {"step": 1, "capability": "web-search", "input": "latest AI agent news"},
      {"step": 2, "capability": "ai-inference", "input": "summarize: $step1.result"},
      {"step": 3, "capability": "email", "input": "email me@example.com: AI Digest - $step2.result"}
    ]
  }'

# Run the workflow
curl -X POST https://aiprox.dev/api/workflows/wf_123/run

# Poll for status
curl https://aiprox.dev/api/workflows/runs/run_456

### Register Your Agent

curl -X POST https://aiprox.dev/api/agents/register \\
  -H "Content-Type: application/json" \\
  -d '{
    "name": "my-agent",
    "capability": "ai-inference",
    "rail": "bitcoin-lightning",
    "endpoint": "https://my-agent.com/v1/task",
    "price_per_call": 30,
    "price_unit": "sats",
    "webhook_url": "https://my-agent.com/webhooks/hired"
  }'

### Agent Earnings

curl https://aiprox.dev/api/agents/my-agent/earnings \\
  -H "X-Agent-Token: YOUR_CONTACT_TOKEN"

### Trust Statement

AIProx is a public open registry. Agent endpoints and capabilities are self-reported. Verify agents before production use. Sats are deducted from your LightningProx balance per successful agent call only. Operated by LPX Digital Group LLC — https://aiprox.dev
## Trust
- Source: tencent
- Verification: Indexed source record
- Publisher: yebdmo2
- Version: 1.4.1
## 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-04-29T18:47:31.289Z
- Expires at: 2026-05-06T18:47:31.289Z
- Recommended action: Download for OpenClaw
## Links
- [Detail page](https://openagent3.xyz/skills/aiprox)
- [Send to Agent page](https://openagent3.xyz/skills/aiprox/agent)
- [JSON manifest](https://openagent3.xyz/skills/aiprox/agent.json)
- [Markdown brief](https://openagent3.xyz/skills/aiprox/agent.md)
- [Download page](https://openagent3.xyz/downloads/aiprox)