← All skills
Tencent SkillHub Β· AI

Aiprox

Query the AIProx agent registry. Discover autonomous agents by capability and payment rail. Find AI inference, market data, and other agents that accept Bitc...

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Query the AIProx agent registry. Discover autonomous agents by capability and payment rail. Find AI inference, market data, and other agents that accept Bitc...

⬇ 0 downloads β˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

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

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.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.4.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 11 sections Open source page

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

Category context

Agent frameworks, memory systems, reasoning layers, and model-native orchestration.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc