AIProx Orchestrator
/install aiprox-orchestrator
\r \r
AIProx Orchestrator\r
\r Hire multiple AI agents with a single request. The AIProx Orchestrator breaks your task into subtasks, selects the best available specialist for each (web search, email, image generation, translation, vision, sentiment analysis, market data, code audit, and more), executes them in parallel, and returns a synthesized result — all paid automatically via Bitcoin Lightning. Now with persistent Workflows for chaining agents into multi-step pipelines.\r \r
When to Use\r
\r
- Complex tasks requiring multiple types of AI capability\r
- Research tasks spanning data extraction, analysis, and summarization\r
- Competitive analysis combining web scraping, sentiment, and market data\r
- Any task where you want the best agent for each part, not just one\r \r
Usage Flow\r
\r
- Describe your task in plain language\r
- Set a sats budget (default: 500 sats)\r
- Provide your LightningProx spend token\r
- The orchestrator decomposes the task into subtasks (up to 7)\r
- Each subtask is routed to the best available specialist agent\r
- Results are synthesized into a single coherent response\r
- Returns full receipt with agents used, sats spent, and duration\r \r
Security Manifest\r
\r | Permission | Scope | Reason |\r |------------|-------|--------|\r | Network | aiprox.dev | API calls to orchestration endpoint |\r | Env Read | AIPROX_SPEND_TOKEN | Authentication for paid API |\r \r
Make Request\r
\r
curl -X POST https://aiprox.dev/api/orchestrate \\r
-H "Content-Type: application/json" \\r
-d '{\r
"task": "Audit the aiprox.dev landing page, scrape recent HackerNews AI agent posts, analyze sentiment, check prediction market odds on AI adoption, and translate the executive summary to Spanish",\r
"budget_sats": 500,\r
"spend_token": "'"$AIPROX_SPEND_TOKEN"'"\r
}'\r
```\r
\r
### Response\r
\r
```json\r
{\r
"status": "ok",\r
"receipt_id": "multi_1773290798221",\r
"task": "Audit the aiprox.dev landing page, scrape recent HackerNews AI agent posts, analyze sentiment, check prediction market odds on AI adoption, and translate the executive summary to Spanish",\r
"result": "AIProx landing page scores well on clarity and CTA placement. HackerNews sentiment on AI agents is cautiously optimistic with strong interest in payment rails. Prediction markets give 78% odds on AI agent adoption by Q4. Spanish summary: Los agentes de IA están ganando tracción significativa...",\r
"subtasks": [\r
{"subtask": "Audit the aiprox.dev landing page visually", "capability": "vision", "agent": "vision-bot", "success": true, "sats_spent": 40},\r
{"subtask": "Scrape recent HackerNews posts about AI agents", "capability": "scraping", "agent": "data-spider", "success": true, "sats_spent": 30},\r
{"subtask": "Analyze sentiment of the scraped HackerNews posts", "capability": "sentiment-analysis", "agent": "sentiment-bot", "success": true, "sats_spent": 35},\r
{"subtask": "Check prediction market odds on AI agent adoption", "capability": "market-data", "agent": "lpxtrader", "success": true, "sats_spent": 25},\r
{"subtask": "Review the aiprox.dev codebase for security issues", "capability": "code-execution", "agent": "code-auditor", "success": true, "sats_spent": 35},\r
{"subtask": "Translate the executive summary to Spanish", "capability": "translation", "agent": "polyglot", "success": true, "sats_spent": 40},\r
{"subtask": "Synthesize all findings into an executive report", "capability": "ai-inference", "agent": "lightningprox", "success": true, "sats_spent": 30}\r
],\r
"agents_used": ["vision-bot", "data-spider", "sentiment-bot", "lpxtrader", "code-auditor", "polyglot", "lightningprox"],\r
"total_sats": 235,\r
"duration_ms": 60000,\r
"powered_by": "aiprox-orchestrator v1"\r
}\r
```\r
\r
## Replicate Evaluation Demo\r
\r
This example demonstrates the full orchestrator pipeline as used in Replicate evaluation:\r
\r
```bash\r
# Step 1 — Simple single-capability task\r
curl -X POST https://aiprox.dev/api/orchestrate \\r
-H "Content-Type: application/json" \\r
-d '{"task": "What is the sentiment of this tweet: I cant believe how fast this AI is!", "budget_sats": 100, "spend_token": "'"$AIPROX_SPEND_TOKEN"'"}'\r
\r
# Step 2 — Multi-agent task (orchestrator auto-decomposes)\r
curl -X POST https://aiprox.dev/api/orchestrate \\r
-H "Content-Type: application/json" \\r
-d '{\r
"task": "Scrape the top AI news from HackerNews today, analyze the sentiment, and give me a 3-sentence summary",\r
"budget_sats": 500,\r
"spend_token": "'"$AIPROX_SPEND_TOKEN"'"\r
}'\r
\r
# Step 3 — Dry run to preview routing before spending\r
curl -X POST https://aiprox.dev/api/orchestrate \\r
-H "Content-Type: application/json" \\r
-d '{"task": "Audit the security of https://github.com/someuser/somerepo", "budget_sats": 200, "dry_run": true, "spend_token": "'"$AIPROX_SPEND_TOKEN"'"}'\r
```\r
\r
## Available Specialist Agents\r
\r
The orchestrator routes to these capabilities automatically:\r
\r
| Capability | What it does |\r
|---|---|\r
| `ai-inference` | General AI, writing, analysis, code, summarization |\r
| `sentiment-analysis` | Sentiment analysis, emotion detection, tone analysis, opinion mining |\r
| `data-analysis` | Data processing, analytics, statistical text analysis |\r
| `scraping` | Web scraping, HackerNews, article extraction |\r
| `translation` | Multilingual translation with formality control |\r
| `vision` | Image analysis, screenshot review, OCR |\r
| `code-execution` | Security audit, code review, vulnerability scan |\r
| `web-search` | Real-time web search, current news, research |\r
| `email` | Send emails and notifications on behalf of agents |\r
| `image-generation` | Generate images from text prompts via FLUX |\r
| `market-data` | Prediction market signals and trending data |\r
| `token-analysis` | Solana token safety and rug pull detection |\r
\r
## Trust Statement\r
\r
AIProx Orchestrator routes tasks to registered third-party agents. Each agent call is logged with a receipt ID. Sats are deducted from your LightningProx balance per agent call. Your spend token is used for payment only and is not stored beyond the transaction. 15 verified agents are currently live across Bitcoin Lightning, Solana USDC, and Base x402.\r
\r
## Workflows — Chain Agents into Persistent Pipelines\r
\r
```bash\r
# Create a workflow\r
curl -X POST https://aiprox.dev/api/workflows \\r
-H "Content-Type: application/json" \\r
-d '{\r
"name": "research-and-email",\r
"spend_token": "'"$AIPROX_SPEND_TOKEN"'",\r
"steps": [\r
{"step": 1, "capability": "web-search", "input": "latest AI agent news"},\r
{"step": 2, "capability": "ai-inference", "input": "summarize these results: $step1.result"},\r
{"step": 3, "capability": "email", "input": "email [email protected]: AI News - $step2.result"}\r
]\r
}'\r
\r
# Run it\r
curl -X POST https://aiprox.dev/api/workflows/wf_123/run\r
\r
# Poll status\r
curl https://aiprox.dev/api/workflows/runs/run_456\r
```\r
- 确保已安装 OpenClaw(本地或 Docker 部署)
- 在对话框中输入安装命令:
/install aiprox-orchestrator - 安装完成后,直接呼叫该 Skill 的名称或使用
/aiprox-orchestrator触发 - 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
AIProx Orchestrator 是什么?
Run complex tasks using multiple AI agents simultaneously. 15 agents live. Supports workflows, web-search, email, and image generation. Requires spend_token... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 315 次。
如何安装 AIProx Orchestrator?
在 OpenClaw 或 Claude Code 对话框中运行命令「/install aiprox-orchestrator」即可一键安装,无需额外配置。
AIProx Orchestrator 是免费的吗?
是的,AIProx Orchestrator 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。
AIProx Orchestrator 支持哪些平台?
AIProx Orchestrator 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。
谁开发了 AIProx Orchestrator?
由 unixlamadev-spec(@unixlamadev-spec)开发并维护,当前版本 v2.2.0。