guide12 min read2h ago

ClawHub Explained: OpenClaw's Skill Registry, Security Risks, and Setup (2026)

ClawHub is the npm of AI agent skills: 31,000+ OpenClaw skills, one-command installs, and a serious supply-chain security story. How it works, how to vet skills, and whether to trust it.

ClawHub Explained: OpenClaw's Skill Registry, Security Risks, and Setup (2026)
clawhubopenclawai agent skillsskill registryagent securityskill marketplaceopen source aiclaude skills

TL;DR — ClawHub Is npm for AI Agent Skills

ClawHub is the public registry where the OpenClaw community publishes, versions, and installs agent skills. One command (openclaw skills install) adds a new capability to your agent. It is free, open source, and huge: 31,000+ skills as of mid-2026. It is also the wild west. Security researchers found hundreds of malicious skills in early 2026, including credential stealers at the top of the download charts, before VirusTotal scanning was added. Use it, but vet everything you install.

Best for: OpenClaw users who want community skills fast and are willing to read a SKILL.md before trusting it.

Searches for ClawHub exploded in 2026 for one simple reason: OpenClaw became the most talked-about open-source AI agent on the internet, and ClawHub is its app store. If you have seen people on X claiming their personal AI assistant books flights, manages their calendar, and replies to their Telegram messages, ClawHub is where most of those capabilities came from.

This guide explains what ClawHub actually is, how the registry works, how to install and publish skills, how it compares to other skill ecosystems, and what the well-documented security incidents of early 2026 mean for you in practice.

What Is ClawHub?

ClawHub is the public skill and plugin registry for OpenClaw, the open-source AI agent framework that runs locally and connects to messaging platforms like Telegram, Discord, and WhatsApp. The cleanest mental model: ClawHub is to OpenClaw what npm is to Node.js. Developers publish versioned packages; users install them with one command; the registry handles search, versioning, and distribution.

The unit of distribution is a skill: a folder containing a SKILL.md file plus any supporting scripts or assets. The SKILL.md describes what the skill does and gives the agent step-by-step instructions for doing it. Because skills are mostly plain text, anyone who can write clear instructions can publish one, which explains how the catalog grew from roughly 10,000 skills in January 2026 to more than 31,000 by March.

The registry itself is open source at github.com/openclaw/clawhub, and the official documentation lives at docs.openclaw.ai/clawhub.

How ClawHub Works Under the Hood

ClawHub exposes three core capabilities, all reachable from the OpenClaw CLI or the standalone clawhub CLI:

  • Search: full-text search across skill names, descriptions, and tags. Results rank by a mix of downloads, recency, and community signals.
  • Install and update: openclaw skills install pulls the versioned skill bundle into your workspace. Updates are explicit, not automatic, which is good for stability and security.
  • Publish and sync: the clawhub CLI lets authors push new versions, manage metadata, and sync a local skills folder against the registry.

Two installation scopes matter in practice:

  • Workspace scope (default): the skill lands in the active workspace's skills/ directory and only that agent sees it.
  • Global scope (--global): the skill installs into ~/.openclaw/skills, visible to every local agent unless an agent's allowlist narrows it.

This scoping model mirrors how Claude skills separate project-level from user-level skills, and it is worth getting right: a skill you only trust for one sandboxed agent should never be installed globally.

Installing Skills from ClawHub

Assuming OpenClaw is already running on your machine, installation is a one-liner:

openclaw skills install weather-briefing

or, for all local agents:

openclaw skills install weather-briefing --global

After installation, the agent picks up the new SKILL.md on its next session. Three practical tips that save people grief:

  • Pin what works. Skills are versioned. If a skill behaves well, note the version; a later update can change behavior or, in the worst case, introduce malicious code in a previously clean package (a classic supply-chain pattern).
  • Read before you run. Open the SKILL.md and every referenced script before the first run. If a "PDF converter" skill contains a curl-pipe-to-bash setup step, walk away.
  • Start workspace-scoped. Only promote a skill to --global after it has earned trust in one workspace.

Publishing Your Own Skill

