> ## Documentation Index
> Fetch the complete documentation index at: https://docs.wp-content.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List and inspect plugins

> wpc plugin:ls, wpc plugin:info

Retrieve the list of plugins published by your organization, or fetch detailed information about a specific plugin.

## List plugins

Use `wpc plugin:ls` to list plugins available on your account.

### Usage

```bash theme={null}
wpc plugin:ls [options]
```

### Options

<ParamField body="--paged, -p" type="number">
  Page number to retrieve.
</ParamField>

<ParamField body="--per-page, -c" type="number">
  Number of items per page.
</ParamField>

### Examples

```bash theme={null}
# Get all plugins from organization
$ wpc plugin:ls

# Provide pagination informations
$ wpc plugin:ls --paged=2 --per-page=5
```

## Get plugin details

Use `wpc plugin:info` to retrieve full information for a plugin from the repository.

### Usage

```bash theme={null}
wpc plugin:info <slug>
```

### Arguments

<ParamField body="slug" type="string" required>
  Slug of the plugin on the repository.
</ParamField>

### Examples

```bash theme={null}
# Get info from plugin with slug `dummy`
$ wpc plugin:info dummy
```
