skills.sh — the Agent Skills CLI
skills.sh is the open-source CLI for installing Agent Skills into Claude and other agents. Use it to add the Webhook Relay skills with a single command.
What is skills.sh?
skills.sh is the open-source command-line tool for installing Agent Skills — the small instruction packs that teach Claude (and other skill-aware agents) how to perform a specific task. You run it with npx skills, point it at a GitHub repository, and it downloads the skills and drops them into your agent's skills directory.
In short, it:
- Installs skills from any GitHub repo with one command —
npx skills add <owner>/<repo>. - Works per-project or globally — keep skills next to a single project, or install with
-gso every agent on your machine can use them. - Is open source and free — no account, no registry lock-in; it just pulls the skill files from the repository you point it at.
It's the fastest way to install the Webhook Relay skills, which is why the Agent Skills docs use it.
Add the Webhook Relay skills
The Webhook Relay skills live in the open-source webhookrelay/skills repository. Add all of them with:
npx skills add webhookrelay/skills
Install globally so every agent on your machine picks them up:
npx skills add webhookrelay/skills -g
Or install just one skill with --skill:
npx skills add webhookrelay/skills --skill webhook-debug
Once installed, your agent can drive Webhook Relay directly — forwarding webhooks, transforming them, debugging incoming requests, opening tunnels, and scheduling recurring webhooks. See Agent Skills for the full list of skills and what each one does.
Most skills use the
relayCLI — see CLI installation, then runrelay login. Thewebhook-debugskill needs nothing butcurl.
Other ways to install
skills.sh is one distribution channel. The same skills are also available via the Claude Code plugin marketplace, the ClawHub registry, or a manual copy from the repo — see Agent Skills for every option.
Links
- skills.sh — the open-source Agent Skills CLI
- Agent Skills — all install channels and the full skill list
- Webhook Relay skills on GitHub — browse the source and contribute
- Webhook Relay on ClawHub — install from the open skill registry
- MCP server — give an agent live, typed tools against your account
