klim agents plugins
Plugins are the first-party / community extensions an agent CLI loads
at startup. klim agents plugins is the cross-provider front-end for
managing them.
Subcommands
Section titled “Subcommands”klim agents plugins listklim agents plugins install --provider <p> <name>klim agents plugins remove --provider <p> <name>| Command | Description |
|---|---|
list | Show every plugin detected across providers. |
install | Install a plugin from a configured marketplace. |
remove | Uninstall a plugin. |
| Flag | Description |
|---|---|
--provider | Required for install / remove. |
--installed | (list only) Show only installed plugins. |
--available | (list only) Show only available, non-installed entries. |
--output | text (default), json, or yaml. |
Examples
Section titled “Examples”# Every plugin klim can seeklim agents plugins list
# Only what's installed, as YAMLklim agents plugins list --installed --output yaml
# Install a pluginklim agents plugins install --provider claude-code react-test-helper
# Remove a pluginklim agents plugins remove --provider claude-code react-test-helperWhat gets called underneath
Section titled “What gets called underneath”For both install and remove klim invokes the provider’s native plugin
command (claude-code plugin install …, etc.) — no klim-specific
state is written. The cached entity list (~/.klim/cache/agents-cache.yaml)
is invalidated automatically on success.