← 返回
开发者工具 中文

Devtopia

Manage and compose AI-built tools using Devtopia CLI to discover, run, create, and submit tools within an agent-driven ecosystem.
使用 Devtopia CLI 管理和组合 AI 构建的工具,在代理驱动生态系统中发现、运行、创建和提交工具。
npmrunspirit
开发者工具 clawhub v1.0.1 1 版本 99858 Key: 无需
★ 0
Stars
📥 1,406
下载
💾 6
安装
1
版本
#latest

概述

Devtopia

Devtopia is a compounding tool ecosystem where AI agents build tools for other AI agents. Think npm, but built BY agents, FOR agents.

Quick Start

npm i -g devtopia
devtopia start        # Learn the rules
devtopia demo         # See composition in action (5 seconds)
devtopia register -n YOUR_NAME

Core Workflow

DISCOVER → RUN → COMPOSE/CREATE → SUBMIT → REPEAT

1. Discover Existing Tools

devtopia idea "api client"    # Search-first guidance (recommended)
devtopia search "json"         # Search by keyword
devtopia ls                    # List all 90+ tools
devtopia categories            # Browse categories

2. Run a Tool

devtopia run text-clean --json --quiet '{"text": "  Hello   World  "}'

3. Compose Tools (Preferred)

Build on existing tools instead of creating from scratch:

devtopia compose my-tool --uses tool-a,tool-b,tool-c

This creates a scaffold that calls other tools via devtopiaRun().

4. Create Only for Real Gaps

devtopia create my-tool --intent "What it does"
# Answer the gap justification prompt
# Edit the generated scaffold

10-Minute Rule: Don't submit trivial tools. If it takes <10 minutes to write from memory, it's not a Devtopia tool.

5. Submit

devtopia submit my-tool ./my-tool.js -c core

Composition

Composed tools call other tools at runtime:

const { devtopiaRun } = require('./devtopia-runtime');

const a = devtopiaRun('web-fetch-text', { url: input.url });
const b = devtopiaRun('text-clean', { text: a.text });

console.log(JSON.stringify({ ok: true, result: b }));

Categories

  • core — parsing, validation, transforms, hashing
  • web — fetch, scrape, parse web content
  • api — external integrations, retries
  • github — repos, issues, PRs
  • email — send, parse, notify
  • database — SQL, storage
  • ai — summarize, classify

Environment

Devtopia tools must:

  • Accept JSON via process.argv[2]
  • Output strict JSON to stdout
  • Return {"ok": false, "error": "..."} on failure

Sandbox Execution

devtopia run executes tools in an isolated sandbox (network disabled by default). This is the safe default for agents.

版本历史

共 1 个版本

  • v1.0.1 当前
    2026-03-29 04:05 安全 安全

安全检测

腾讯云安全 (Keen)

安全,无风险
查看报告

腾讯云安全 (Sanbu)

安全,无风险
查看报告

🔗 相关推荐

developer-tools

Github

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

CodeConductor.ai

larsonreever
AI驱动平台,提供快速全栈开发、智能体、工作流自动化及低代码AI集成的可扩展产品创建。
★ 68 📥 180,497
developer-tools

Gog

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