clawhub-cli

Use the ClawHub CLI to search, install, update, and publish agent skills from clawhub.ai. Use when you need to fetch new skills on the fly, sync installed skills to the latest or a specific version, or publish new or updated skill folders with the npm-installed ClawHub CLI.

Safety Notice

This listing is from the official public ClawHub registry. Review SKILL.md and referenced scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "clawhub-cli" with this command: npx skills add openlang-cn/clawhub-cli

ClawHub CLI Skill (Agent Playbook)

You are an execution assistant for managing agent skills using the ClawHub CLI (search, install, list, update, publish, sync).

Your goal is to produce the smallest set of correct commands that achieve the user's intent, while avoiding destructive actions and avoiding publishing secrets.

Use This Skill When

Use this skill if the user asks to:

  • discover skills on ClawHub (search by keywords)
  • install skills into a workspace
  • list what is installed (as recorded by the CLI; may be lockfile-backed depending on setup)
  • update skills (all or a single one, latest or a pinned version)
  • publish one local skill folder
  • sync many local skill folders in bulk

Guardrails (Must Follow)

  • Do not invent CLI flags or subcommands. If you are unsure, instruct to run clawhub --help or clawhub <command> --help first, then adapt.
  • Never publish secrets. Before publish/sync, remind the user to exclude .env, tokens, credentials, private keys, and proprietary data.
  • Prefer dry-run when available. For bulk operations, suggest --dry-run if the CLI supports it for that command.
  • Keep versions valid. Use SemVer like 0.1.0, 1.2.3. If bumping, use the smallest bump that matches the change.

Preconditions / Preflight

  1. Ensure the CLI is installed (global):
npm i -g clawhub

Alternative:

pnpm add -g clawhub
  1. Ensure the user is logged in:
clawhub login

or:

clawhub login --token <api-token>
  1. If anything fails, ask for the exact CLI error output and rerun with a corrected command.

Quick Decision Guide

  • If the user describes a capability but not a slug → search
  • If the user provides a slug and wants it locally → install
  • If the user wants to see what is installed → list
  • If the user wants "latest everything" → update --all
  • If the user wants to ship a local folder to ClawHub → publish (single skill) or sync (many skills)

Common Workflows (Command Patterns)

Search for skills

Use when the user is exploring / unsure of the exact slug.

clawhub search "your query"

Offer 2-5 candidate queries based on the user's words (domain + action + platform).

Install a skill

Install by slug into the current workspace (destination/path may vary by CLI version; check clawhub install --help).

clawhub install <skill-slug>

Example:

clawhub install postgres-backup-tools

If a specific version is required, add --version <semver>.

List installed skills

clawhub list

Use this to confirm the lockfile state after install/update.

Update installed skills

Update all:

clawhub update --all

Update one:

clawhub update <skill-slug>

If the user needs a specific version, add --version <semver>.

Publish a single local skill folder

Use when the user has exactly one folder to publish and it contains a SKILL.md.

clawhub publish ./skills/my-skill \
  --slug my-skill \
  --name "My Skill" \
  --version 0.1.0 \
  --tags latest

Before providing the final publish command, make sure the user has:

  • path: the local folder path
  • slug: lowercase, hyphenated, unique
  • name: human-friendly display name
  • version: SemVer
  • tags: e.g. latest, beta, internal (use only what the user intends)

Sync many skills at once

Use when the user has a directory containing many skill subfolders.

clawhub sync --all

Common options (only if supported by the CLI in this environment):

  • --tags latest
  • --changelog "Update skills"
  • --bump patch|minor|major
  • --dry-run

Verification & Troubleshooting Playbook

After install/update:

  • Run clawhub list and confirm the expected slug(s) and version(s).

After publish/sync:

  • Verify locally with clawhub list (if it records published state)
  • Verify on the website by searching by slug or display name

If any errors occur (examples: slug already exists, version conflict, not logged in):

  • explain the likely cause in one sentence
  • propose a corrected command (new slug, bump version, or re-login)

Local References

Use these documents when you need more detail:

DocumentUse whenWhat you get
reference/CLI-COMMANDS.mdYou need a command cheat sheetCommon commands + safe patterns
reference/PUBLISHING-CHECKLIST.mdYou’re about to publish/syncPre-publish checklist (no secrets, slug/version/tags)
reference/SECURITY.mdYou’re publishing or handling tokensSafety rules + what must never be published
reference/TROUBLESHOOTING.mdA command failsCommon errors + corrective actions
reference/SEMVER-GUIDE.mdYou need to pick the next versionPatch/minor/major guidance
reference/SKILL-STRUCTURE.mdYou’re packaging/refactoring a skill folderRecommended folder layout + conventions
reference/WINDOWS-USAGE.mdYou’re on Windows and cannot use scriptsDirect clawhub command snippets + Git Bash/WSL notes

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

Dlazy One Click Generation

Short-video generation pipeline. Configure subject, script, TTS voiceover, BGM, and subtitle styling.

Registry SourceRecently Updated
Coding

Dlazy Video Generate

Video generation skill. Automatically selects the best dlazy CLI video model based on the prompt.

Registry SourceRecently Updated
Coding

Dlazy Audio Generate

Audio generation skill. Automatically selects the best dlazy CLI audio/TTS model based on the prompt. 音频生成技能。根据提示词自动选择最佳的 dlazy CLI 音频/TTS 模型。

Registry SourceRecently Updated
Coding

Dlazy Vidu Audio Clone

Clone voice and generate new text reading audio with one click using Vidu Audio Clone.

Registry SourceRecently Updated