Publishing follows the npm pattern: authenticate the clawhub CLI, point it at your skill folder, and push. The registry stores each version immutably, so consumers can pin and audit. A good ClawHub listing has:

  • A SKILL.md with a clear one-paragraph description and explicit trigger conditions
  • No opaque binaries; scripts in readable source form
  • A README documenting required API keys and what data the skill touches
  • Semantic versioning with a changelog

If you have written Claude Code skills before, the authoring model will feel identical: the SKILL.md convention is shared across both ecosystems, which is also why porting between them is usually easy.

Skiln tracks 75,000+ MCP servers, skills, and agent tools across 13 registries, deduplicated and quality-scored.

Browse Now →

ClawHub vs Other Skill Registries

ClawHub is the biggest open registry for agent skills, but it is not the only place to find capabilities for your AI stack:

RegistryPrimary runtimeCatalog size (mid-2026)Trust modelPricing
ClawHubOpenClaw agents31,000+Open publish, VirusTotal scanFree, open source
SkilnClaude Code, Claude Desktop, MCP clients75,000+ entriesCurated, multi-source verifiedFree directory
SmitheryMCP clientsThousands of MCP serversRegistry reviewFree
LobeHub SkillsLobeChat + agentsThousandsMarketplace moderationFree
Anthropic skills repoClaude CodeDozens (official)First-party, reviewedFree, open source

The honest summary: ClawHub wins on raw volume and community velocity, while curated directories win on signal-to-noise. The OpenClaw ecosystem moves astonishingly fast, and if you want yesterday's viral skill, ClawHub has it today. If you want the ten skills actually worth your time, a curated layer on top, like our top 10 Claude skills roundup, gets you there faster.

The Security Problem Nobody Should Ignore

ClawHub's open-publish model produced the predictable outcome: it became the highest-profile AI supply-chain attack surface of 2026. This is not hypothetical. The incidents below are documented by multiple independent security teams.

Timeline of ClawHub Security Incidents

  • February 2026, Snyk "ToxicSkills" research: an automated audit found roughly 36% of analyzed agent skills contained security flaws, including about 1,467 vulnerable skills and active malicious payloads hidden in setup instructions.
  • February 2026, top-chart malware: the most-downloaded skill on the registry at one point was functional malware that exfiltrated SSH keys while pretending to be a productivity tool.
  • February 2026, VirusTotal partnership: OpenClaw responded by integrating VirusTotal scanning for every published skill, a meaningful (though not sufficient) mitigation.
  • March 2026, 820 malicious skills: researchers identified 820 malicious skills in the marketplace in a single sweep, most using obfuscated install steps in SKILL.md as the execution path.
  • March 2026, ranking manipulation: Silverfort demonstrated that the popularity ranking could be gamed, letting an attacker push a malicious skill to the number one slot where unsuspecting users grab it.

The structural issue is that a SKILL.md is not just documentation, it is an instruction set a capable agent will follow, including any embedded shell commands. When SKILL.md becomes an installer, every skill is potential code execution. Our MCP server security guide covers the same class of risk on the MCP side, and the defensive posture is identical.

How to Vet a ClawHub Skill Before Installing

  1. Read the entire SKILL.md, especially any setup or install section. Obfuscated base64 blobs, curl-pipe-bash, or "run this once to activate" steps are immediate disqualifiers.
  2. Check the author: account age, other published skills, linked GitHub profile with real history.
  3. Check the repo: a skill with public source, stars, and issues is auditable; a registry-only blob is not.
  4. Ignore download counts as a trust signal. The ranking manipulation research proved popularity can be bought or botted.
  5. Scope tightly: workspace install first, no --global, and run the agent with the least credentials that still let the skill function.
  6. Watch outbound traffic on first run if the skill touches anything sensitive.

Which Skills Are Actually Worth Installing?

After the noise filters out, the genuinely useful ClawHub catalog clusters into five categories: messaging automation (Telegram, Discord, WhatsApp workflows), research and summarization pipelines, dev tooling (deploy helpers, log watchers, repo chores), home and personal ops (calendars, reminders, shopping lists), and business back-office bundles like the ones we covered in our OpenClaw business kits guide.

