Vercel Ships npx skills — A Universal Agent Skill Installer That Works With OpenClaw
Vercel Labs just released npx skills — an open-source CLI for installing agent skills across 41+ AI coding agents and runtimes, including OpenClaw.
The pitch: one command installs any skill from any GitHub repo into any agent's skill directory, with no manual file-copying or path-hunting required.
What It Does
# Install a skill from GitHub
npx skills add vercel-labs/agent-skills
# Install a specific skill
npx skills add vercel-labs/agent-skills --skill frontend-design
# Install to a specific agent
npx skills add vercel-labs/agent-skills -a openclaw
# Global install (available across all projects)
npx skills add vercel-labs/agent-skills -g -a openclaw
# List available skills without installing
npx skills add vercel-labs/agent-skills --list
For OpenClaw, skills land in ~/.openclaw/skills/ (global) or ./openclaw/skills/ (project-scoped). The CLI handles symlinking vs copying, supports GitLab and arbitrary git URLs, and works non-interactively for CI/CD pipelines.
Supported Agents (Partial List)
The tool supports 41+ agents as of launch, including:
- OpenClaw (
openclaw) - Claude Code (
claude-code) - Codex (
codex) - Cursor (
cursor) - OpenCode (
opencode) - Cline, Warp, CodeBuddy, Factory Droid, Trae, Google Antigravity, and more
This matters because skills are converging on a shared format across the ecosystem. A skill written for OpenClaw's SKILL.md convention can be installed into Codex or Claude Code through the same CLI — the tool writes the appropriate AGENTS.md entries per agent.
Why This Is Worth Paying Attention To
The skill ecosystem is becoming infrastructure. Vercel building a universal skill installer signals that skills aren't just a cool OpenClaw feature anymore — they're becoming the standard unit of AI agent capability extension across the entire space.
For OpenClaw users, this means:
- More skills available faster. Any skill published to GitHub can now be installed in one command. The catalog will grow quickly.
- Cross-agent portability. Skills you invest in for OpenClaw may work in other agents too. The ecosystem is standardizing around the
SKILL.mdformat. - Vercel's distribution. Vercel has millions of developers in their ecosystem.
npx skillsgetting traction there means more skill authors, more quality control, and more enterprise-grade options landing in OpenClaw's skill directory.
How to Try It
# Install Vercel's agent skills into OpenClaw globally
npx skills add vercel-labs/agent-skills -a openclaw -g
# See what's available first
npx skills add vercel-labs/agent-skills --list
No install required — npx runs it directly. The repo is at github.com/vercel-labs/skills.
This is the kind of tooling that makes OpenClaw more powerful without you doing anything — the ecosystem is doing the work. Getting your base setup right first is what lets you take advantage of it.