Loading...

CLI Overview

Quick Start Guide

wheels info

wheels reload

wheels deps

wheels destroy

wheels watch

wheels generate app

wheels generate app-wizard

wheels generate controller

wheels generate model

wheels generate view

wheels generate property

wheels generate route

wheels generate resource

wheels generate api-resource

wheels generate frontend

wheels generate test

wheels generate snippets

wheels scaffold

wheels test

wheels test run

wheels test coverage

wheels test debug

wheels config list

wheels config set

wheels config env

wheels env

wheels env setup

wheels env list

wheels env switch

wheels environment

wheels console

wheels runner

wheels server

wheels server start

wheels server stop

wheels server restart

wheels server status

wheels server log

wheels server open

wheels plugins

wheels plugins list

wheels plugins install

wheels plugins remove

wheels analyze

wheels analyze code

wheels analyze performance

wheels analyze security

wheels security

wheels security scan

wheels optimize

wheels optimize performance

wheels docs

wheels docs generate

wheels docs serve

wheels ci init

wheels docker init

wheels docker deploy

wheels deploy

wheels deploy audit

wheels deploy exec

wheels deploy hooks

wheels deploy init

wheels deploy lock

wheels deploy logs

wheels deploy proxy

wheels deploy push

wheels deploy rollback

wheels deploy secrets

wheels deploy setup

wheels deploy status

wheels deploy stop

Configuration Management

Creating Commands

Service Architecture

Migrations Guide

Testing Guide

Ask or search...
Ctrl K
Loading...

plugins list (coming Soon)

This command may not work as expected. A complete and stable version is coming soon.

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 plugins
  • Use wheels plugins remove to uninstall plugins
  • The --available flag queries the ForgeBox registry