Directory entries worth a look if you are exploring the ecosystem from the Claude side: OpenClaw Skill (the bridge skill pattern), OpenClaw Admin (agent administration tooling), and openclaw-mcp (an MCP server that exposes OpenClaw functions to any MCP client).

Does ClawHub Work with Claude Code?

Not natively, but the overlap is bigger than you would expect. Both ecosystems standardized on the SKILL.md convention, so a text-only ClawHub skill (a prompt workflow, a checklist, a writing style guide) usually drops straight into ~/.claude/skills/ and works. Skills that call OpenClaw's plugin API, rely on its messaging integrations, or assume a long-running daemon do not port without rework.

If you are deciding between the runtimes themselves rather than the registries, our OpenClaw vs NanoClaw vs Claude Code comparison breaks down which agent framework fits which use case, and the NanoClaw vs OpenClaw piece covers the security-first fork that emerged partly in response to the ClawHub incidents above.

Verdict: Should You Use ClawHub?

Yes, with your eyes open. ClawHub is the largest, fastest-moving skill registry in the agent ecosystem and the default way to extend OpenClaw. The community produces genuinely creative capabilities weekly. But its open-publish model means you are the last line of defense: read every SKILL.md, distrust download counts, install workspace-scoped, and never hand a freshly installed skill production credentials.

Treat it the way a senior engineer treats npm: indispensable, and never blindly trusted.

Frequently Asked Questions

Last updated: June 11, 2026 · Skiln tracks OpenClaw, ClawHub, and MCP ecosystem releases daily across 13 source registries.

Frequently Asked Questions

What is ClawHub?
ClawHub is the public registry for OpenClaw skills and plugins. It works like npm or PyPI but for AI agent capabilities: developers publish versioned skills (a SKILL.md file plus supporting scripts), and anyone running an OpenClaw agent can search, install, and update those skills with one command. As of mid-2026 it hosts over 31,000 published skills.
Is ClawHub free to use?
Yes. ClawHub is free for both consuming and publishing skills. The registry is open source (github.com/openclaw/clawhub) and skills themselves are typically MIT or Apache licensed. Some skills wrap paid third-party APIs, so you may pay for the underlying service even though the skill is free.
How do I install a skill from ClawHub?
From a machine running OpenClaw, use the native command: openclaw skills install <skill-name>. This installs into the active workspace skills/ directory. Add --global to install into the shared ~/.openclaw/skills directory so every local agent can use it. The separate clawhub CLI handles publishing and syncing your own skills.
Is ClawHub safe?
Treat it like any open package registry: mostly fine, occasionally dangerous. In early 2026 researchers found hundreds of malicious skills, including one that hit the top of the charts while stealing SSH keys. OpenClaw responded by partnering with VirusTotal to scan all published skills. You should still read the SKILL.md and any setup scripts before installing, exactly as you would audit an unknown npm package.
What is the difference between ClawHub and OpenClaw?
OpenClaw is the open-source AI agent framework itself, the runtime that connects to Telegram, Discord, WhatsApp, and your terminal. ClawHub is the registry where the community shares skills for that runtime. You run OpenClaw; you download from ClawHub.
Can I use ClawHub skills with Claude Code?
Often yes, with light editing. ClawHub skills follow the same SKILL.md convention popularized by Anthropic's Claude Code skills system. Text-only skills (instructions, checklists, prompt workflows) usually port directly into ~/.claude/skills/. Skills that depend on OpenClaw-specific tooling or its plugin API need adaptation.
How many skills are on ClawHub?
Independent audits counted more than 31,000 published skills by March 2026, up from roughly 10,000 at the start of the year. Growth has been explosive but uneven: a large share are duplicates, demos, or low-effort uploads, which is why curation and vetting matter.
Who maintains ClawHub?
ClawHub is maintained by the OpenClaw open-source project, with the registry source available on GitHub under the openclaw organization. Moderation is community-driven, supplemented since February 2026 by automated VirusTotal scanning of every published skill.

Stay in the Loop

Join 1,000+ developers. Get the best new Skills & MCPs weekly.

No spam. Unsubscribe anytime.

ClawHub Guide 2026: OpenClaw Skill Registry Explained