Overview
Thegizzi plugin command manages plugins for Gizzi Code. Plugins extend the runtime with additional tools, agents, commands, output styles, and integrations. You can install packages from npm, search the registry, list currently configured plugins, and temporarily enable or disable plugins for the current session.
Plugin configuration is stored in the Gizzi Code settings file (typically ~/.config/gizzi/gizzi.json). Session-level enable and disable state is managed independently so you can turn plugins on or off without changing your saved configuration.
Command reference
Install a plugin
Install a plugin package from npm. If the package is already configured, the entry is updated to the new version.[email protected] followed by [email protected] updates the existing entry rather than adding a second one.
Remove a plugin
Remove a plugin from your configuration by base package name.[email protected] is configured, gizzi plugin remove my-plugin removes it. A message is printed if the package is not found.
List configured plugins
No plugins configured.
Search the npm registry
npm search and prints the top 10 results with package name, version, and description. You can then install a package with gizzi plugin install <package>.
Enable or disable a plugin for the current session
Useenable and disable to change plugin state for the running session without editing your configuration file. This is useful for testing or temporarily avoiding a plugin.
Configuration file location
gizzi plugin install and gizzi plugin remove write to the first existing file found in this order:
~/.config/gizzi/gizzi.jsonc~/.config/gizzi/gizzi.json~/.config/gizzi/config.json
~/.config/gizzi/gizzi.json.
Common options
Mostgizzi plugin subcommands take a single positional argument. There are no shared flags across the group, but each subcommand accepts --help for usage details.
Troubleshooting
Related docs
- Configuration — Gizzi Code settings files and environment variables
- Headless Execution — Running Gizzi Code non-interactively in scripts and CI
- CLI Overview — Introduction to the Gizzi Code command-line interface