Skip to content

klim agent plugin

Plugins are the first-party / community extensions an agent CLI loads at startup. klim agent plugin is the cross-provider front-end for managing them.

Terminal window
klim agent plugin list
klim agent plugin install --provider <p> <name>
klim agent plugin remove --provider <p> <name>
CommandDescription
listShow every plugin detected across providers.
installInstall a plugin from a configured marketplace.
removeUninstall a plugin.
FlagDescription
--providerRequired for install / remove.
--installed(list only) Show only installed plugins.
--available(list only) Show only available, non-installed entries.
--outputtext (default), json, or yaml.
Terminal window
# Every plugin klim can see
klim agent plugin list
# Only what's installed, as YAML
klim agent plugin list --installed --output yaml
# Install a plugin
klim agent plugin install --provider claude-code react-test-helper
# Remove a plugin
klim agent plugin remove --provider claude-code react-test-helper

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.