Synopsis
Description
plugin manages the profClaw plugin ecosystem. Plugins extend profClaw with new tools, chat channels, integrations, and skills. They can be installed from npm (packages named profclaw-plugin-*) or from ClawHub (the community skill registry). You can also scaffold new plugins from templates.
Subcommands
| Subcommand | Description |
|---|---|
list | List installed plugins from all sources |
install <package> | Install a plugin from npm |
uninstall <package> | Uninstall a plugin |
search [query] | Search npm and ClawHub for plugins |
create <name> | Scaffold a new plugin project |
plugin list
Shows plugins from three sources: loaded plugin directories, marketplace-tracked installs, and ClawHub skills.
Also show ClawHub-installed skills in the output.
plugin install <package>
Installs a plugin from npm. The package name is resolved automatically: github becomes profclaw-plugin-github.
Package name. Can be short form (
github) or full form (profclaw-plugin-github).Specific version to install (e.g.,
1.2.3). Defaults to latest.plugin uninstall <package>
Package name to uninstall (short or full form).
plugin search [query]
Searches both npm and ClawHub for plugins matching the query. Returns package names, descriptions, and categories.
Search terms. Omit to browse all available plugins.
Search npm packages only.
Search ClawHub only.
plugin create <name>
Scaffolds a new plugin project with the correct structure, package.json, and example code.
Plugin name (without the
profclaw-plugin- prefix). Creates profclaw-plugin-<name>/.Plugin type:
tool, channel, integration, or skill.Plugin description for
package.json.Author name for
package.json.Output directory. Defaults to
./profclaw-plugin-<name>/.Examples
Plugin Types
| Type | Description |
|---|---|
tool | Adds new tools to the agent execution registry |
channel | Adds a new chat channel provider (e.g., a messaging platform) |
integration | Connects to an external service (ticketing, CI/CD, etc.) |
skill | Adds pre-built AI skill definitions |
Plugin Directories
Plugins are loaded from:Related
profclaw skill- Manage skills (some provided by plugins)profclaw tools- Built-in toolsprofclaw mcp- MCP server integrations- Plugin Development Guide - Building and publishing plugins