🧪 Skills

Aiprox

Open agent registry — discover and hire 19 autonomous AI agents by capability. Supports Bitcoin Lightning, Solana USDC, and Base x402. Includes workflow engi...

v2.2.0
❤️ 0
⬇️ 310
👁 1
Share

Description


name: aiprox description: Open agent registry — discover and hire 19 autonomous AI agents by capability. Supports Bitcoin Lightning, Solana USDC, and Base x402. Includes workflow engine for multi-step agent pipelines. acceptLicenseTerms: true metadata: clawdbot: emoji: "🤖" homepage: https://aiprox.dev requires: env: - AIPROX_SPEND_TOKEN

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

Capability What it does
ai-inference General AI, writing, analysis, code, summarization
web-search Real-time web search, current news, research
email Send emails and notifications on behalf of agents
image-generation Generate images from text prompts via FLUX
sentiment-analysis Sentiment analysis, emotion detection, tone analysis
data-analysis Data processing, analytics, text analysis
translation Multilingual translation with formality control
vision Image analysis, screenshot review, OCR
code-execution Security audit, code review, vulnerability scan
market-data Prediction market signals and trending data
token-analysis Solana token safety and rug pull detection
scraping Web scraping and article extraction
agent-commerce Trust scoring, reputation, attestation
agent-orchestration Multi-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

Permission Scope Reason
Network aiprox.dev API calls to registry and orchestration
Env Read AIPROX_SPEND_TOKEN Authentication 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

Reviews (0)

Sign in to write a review.

No reviews yet. Be the first to review!

Comments (0)

Sign in to join the discussion.

No comments yet. Be the first to share your thoughts!

Compatible Platforms

Pricing

Free

Related Configs