Overview
- Skill Key
- deeflect/smart-spawn
- Author
- deeflect
- Source Repo
- openclaw/skills
- Version
- -
- Source Path
- skills/deeflect/smart-spawn
- Latest Commit SHA
- 50c33ead04f07a3ce3ec2ba64dd6a1b668a7d704
Pick the best AI model for any task using the Smart Spawn API. No plugin needed — just HTTP requests to ss.deeflect.com/api.
Stars
0
Installs
0
Status
ACTIVE
Visibility
PUBLIC
直接复制以下提示词,发送给你的 AI 助手即可完成安装。
请先检查是否已安装 SkillHub 商店,若未安装,请根据 https://skillhub-1388575217.cos.ap-guangzhou.myqcloud.com/install/skillhub.md 安装 SkillHub 商店,然后安装 smart-spawn-api 技能。 若已安装,则直接安装 smart-spawn-api 技能。
# Smart Spawn API
Pick the best AI model for any task. Call the API, get a model recommendation, spawn with it.
**No plugin required.** Works with any OpenClaw instance or any HTTP client.
## Quick Start
```
1. GET ss.deeflect.com/api/pick?task=<description>&budget=<tier>
2. Use the returned model ID in sessions_spawn
```
## Pick Best Model
```bash
GET https://ss.deeflect.com/api/pick?task=build+a+react+dashboard&budget=medium
```
Response:
```json
{
"data": {
"id": "anthropic/claude-opus-4.6",
"name": "Claude Opus 4.6",
"score": 86,
"pricing": { "prompt": 5, "completion": 25 },
"reason": "Best general model at medium budget ($0-5/M) — score: 86"
}
}
```
Then spawn:
```
sessions_spawn(task="Build a React dashboard with auth", model="anthropic/claude-opus-4.6")
```
## Parameters
| Param | Required | Description |
|-------|----------|-------------|
| `task` | Yes | Task description or category: `coding`, `reasoning`, `creative`, `vision`, `research`, `fast-cheap`, `general` |
| `budget` | No | `low` ($0-1/M), `medium` ($0-5/M, default), `high` ($2-20/M), `any` |
| `exclude` | No | Comma-separated model IDs to skip |
| `context` | No | Tags like `vision,long-context` for routing boost |
## Get Multiple Recommendations
```bash
GET https://ss.deeflect.com/api/recommend?task=coding&budget=low&count=3
```
Returns diverse models from different providers. Use for collective/parallel spawning.
## Compare Models
```bash
GET https://ss.deeflect.com/api/compare?models=anthropic/claude-opus-4.6,openai/gpt-5.2
```
Side-by-side scores, pricing, capabilities.
## Browse All Models
```bash
GET https://ss.deeflect.com/api/models?category=coding&sort=score&limit=10
```
Sort by `score`, `cost`, `efficiency`, or any category name.
## Decompose Complex Tasks
```bash
POST https://ss.deeflect.com/api/decompose
{"task": "Build and deploy a SaaS app", "budget": "medium"}
```
Returns sequential steps with optimal model per step.
## Swarm (Parallel...
capt-marbles
Task Router
capncoconut
Register, communicate, and earn on the x402hub AI agent marketplace. Use when an agent needs to register on x402hub, browse or claim bounties, submit deliverables, send messages to other agents via x402 Relay, check marketplace stats, or manage agent credentials. Triggers on x402hub, agent marketplace, bounty, relay messaging, agent-to-agent communication, or USDC earning.
capevace
Real-time event bus for AI agents. Publish, subscribe, and share live signals across a network of agents with Unix-style simplicity.
captchasco
OpenClaw integration guidance for CAPTCHAS Agent API, including OpenResponses tool schemas and plugin tool registration.
carol-gutianle
name: modelready description: Start using a local or Hugging Face model instantly, directly from chat. metadata: {"openclaw":{"requires":{"bins": "bash", "curl" }, "env": "URL" }}
canbirlik
Controls Wiz smart bulbs (turn on/off, RGB colors, disco mode) via local WiFi.