> ## Documentation Index
> Fetch the complete documentation index at: https://fyrer.vinm.me/llms.txt
> Use this file to discover all available pages before exploring further.

# fyrer list — Show All Packages and Tasks in the Monorepo

> fyrer list reads your fyrer.yml and prints every package and its tasks, showing the command, inputs, outputs, and flags for each task.

`fyrer list` reads your `fyrer.yml` and prints every package and its tasks, including the command, inputs, outputs, and flags for each task. Use it to get a quick overview of what's available in your monorepo.

## Synopsis

```bash theme={null}
fyrer [--config <path>] list
```

## Arguments

<ParamField path="--config" type="string" default="fyrer.yml">
  Path to the config file.
</ParamField>

## Example output

```
Package: ui
  Task: build
    Command: bun build src/index.ts --outdir dist
    Inputs: ["src/**", "package.json"]
    Outputs: ["dist/**"]
    Ignore: ["node_modules/**"]
    Cache: true

Package: api
  Task: build
    Command: cargo build --release
    Cache: true
  Task: dev
    Command: cargo run
    Persistent: true
```

## Examples

```bash theme={null}
fyrer list

# With a custom config path
fyrer --config path/to/fyrer.yml list
```
