← Back to Skills Marketplace
cs995279497-byte

Chen Vassili Clawhub Cli

by cs995279497-byte · GitHub ↗ · v1.0.0 · MIT-0
linuxdarwinwin32 ⚠ suspicious
146
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install chen-vassili-clawhub-cli
Description
Help developers manage OpenClaw skills with the ClawHub CLI. Use when publishing, inspecting, installing, updating, syncing, or troubleshooting ClawHub skill...
README (SKILL.md)

ClawHub CLI Assistant

Help developers manage OpenClaw skills with the ClawHub CLI.

Give exact commands first, keep explanations short, and prefer step-by-step instructions the user can run directly.

Quick Start

clawhub install \x3Cskill-slug>
clawhub inspect \x3Cowner>/\x3Cskill>
clawhub publish . --slug my-skill --name "My Skill" --version 1.0.0 --tags latest
Best For
Skill authors

ClawHub publishers

OpenClaw users managing local skills

Developers troubleshooting CLI workflows

Quick Reference
Need	Command
Search skills	clawhub search "query"
Install a skill	clawhub install \x3Cskill-slug>
Inspect a skill	clawhub inspect \x3Cowner>/\x3Cskill>
Update one skill	clawhub update \x3Cskill-slug>
Update all skills	clawhub update --all
Publish a local skill	clawhub publish .
Sync local skills	clawhub sync --all
Check login	clawhub whoami
Log in	clawhub login
When to Use
Use this skill when the user asks about:

Publishing a skill to ClawHub

Releasing a new skill version

Inspecting a published skill bundle

Installing a skill

Updating one or more skills

Syncing local skills with the registry

Logging in to ClawHub

Troubleshooting ClawHub CLI commands

When Not to Use
Do not use this skill for:

Generic Git questions

Unrelated programming tasks

OpenClaw runtime configuration outside skill management

Dashboard walkthroughs unless explicitly requested

Core Rules
text
1. Provide exact CLI commands first.
2. Prefer the shortest correct workflow.
3. Use official command forms only.
4. Mention required flags only when needed.
5. Distinguish local workspace actions from registry actions.
6. Suggest login early if auth may be the issue.
7. Do not invent unsupported commands or flags.
Common Commands
bash
clawhub search "calendar"
clawhub install \x3Cskill-slug>
clawhub inspect \x3Cowner>/\x3Cskill>
clawhub update \x3Cskill-slug>
clawhub update --all
clawhub list
clawhub publish .
clawhub sync --all
clawhub login
clawhub whoami
clawhub logout
Common Workflows
Publish

bash
clawhub publish . \
  --slug my-skill \
  --name "My Skill" \
  --version 1.0.0 \
  --changelog "Initial release" \
  --tags latest
Release a New Version

bash
clawhub publish . \
  --slug my-skill \
  --name "My Skill" \
  --version 1.1.0 \
  --changelog "Improved workflow and documentation" \
  --tags latest
Install

bash
clawhub install \x3Cskill-slug>
clawhub install \x3Cskill-slug> --version 1.2.0
clawhub install \x3Cskill-slug> --force
Update

bash
clawhub update \x3Cskill-slug>
clawhub update --all
clawhub update \x3Cskill-slug> --version 1.2.0
Sync

bash
clawhub sync --dry-run
clawhub sync --all
clawhub sync --all --bump patch --changelog "Maintenance update" --tags latest
Troubleshooting
Auth

bash
clawhub whoami
clawhub login
clawhub login --token \x3Ctoken>
SKILL.md Missing

text
- Ensure SKILL.md exists
- Ensure it is in the root of the skill folder
- Ensure the publish path points to that folder
Wrong Working Directory

bash
clawhub --workdir /path/to/project publish ./my-skill
Local Files Do Not Match Published Version

bash
clawhub update \x3Cskill-slug> --force
Useful Notes
A skill is a folder with a SKILL.md file, and ClawHub stores published skills as versioned bundles with metadata, tags, and changelogs. [page:0]
By default, the CLI installs into ./skills under the current working directory, or falls back to the configured OpenClaw workspace unless --workdir or CLAWHUB_WORKDIR overrides it. [page:0]
OpenClaw picks up workspace skills in the next session, so users should restart after install or update. [page:0]

