OpenClaw Skills

OpenClaw Skills are modular, composable plugins that extend AI agent capabilities with specific tools, integrations, and workflows.

What Are OpenClaw Skills?

OpenClaw Skills are self-contained plugins that give AI agents specific capabilities. Think of them as apps for your AI — each skill teaches the agent how to perform a particular task, from running an SEO audit to summarizing a PDF to deploying a Docker container. Skills are the fundamental building blocks of the OpenClaw ecosystem. They follow a standardized interface, making them composable, testable, and shareable across the community.

How to Install and Use Skills

Installing a skill is a single CLI command: `npx clawhub@latest install ` Once installed, the skill is automatically available to your AI agents. You can configure skills via YAML manifests, chain them into multi-step workflows, and set triggers for automated execution. Common skill operations: - Install — `npx clawhub@latest install seo-audit-pro` - List installed — `npx clawhub@latest list` - Update — `npx clawhub@latest update ` - Remove — `npx clawhub@latest remove `

Skill Categories

The ClawSkills directory organizes 5,705+ skills into categories: - AI & LLMs — Prompt engineering, model routing, context management - Web & Frontend — Component generation, accessibility auditing, performance testing - DevOps & Cloud — CI/CD automation, infrastructure monitoring, deployment - Data & Analytics — Data pipelines, visualization, statistical analysis - Security & Privacy — Vulnerability scanning, compliance checking, secret management - Productivity & Automation — Email handling, calendar management, document processing

Building Custom Skills

Any developer can create and publish OpenClaw skills. The skill development process involves: - Scaffolding — Use `npx clawhub@latest create-skill ` to generate a skill template - Development — Implement the skill interface with input/output schemas, tool definitions, and execution logic - Testing — Run `npx clawhub@latest test` to validate your skill against the standard test suite - Publishing — Submit your skill to the community registry for review and listing All skills undergo community review before appearing in the public directory. Skills with verified security audits receive a "Verified" badge.

FAQ

How many OpenClaw skills are available?

As of 2026, there are over 5,705 skills available in the ClawSkills directory, with new skills being published daily by the community.

Are OpenClaw skills free?

The vast majority of OpenClaw skills are free and open-source. Some enterprise-focused skills may have commercial licenses, which are clearly labeled in the directory.

Can I use multiple skills together?

Yes. OpenClaw's skill composition system lets you chain multiple skills into complex workflows. For example, you can combine a web scraper skill with a data analysis skill and a report generation skill into a single automated pipeline.