Extend OpenClaw's capabilities with plugins and extensions from the community. This guide covers popular options and how to use them.
Finding Plugins
Discover plugins by searching npm for the openclaw-plugin keyword:
# Search available plugins
npm search openclaw-plugin
# List installed plugins
openclaw plugins list
Popular Plugins
Git repository operations from chat. Clone, commit, push, pull, and check status without leaving your conversation.
Jira integration for creating tickets, searching issues, and updating statuses directly from chat.
Calendar integration for creating events, checking availability, and managing schedules.
Set reminders and get notified. Supports natural language like "remind me in 30 minutes".
Knowledge base integration. Query your documentation, notes, or wiki from chat.
Todo list management. Add, complete, and list tasks from any conversation.
Installing Plugins
# Install from npm
openclaw plugins install @openclaw/plugin-git
# Install with options
openclaw plugins install @openclaw/plugin-jira \
--set jira.url=https://your-domain.atlassian.net
# Enable/disable
openclaw plugins enable git
openclaw plugins disable jira
Plugin Configuration
Plugins are configured in ~/.config/openclaw/plugins.yaml:
# plugins.yaml
plugins:
git:
enabled: true
defaultBranch: main
jira:
enabled: true
url: ${JIRA_URL}
username: ${JIRA_USERNAME}
apiToken: ${JIRA_API_TOKEN}
Creating Your Own Plugin
// plugin.ts
import { Plugin } from '@openclaw/sdk';
export const myPlugin: Plugin = {
id: 'my-plugin',
name: 'My Plugin',
version: '1.0.0',
hooks: {
async beforeMessage(context) {
console.log('Message received:', context.input);
}
},
commands: [
{
name: 'mycommand',
handler: async (context) => {
return { message: 'Command executed!' };
}
}
]
};
Related Articles
References
- OpenClaw Official Documentation - https://docs.openclaw.ai/ - Accessed February 2026
- OpenClaw GitHub Repository - https://github.com/openclaw/openclaw - Accessed February 2026
- OpenClaw Skills Documentation - Skills & Plugins Guide - Accessed February 2026
- OpenClaw Community Skills - Community Skills Repository - Accessed February 2026
Reference Trail
External sources surfaced from the underlying article content
- https://docs.openclaw.ai/docs.openclaw.ai
- https://github.com/openclaw/openclawgithub.com
- Skills & Plugins Guidedocs.openclaw.ai
- Community Skills Repositorygithub.com
- Browse Pluginswww.npmjs.com