πŸ”§ Skills Directory

Extend Clawdbot with Skills

Skills add new capabilities to your Clawdbot. From image generation to web browsing, there's a skill for almost everything.

Featured Skills

🎨
Creative
Image Generation
Generate images using DALL-E, Midjourney, or Stable Diffusion directly from chat.
By Official50k+ installs
πŸ”
Productivity
Web Search
Search the internet and get real-time information without leaving your chat.
By Official45k+ installs
πŸ’»
Development
Code Execution
Run Python, JavaScript, and other code snippets safely in a sandboxed environment.
By Official40k+ installs
πŸ“„
Productivity
Document Analysis
Upload and analyze PDFs, images, spreadsheets, and other documents.
By Official35k+ installs
🎀
Communication
Voice Messages
Send and receive voice messages with automatic speech-to-text transcription.
By Official30k+ installs
🌐
Automation
Browser Control
Let Clawdbot browse websites, fill forms, and interact with web pages for you.
By Official25k+ installs

Browse by Category

πŸ“…

Calendar Integration

Manage your schedule and set reminders

Productivity
πŸ“§

Email Drafting

Compose and manage emails with AI assistance

Communication
🌍

Translation

Translate text between 100+ languages

Language
β˜€οΈ

Weather

Get current weather and forecasts for any location

Utility
πŸ“°

News Summary

Get AI-summarized news from various sources

Information
πŸ”’

Math Solver

Solve complex math problems step by step

Education
✍️

Writing Assistant

Improve your writing with grammar and style suggestions

Productivity
πŸ”

Code Review

Get AI-powered code review and suggestions

Development
πŸ—„οΈ

Database Query

Query databases using natural language

Development
πŸ”Œ

API Testing

Test APIs directly from chat

Development
πŸ“Έ

Screenshot

Take screenshots of websites and pages

Utility
πŸ”„

File Conversion

Convert files between different formats

Utility
πŸ“±

Social Media

Schedule and manage social media posts

Marketing
πŸ“Š

SEO Analysis

Analyze websites for SEO improvements

Marketing
πŸ“ˆ

Stock Prices

Get real-time stock prices and analysis

Finance
β‚Ώ

Cryptocurrency

Track crypto prices and portfolio

Finance
🍳

Recipe Finder

Find recipes based on ingredients

Lifestyle
πŸ’ͺ

Workout Planner

Create personalized workout plans

Health

How to Install Skills

1

Find a Skill

Browse the skills directory or search for specific functionality you need.

2

Add to Config

Add the skill to your Clawdbot configuration file or use the CLI command.

3

Restart & Use

Restart Clawdbot and the skill will be available in your conversations.

terminal

# Install a skill via CLI

clawdbot skill install image-generation

# Or add to config.yaml

skills:

- image-generation

- web-search

- code-execution

# Restart Clawdbot

docker compose restart

Create Your Own Skills

Clawdbot skills are easy to create. If you know JavaScript or TypeScript, you can build custom skills to extend functionality for your specific needs.

  • βœ“Simple JavaScript/TypeScript API
  • βœ“Access to conversation context
  • βœ“Built-in tools for common tasks
  • βœ“Share with the community
Read the Documentation β†’

Example Skill Structure

// skills/my-skill/index.ts
export default {
  name: 'my-skill',
  description: 'My custom skill',

  async execute(context) {
    const { message, reply } = context;

    // Your skill logic here
    const result = await doSomething(message);

    await reply(result);
  }
}

Ready to Supercharge Your Clawdbot?

Install Clawdbot and start using skills to extend its capabilities.