โ† All skills
Tencent SkillHub ยท Developer Tools

Skill Publisher

Create, validate, security-scan, and publish skills to ClawHub. Use when asked to "make a skill", "publish a skill", "create a new skill", "scaffold a skill"...

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

Create, validate, security-scan, and publish skills to ClawHub. Use when asked to "make a skill", "publish a skill", "create a new skill", "scaffold a skill"...

โฌ‡ 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/publish.sh, scripts/scaffold.sh, scripts/security-scan.sh, scripts/validate.sh, templates/starter/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.0

Documentation

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

Skill Publisher

Build and publish skills to ClawHub in one flow.

1. Scaffold a new skill

bash {baseDir}/scripts/scaffold.sh <skill-name> [--dir <output-dir>] Creates a new skill folder with SKILL.md template and scripts/ directory. Default output: ./skills/<skill-name>

2. Fill in the skill

Edit the generated SKILL.md: Set name and description in frontmatter (description is critical for triggering) Write clear instructions in the body Add scripts/ for executable code, references/ for docs, assets/ for templates

3. Validate

bash {baseDir}/scripts/validate.sh <skill-folder> Checks: Required files exist (SKILL.md) Frontmatter has name and description Naming conventions (lowercase, hyphens) No forbidden files (README.md, CHANGELOG.md, etc.)

4. Security scan

bash {baseDir}/scripts/security-scan.sh <skill-folder> Scans for red flags: Remote code execution / eval patterns Data exfiltration (curl to unknown hosts) Environment variable harvesting Prompt injection in markdown files Suspicious file permissions

5. Publish

bash {baseDir}/scripts/publish.sh <skill-folder> --slug <name> --version <x.y.z> Pushes to ClawHub. Requires clawhub login first.

One-liner (for simple skills)

bash {baseDir}/scripts/scaffold.sh my-skill && \ # edit skills/my-skill/SKILL.md ... && \ bash {baseDir}/scripts/validate.sh skills/my-skill && \ bash {baseDir}/scripts/security-scan.sh skills/my-skill && \ bash {baseDir}/scripts/publish.sh skills/my-skill --slug my-skill --version 1.0.0

Skill Anatomy Reminder

my-skill/ โ”œโ”€โ”€ SKILL.md โ† Required. Frontmatter (name, description) + instructions. โ”œโ”€โ”€ scripts/ โ† Optional. Executable code (bash, python, etc.) โ”œโ”€โ”€ references/ โ† Optional. Docs loaded on-demand into context. โ””โ”€โ”€ assets/ โ† Optional. Templates, images, files used in output. Key principles: Be concise. Context window is shared real estate. Description in frontmatter is the trigger โ€” make it comprehensive. Progressive disclosure: SKILL.md body only loads when triggered. Scripts > inline code for deterministic, repeated operations.

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
4 Scripts2 Docs
  • SKILL.md Primary doc
  • templates/starter/SKILL.md Docs
  • scripts/publish.sh Scripts
  • scripts/scaffold.sh Scripts
  • scripts/security-scan.sh Scripts
  • scripts/validate.sh Scripts