Command Line Tools
plugins info
plugins info
Section titled “plugins info”Shows detailed information about a Wheels plugin, including version, description, author, and links.
wheels plugins info <name>Parameters
Section titled “Parameters”| Parameter | Required | Type | Description |
|---|---|---|---|
name | Yes | string | Name or slug of the plugin to inspect |
Description
Section titled “Description”The plugins info command displays comprehensive information about a Wheels plugin. It prioritizes local installation data when available, only querying ForgeBox when the plugin is not installed locally.
Information Displayed
Section titled “Information Displayed”When the plugin is installed locally, the command shows:
- Installation status
- Plugin name and version
- Slug
- Type (mvc, plugin, etc.)
- Author information
- Description
- Homepage URL
- Repository URL
- Documentation URL
- Issues/Bugs URL
- Keywords
When the plugin is not installed, the command shows:
- Installation status
- ForgeBox package information
- Available versions
- Installation instructions
Examples
Section titled “Examples”Check installed plugin
Section titled “Check installed plugin”wheels plugins info wheels-coreOutput:
=========================================================== Plugin Information: wheels-core===========================================================
Status-------------------------------------------------- [OK] Installed locally
Wheels CoreWheels Framework Core Directory
Details: Version: 3.0.0-SNAPSHOT+1030 Slug: wheels-core Type: mvc Author: Wheels Core Team and Community Keywords: mvc, rails, wheels, wheels.dev, core
Links: Homepage: https://wheels.dev/ Repository: https://github.com/wheels-dev/wheels Docs: https://wheels.dev/docs Issues: https://github.com/wheels-dev/wheels/issues
Commands-------------------------------------------------- - Update: wheels plugin update wheels-core - Search: wheels plugin searchCheck plugin not installed
Section titled “Check plugin not installed”wheels plugins info wheels-vue-cliOutput:
================================================== Plugin Information: wheels-vue-cli==================================================
Status--------------------------------------------------[WARNING]: Not installed
[FAILED]: Plugin Not Found
The plugin 'wheels-vue-cli' was not found in: - Local installation (box.json dependencies) - ForgeBox repository
[INFO]: Possible reasons - Plugin name may be misspelled - Plugin may not exist on ForgeBox - Network connection issues
[INFO]: Suggestions - Search for available plugins: wheels plugin list --available - Verify the correct plugin namePlugin not found anywhere
Section titled “Plugin not found anywhere”wheels plugins info nonexistent-pluginOutput:
================================================== Plugin Information: nonexistent-plugin==================================================
Status--------------------------------------------------[WARNING]: Not installed
[FAILED]: Plugin Not Found
The plugin 'nonexistent-plugin' was not found in: - Local installation (box.json dependencies) - ForgeBox repository
[INFO]: Possible reasons - Plugin name may be misspelled - Plugin may not exist on ForgeBox - Network connection issues
[INFO]: Suggestions - Search for available plugins: wheels plugin list --available - Verify the correct plugin nameHow It Works
Section titled “How It Works”-
Check Local Installation: First checks if the plugin is installed in:
box.jsondependenciesbox.jsondevDependencies- Reads plugin’s local
box.jsonfor detailed information
-
Display Local Information: If installed, shows all metadata from the plugin’s
box.json -
ForgeBox Fallback: Only queries ForgeBox if the plugin is not installed locally
-
Installation Commands: Shows appropriate commands based on installation status
- The command prioritizes local plugin data over ForgeBox data for accuracy
- No network call is made for installed plugins (faster response)
- Use
wheels plugin searchto browse all available plugins - Plugin names can include variations (e.g., “wheels-core”, “cfwheels-core”)