โ† All skills
Tencent SkillHub ยท Developer Tools

Skill Exporter

Export Clawdbot skills as standalone, deployable microservices. Use when you want to dockerize a skill, deploy it to Railway or Fly.io, or create an independent API service. Generates Dockerfile, FastAPI wrapper, requirements.txt, deployment configs, and optional LLM client integration.

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

Export Clawdbot skills as standalone, deployable microservices. Use when you want to dockerize a skill, deploy it to Railway or Fly.io, or create an independent API service. Generates Dockerfile, FastAPI wrapper, requirements.txt, deployment configs, and optional LLM client integration.

โฌ‡ 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, scripts/export.py

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.0

Documentation

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

Skill Exporter

Transform Clawdbot skills into standalone, deployable microservices.

Workflow

Clawdbot Skill (tested & working) โ†“ skill-exporter โ†“ Standalone Microservice โ†“ Railway / Fly.io / Docker

Export a skill

python3 {baseDir}/scripts/export.py \ --skill ~/.clawdbot/skills/instagram \ --target railway \ --llm anthropic \ --output ~/projects/instagram-service

Options

FlagDescriptionDefault--skillPath to skill directoryrequired--targetDeployment target: railway, fly, dockerdocker--llmLLM provider: anthropic, openai, nonenone--outputOutput directory./<skill-name>-service--portAPI port8000

Targets

railway โ€” Generates railway.json, optimized Dockerfile, health checks fly โ€” Generates fly.toml, multi-region ready docker โ€” Generic Dockerfile, docker-compose.yml

LLM Integration

When --llm is set, generates llm_client.py with: Caption/prompt generation Decision making helpers Rate limiting and error handling

What Gets Generated

<skill>-service/ โ”œโ”€โ”€ Dockerfile โ”œโ”€โ”€ docker-compose.yml โ”œโ”€โ”€ api.py # FastAPI wrapper โ”œโ”€โ”€ llm_client.py # If --llm specified โ”œโ”€โ”€ requirements.txt โ”œโ”€โ”€ .env.example โ”œโ”€โ”€ railway.json # If --target railway โ”œโ”€โ”€ fly.toml # If --target fly โ””โ”€โ”€ scripts/ # Copied from original skill โ””โ”€โ”€ *.py

Requirements

The source skill must have: SKILL.md with valid frontmatter At least one script in scripts/ Scripts should be callable (functions, not just inline code)

Post-Export

Copy .env.example to .env and fill in secrets Test locally: docker-compose up Deploy: railway up or fly deploy

Category context

Code helpers, APIs, CLIs, browser automation, testing, and developer operations.

Source: Tencent SkillHub

Largest current source with strong distribution and engagement signals.

Package contents

Included in package
1 Docs1 Scripts
  • SKILL.md Primary doc
  • scripts/export.py Scripts