How to Add Skills to Your OpenClaw Agent: ClawHub vs Building Your Own

How to Add Skills to Your OpenClaw Agent: ClawHub vs Building Your Own

Apr 16, 2026
How to Add Skills to Your OpenClaw Agent: ClawHub vs Building Your Own


A Practical Guide to Extending Your AI Agent — From One-Command Installs to Custom Capabilities

TL;DR: Skills are what transform your OpenClaw agent from a chatbot into an autonomous operator. ClawHub has over 13,000 community-built skills you can install in seconds. You can also build your own custom skills — like the astrology engine powering Chief Wizard's natal chart readings — in under an hour. This guide covers both paths, when to use each, and the security rules you need to know before installing anything.

What Are Skills?

An OpenClaw skill is a set of instructions that teaches your agent how to do something specific — call an API, run a calculation, interact with a service, or follow a specialized workflow. Skills live as markdown files in your workspace and get loaded into the agent's context at the start of each session.

Think of skills as job training. Your agent is intelligent but generalist out of the box. Skills make it a specialist. Without skills, it answers questions. With the right skills, it books calendar appointments, reads your emails, runs astrological calculations, monitors crypto prices, and posts to social media — all autonomously.

Every skill is just a SKILL.md file with instructions. No compiled code, no plugins to install, no compatibility issues. If your agent can read it, it can follow it.

Two Ways to Add Skills

Path 1 — ClawHub (The Marketplace)

ClawHub is OpenClaw's official skill marketplace at clawhub.ai. It hosts over 13,700 community-built skills as of early 2026. Think of it as npm for AI agent capabilities — browse, search, install in one command.

openclaw skills install <skill-slug>

Skills cover everything from productivity integrations to research tools to platform-specific automations.

Path 2 — Build Your Own

For capabilities specific to your use case — a custom astrology engine, your company's internal tools, a proprietary data source — you write the skill yourself. It's simpler than it sounds: create a markdown file with clear instructions for your agent, drop it in the workspace, and it's live on the next session.

ClawHub: What to Install and What to Skip

With 13,000+ skills the challenge isn't finding something — it's finding something worth installing. Here are the categories that deliver real value:

Productivity

Calendar & Email Integration

Skills for Google Calendar, Gmail, Outlook. Your agent reads your schedule, drafts emails, books meetings, and sends reminders autonomously. High value, well-maintained community skills available.

Research

Deep Research & Web Intelligence

Skills that chain multiple web searches, summarize sources, and deliver structured research reports. Especially useful for market research, competitive analysis, and content creation workflows.

Finance

Crypto & Market Data

Skills connecting to CoinGecko, CoinMarketCap, Polymarket, and financial data APIs. Real-time price feeds, portfolio tracking, and market alert systems.

Social

Social Media Automation

Skills for X/Twitter, LinkedIn, and Telegram. Schedule posts, monitor mentions, generate content, and cross-post across platforms automatically.

Developer

GitHub & Code Tools

Skills for repository management, PR reviews, issue tracking, and automated code analysis. Particularly powerful when combined with Claude Opus for code reasoning.

How to Search and Install

Use natural language search — ClawHub's vector search understands intent:

clawhub search "schedule twitter posts automatically"
clawhub search "read gmail and summarize"
clawhub search "crypto price alerts telegram"

Once you find a skill:

openclaw skills install author/skill-name

Skills load at the start of the next session — restart your gateway after installing.

Security: What You Must Know Before Installing Anything

This is not optional reading. ClawHub is an open registry — anyone with a GitHub account over one week old can publish skills. In early 2026, a coordinated attack called ClawHavoc distributed hundreds of malicious skills through the registry. These skills established reverse shells and quietly stole SSH keys, API tokens, and browser session cookies.

Always do these three things before installing any ClawHub skill:

1. Check the VirusTotal scan on the skill's ClawHub page before installing
2. Read the actual SKILL.md file contents — skills are just text, you can inspect them
3. Prefer skills from authors with established GitHub histories and multiple published skills

After installing, inspect the downloaded files:

ls ~/.openclaw/workspace/skills/
cat ~/.openclaw/workspace/skills/skill-name/SKILL.md

If a skill asks for permissions or access that don't match its stated purpose — delete it.

Building Custom Skills: The Better Path for Unique Capabilities

For anything specific to your use case, building your own skill is often faster and safer than hunting ClawHub for something that almost fits.

The anatomy of every skill is the same: a SKILL.md file with a frontmatter header and instructions in plain English. Your agent reads it and follows it.

The Skill File Structure

---
name: your-skill-name
description: One sentence describing what this skill does
version: 1.0.0
---

# Skill Title

## What this skill does
Brief explanation of the capability.

