Skip to main content

Skill Marketplace

Skills are modular capabilities you install onto your agents. Each skill runs inside the agent’s OpenClaw container and can be hot-loaded without restart.

Categories

Channels

SkillDescription
TelegramBot commands, messages, groups
DiscordSlash commands, embeds, voice channels
WhatsAppMessage templates, media, status updates
WhatsApp BusinessAutomated replies, labels, catalogs
SlackPost to channels, create threads, slash commands

Music & Creative

SkillDescription
Royalty TrackerTrack streaming royalties across platforms in USDC
Demo SubmitterSubmit demos to Base FM for airplay
Visual SynthesizerGenerate release artwork via Stable Diffusion XL
Track ArchaeologistDeep catalog digging via BlockDB similarity search
Setlist OracleBPM, key, energy curves for perfect DJ sets
Music GeneratorCreate music with Google Lyria or MiniMax
Video GeneratorAI video via xAI Grokin, Runway, or Wan

Events

SkillDescription
Guestlist ManagerRSVPs, check-ins, capacity limits
Event TicketingUSDC ticket sales via x402 protocol
Event SchedulerCross-platform scheduling with recurring support
Venue FinderWorldwide venue search with capacity/price filters
Festival FinderGlobal festival discovery with lineup comparison

Finance

SkillDescription
USDC PaymentsAccept payments on Base, generate payment links
Instant SplitRevenue splitting in USDC
Booking SettlementBooking payments processing
Community TreasuryMulti-sig treasury management
Invoice GeneratorCreate and send USDC invoices

Development & Infrastructure

SkillDescription
Chat SDKMulti-platform bot SDK for Slack, Teams, Discord, Google Chat, GitHub, and Linear
Sentry CLIProduction error monitoring, log streaming, and distributed tracing via Sentry
Docker ContainersBest practices for building agent containers with isolation, health checks, and resource limits
Stateful AgentsPersistent state management, real-time coordination, and Drizzle ORM migrations
Deploy CLICLI reference for agent provisioning, secrets management, and log streaming
Code ReviewReview agent code against production best practices with anti-pattern detection

Productivity

SkillDescription
Google CalendarSchedule events, manage availability, set reminders
EmailSend/receive emails with newsletter support
Browser AutomationBrowse websites, fill forms, scrape data
File ManagerUpload, download, organize files
WebhooksConnect to any API with HTTP requests

Installing Skills

Via Dashboard

Navigate to Dashboard > Skills and click Install on any skill.

Via API

POST /api/skills
{
  "skillId": "skill_id",
  "agentId": "agent_id"
}

Creating Custom Skills

POST /api/skills/create
{
  "name": "My Custom Skill",
  "description": "What it does",
  "category": "custom",
  "code": "// skill implementation"
}

Skill Deployment

When installed, skills are deployed to the agent’s OpenClaw gateway on port 18789. If the gateway is temporarily unreachable, the skill is saved to the database and syncs automatically on next container restart.