wheels plugins list
Lists installed Wheels CLI plugins or shows available plugins from ForgeBox.
Usage
wheels plugins list [--global] [--format=<format>] [--available]
Parameters
--global
- (Optional) Show globally installed plugins--format
- (Optional) Output format:table
,json
. Default:table
--available
- (Optional) Show available plugins from ForgeBox
Description
The plugins list
command displays information about all plugins installed in your Wheels application, including:
Plugin name and version
Installation status (active/inactive)
Compatibility with current Wheels version
Description and author information
Dependencies on other plugins
Examples
List all local plugins
wheels plugins list
Show globally installed plugins
wheels plugins list --global
Export as JSON
wheels plugins list --format=json
Show available plugins from ForgeBox
wheels plugins list --available
Output
Table Format (Default)
🧩 Installed Wheels CLI Plugins
Name Version Description
---------------------------------------------
wheels-vue-cli 1.2.0 Vue.js integration for Wheels
wheels-docker 2.0.1 Docker deployment tools
wheels-testing 1.5.0 Advanced testing utilities
Total: 3 plugins
Available Plugins from ForgeBox
================ Available Wheels Plugins From ForgeBox ======================
[Lists all available cfwheels-plugins from ForgeBox]
=============================================================================
JSON Format
{
"plugins": [
{
"name": "wheels-vue-cli",
"version": "1.2.0",
"description": "Vue.js integration for Wheels"
}
]
}
Notes
Local plugins are stored in your project
Global plugins are available to all projects
Use
wheels plugins install
to add new pluginsUse
wheels plugins remove
to uninstall pluginsThe
--available
flag queries the ForgeBox registry
Last updated
Was this helpful?