## How to use it
Step by step instructions for your agent.
Include exact commands, API calls, or tool invocations.

## Important notes
Edge cases, limitations, required context.
Always include what to do if something fails.

Where Skills Live

~/.openclaw/workspace/skills/your-skill-name/SKILL.md

Create the directory and file:

mkdir -p ~/.openclaw/workspace/skills/your-skill-name
nano ~/.openclaw/workspace/skills/your-skill-name/SKILL.md

No restart needed if you're starting a fresh session. The skill is live immediately on next conversation start.

10 High-Value Skills Worth Building

These are capabilities that either don't exist on ClawHub yet, require personalization, or are better built yourself for security reasons:

Skill What It Does Difficulty
Astrology Engine Natal charts, transits, synastry using Swiss Ephemeris — Western and Vedic Medium
Daily Brief Composer Pulls from multiple sources and formats a personalized morning report Easy
Brand Voice Guide Teaches your agent your specific tone, vocabulary, and content style Easy
CRM Contact Lookup Connects to your specific CRM or contact database Medium
Product Knowledge Base Your products, pricing, FAQs — makes your agent a product expert Easy
Meeting Notes Formatter Structures raw notes into your preferred format automatically Easy
Portfolio Tracker Monitors your specific holdings and alerts on your custom thresholds Medium
Content Repurposer Takes one piece of content and reformats for multiple platforms Easy
Research Template Follows your specific research methodology for consistent output Easy
Affiliate Link Manager Knows your affiliate programs and naturally integrates them into content Easy

A Real Custom Skill: Astrology Engine

Here's the actual skill we built for Chief Wizard — a working natal chart calculator using Swiss Ephemeris that computes real planetary positions in both Western and Vedic traditions. This is what a production custom skill looks like:

---
name: astrology
description: Precise natal chart calculations using Swiss 
Ephemeris — Western tropical and Vedic sidereal traditions
version: 1.0.0
---
 
# Astrology Skill
 
You have access to a precise astronomical calculation engine 
that computes real planetary positions using Swiss Ephemeris.
 
## How to generate a chart
 
Run this command via your bash tool:
 
cd ~/openclaw_astro && source astroenv/bin/activate && 
echo '{"year":YYYY,"month":MM,"day":DD,"hour":HH.H,
"lat":LAT,"lon":LON,"system":"both"}' | python3 astro_tool.py
 
## Important notes
 
- Times must be in UTC
- Western uses tropical zodiac with Placidus houses
- Vedic uses sidereal zodiac with Lahiri ayanamsa
- Always ask for birth city if location not provided

Twenty lines of markdown. That's all it takes to give your agent a completely new capability backed by real astronomical calculations.

ClawHub vs Custom: When to Use Which

Situation Use ClawHub Build Custom
Standard integrations (Gmail, Slack, GitHub)
Your specific brand voice or style
Common research workflows
Your proprietary data or tools
Specialized knowledge domains Check first ✅ if not found
Security-sensitive operations
Anything touching credentials or keys
Rapid prototyping a new capability

Five Rules for Writing Effective Skills

Be specific about triggers. Tell your agent exactly when to use the skill. "Use this skill whenever someone asks for a natal chart, birth chart, or planetary positions" leaves no ambiguity. Vague triggers lead to inconsistent behavior.

Include failure handling. What should your agent do when the API is down? When the user provides incomplete information? When the calculation returns an error? Skills without failure instructions produce confusing responses.

Define the output format. If you want structured output, say so explicitly. "Return results as a numbered list with planet name, sign, and degree" produces consistent, parseable output. "Tell the user the results" produces whatever the model feels like.

Keep skills focused. One skill, one capability. Don't try to build a skill that does five different things. Focused skills are easier to maintain, debug, and improve.

Test with edge cases. After writing a skill, immediately test it with incomplete input, wrong formats, and unusual requests. Skills that only work on the happy path aren't production-ready.

Resources



Power Your AI Business

Two tools we actually use — one for infrastructure, one for the builder behind the bot.

The platform behind the bot

Groove

Chief Wizard posts to Groove-hosted pages. If you're building AI agents that drive traffic and need somewhere to capture leads, publish content, and run your business — Groove is the all-in-one platform we use.

See how Groove powers Determination Development  →

Power the builder behind the bot

LifeWave

Late night coding sessions. Deep research runs. The kind of focused work that builds something real. LifeWave phototherapy patches are what we use to stay sharp, recover fast, and keep energy high without stimulants.

Explore LifeWave patches →

Join the Tech Temple

Daily AI alpha, crypto signals, Polymarket plays, and the tools builders are actually using — delivered every day at 5:55 PM Pacific by Chief Wizard. Now powered by Claude Opus 4.5.

No fluff. No hype. Just signal.

Join the Tech Temple on Telegram →