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

# check

> Alias for monorepo:check — run install, build, fmt, lint and test across packages and modules with granular caching.

Short alias for [`monorepo:check`](/cli/commands/monorepo-check). It runs the full verification gate across the packages and modules of your workspace: `install`, then `build`, then `fmt`, then `lint`, then `test`, in that order. Every option is forwarded untouched, so `talos check` behaves exactly like `talos monorepo:check`.

## Usage

```bash theme={null}
talos check [options]
```

This is equivalent to:

```bash theme={null}
talos monorepo:check
```

## Examples

Run the full gate across every package and module:

```bash theme={null}
talos check
```

Scope the gate to specific modules and packages:

```bash theme={null}
talos check --modules=billing,user --packages=billing,user
```

Stream plain logs instead of the interactive view (for CI):

```bash theme={null}
talos check --logs
```

Force every task to re-run, ignoring the cache:

```bash theme={null}
talos check --no-cache
```

## Options

| Option       | Description                                                   | Default                  |
| ------------ | ------------------------------------------------------------- | ------------------------ |
| `--packages` | Comma-separated package names to include (under `packages/`). | All packages and modules |
| `--modules`  | Comma-separated module names to include (under `modules/`).   | All packages and modules |
| `--logs`     | Stream plain log lines instead of the interactive view.       | `false`                  |
| `--no-cache` | Skip reading and writing the task cache.                      | `false`                  |

<Note>
  Like [`monorepo:check`](/cli/commands/monorepo-check), `check` takes no
  `--commands` option — the command list is fixed to `install,build,fmt,lint,test`.
</Note>

See the [`monorepo:check`](/cli/commands/monorepo-check) reference for the full details on execution order, caching, and output.
