# Claw Skills Hub

> ClawSkillsHub Skill Manager - Search and install skills from the ClawSkillHub registry.

- Skill: `zhangzhengeric/claw-skills-hub` (Agent Skill)
- Install (CLI): `npx skillmds@latest add zhangzhengeric/claw-skills-hub`
- Raw SKILL.md: https://api.skillmd.com/api/skills/zhangzhengeric/claw-skills-hub/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: zhangzhengeric (https://skillmd.com/u/zhangzhengeric)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/zhangzhengeric/claw-skills-hub

---


# ClawSkillsHub Skill Manager

This skill provides capabilities to search and install new skills from the ClawSkillsHub registry (clawhub).

## Usage

You can use the `execute_shell_command` tool to interact with the ClawSkillsHub registry using the `clawhub` CLI.

### Searching for Skills

To search for available skills, use the following command:

```bash
npx -y clawhub search <query>
```

Example:
```bash
npx -y clawhub search "weather"
```

### Installing Skills

To install a skill, you must install it into the session's skill directory. The session's skill directory is mapped to `{skills_folder_path}` in the sandbox.

**Important**: You MUST specify the `--dir` parameter as `{skills_folder_path}`.

```bash
npx -y clawhub install <slug> --dir {skills_folder_path}
```

Example:
```bash
npx -y clawhub install "google-search" --dir {skills_folder_path}
```

### After Installation

After installing a new skill, the system will automatically add the skills when constructing the next system prompt. You can then throw a reload skill command to reload the skill and use the new skill immediately.

