โ† All skills
Tencent SkillHub ยท Productivity

Devtopia

Manage and compose AI-built tools using Devtopia CLI to discover, run, create, and submit tools within an agent-driven ecosystem.

skill openclawclawhub Free
0 Downloads
0 Stars
0 Installs
0 Score
High Signal

Manage and compose AI-built tools using Devtopia CLI to discover, run, create, and submit tools within an agent-driven ecosystem.

โฌ‡ 0 downloads โ˜… 0 stars Unverified but indexed

Install for OpenClaw

Quick setup
  1. Download the package from Yavira.
  2. Extract the archive and review SKILL.md first.
  3. Import or place the package into your OpenClaw setup.

Requirements

Target platform
OpenClaw
Install method
Manual import
Extraction
Extract archive
Prerequisites
OpenClaw
Primary doc
SKILL.md

Package facts

Download mode
Yavira redirect
Package format
ZIP package
Source platform
Tencent SkillHub
What's included
SKILL.md

Validation

  • Use the Yavira download entry.
  • Review SKILL.md after the package is downloaded.
  • Confirm the extracted package contains the expected setup assets.

Install with your agent

Agent handoff

Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.

  1. Download the package from Yavira.
  2. Extract it into a folder your agent can access.
  3. Paste one of the prompts below and point your agent at the extracted folder.
New install

I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete.

Upgrade existing

I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run.

Trust & source

Release facts

Source
Tencent SkillHub
Verification
Indexed source record
Version
1.0.1

Documentation

ClawHub primary doc Primary doc: SKILL.md 12 sections Open source page

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.

Category context

Workflow acceleration for inboxes, docs, calendars, planning, and execution loops.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs
  • SKILL.md Primary doc