Output Template
text
## Command
[Exact command to run]

## What It Does
[One short explanation]

## Notes
- prerequisite 1
- prerequisite 2

## Next Step
[What to run next]
Tips
Use clawhub whoami before troubleshooting auth or publish issues.

Use clawhub sync --dry-run before bulk publishing.

Prefer explicit --slug, --name, and --version for releases.

Use --workdir when the current directory is not the correct project root.

Use clawhub update --all for installed skills and clawhub sync --all for local publish workflows.

Author
Vassiliy Lakhonin
Usage Guidance
The SKILL.md itself appears legitimate for a ClawHub CLI helper, but the package files contain conflicting metadata: _meta.json lists a different ownerId, slug, and version than the registry entry. That mismatch can indicate a packaging error or that the bundle has been republished under a different identity. Before installing or following commands: 1) Verify the publisher (ask for the canonical source or repository and confirm ownerId/slug); 2) Confirm the skill's provenance from the official ClawHub docs or organization; 3) Prefer running clawhub commands in an isolated/test workspace or sandbox; 4) Do not paste tokens or sensitive credentials until you confirm you are interacting with the official clawhub binary and a trusted package. If the publisher cannot explain the metadata discrepancy, treat the package as untrusted.
Capability Analysis
Type: OpenClaw Skill Name: chen-vassili-clawhub-cli Version: 1.0.0 The skill bundle contains documentation and command templates for the ClawHub CLI, designed to assist users with skill management tasks such as installation, publishing, and updates. No malicious code, data exfiltration, or harmful instructions were found in SKILL.md or _meta.json, and the content aligns perfectly with its stated purpose.
Capability Assessment
Purpose & Capability
The SKILL.md provides exact clawhub CLI commands and workflows for publishing, inspecting, installing, updating, syncing, and troubleshooting skills — this aligns with the skill name and description. No unrelated binaries or capabilities are requested.
Instruction Scope
Instructions stay within the claimed scope (CLI commands, workdir behavior, SKILL.md placement, auth via clawhub). The document references CLAWHUB_WORKDIR and token-based login forms but does not instruct arbitrary file reads or exfiltration. It does instruct users to run local CLI commands which will access local files (expected for this purpose).
Install Mechanism
No install spec or code files are included — this is instruction-only, so nothing will be written to disk by the skill itself. That minimizes installer-related risk.
Credentials
The skill declares no required environment variables or credentials, which is appropriate. The doc references CLAWHUB_WORKDIR and command-line token login, so the CLI (not the skill) may use credentials; you should ensure you trust the clawhub CLI before supplying tokens. The absence of required secrets in registry metadata is proportional.
Persistence & Privilege
always is false and the skill is user-invocable only. There is no install or autonomous persistence requested by the skill itself.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install chen-vassili-clawhub-cli
  3. After installation, invoke the skill by name or use /chen-vassili-clawhub-cli
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v1.0.0
Initial release: ClawHub CLI assistant for managing OpenClaw skills. - Guides developers through installing, updating, publishing, and inspecting skills using the ClawHub CLI. - Provides exact CLI command templates and concise step-by-step instructions. - Covers authentication, workspace directory behavior, and common troubleshooting steps. - Includes quick references for frequent commands and best practices.
Metadata
Slug chen-vassili-clawhub-cli
Version 1.0.0
License MIT-0
All-time Installs 1
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Chen Vassili Clawhub Cli?

Help developers manage OpenClaw skills with the ClawHub CLI. Use when publishing, inspecting, installing, updating, syncing, or troubleshooting ClawHub skill... It is an AI Agent Skill for Claude Code / OpenClaw, with 146 downloads so far.

How do I install Chen Vassili Clawhub Cli?

Run "/install chen-vassili-clawhub-cli" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Chen Vassili Clawhub Cli free?

Yes, Chen Vassili Clawhub Cli is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Chen Vassili Clawhub Cli support?

Chen Vassili Clawhub Cli is cross-platform and runs anywhere OpenClaw / Claude Code is available (linux, darwin, win32).

Who created Chen Vassili Clawhub Cli?

It is built and maintained by cs995279497-byte (@cs995279497-byte); the current version is v1.0.0.

💬 Comments