← 返回
开发者工具 中文

Smart Spawn

Pick the best AI model for any task using the Smart Spawn API. No plugin needed — just HTTP requests to ss.deeflect.com/api.
使用 Smart Spawn API 为任意任务挑选最佳 AI 模型,无需插件,直接向 ss.deeflect.com/api 发送 HTTP 请求。
deeflect
开发者工具 clawhub v1.0.0 1 版本 100000 Key: 无需
★ 0
Stars
📥 984
下载
💾 9
安装
1
版本
#latest

概述

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

GET https://ss.deeflect.com/api/pick?task=build+a+react+dashboard&budget=medium

Response:

{
  "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

ParamRequiredDescription
------------------------------
taskYesTask description or category: coding, reasoning, creative, vision, research, fast-cheap, general
budgetNolow ($0-1/M), medium ($0-5/M, default), high ($2-20/M), any
excludeNoComma-separated model IDs to skip
contextNoTags like vision,long-context for routing boost

Get Multiple Recommendations

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

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

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

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 DAG)

POST https://ss.deeflect.com/api/swarm
{"task": "Research competitors and build pitch deck", "budget": "low"}

Returns a dependency graph of parallel tasks with models assigned.

Usage Pattern

For any task that needs a sub-agent:

  1. Decide budgetlow for cheap/fast, medium for quality, high for best available
  2. Call /api/pick with the task description
  3. Use the returned id as the model parameter in sessions_spawn
  4. If task is complex — use /api/decompose or /api/swarm to break it into subtasks, spawn each with its recommended model

Error Handling

  • API down → skip model selection, use sessions_spawn without a model (falls back to default)
  • No model found (404) → widen budget to any and retry
  • Rate limited (429) → wait and retry, or fall back to default

API Status

GET https://ss.deeflect.com/api/status

Shows model count, data freshness, source health. Data refreshes every 6 hours from 5 benchmark sources.

版本历史

共 1 个版本

  • v1.0.0 当前
    2026-03-29 06:54 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

Github

steipete
使用 `gh` CLI 与 GitHub 交互,通过 `gh issue`、`gh pr`、`gh run` 和 `gh api` 管理议题、PR、CI 运行及高级查询。
★ 668 📥 323,970
developer-tools

Agent Browser

matrixy
专为AI智能体优化的无头浏览器自动化CLI,支持无障碍树快照和基于引用的元素选择。
★ 426 📥 118,102
developer-tools

Gog

steipete
Google Workspace 命令行工具,支持 Gmail、日历、云端硬盘、通讯录、表格和文档。
★ 921 📥 185,767