> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt.

## Mount commands under a root namespace

generators.yml, commands

You can now group every spec-derived command under a namespace of your choosing, so a CLI that also ships custom commands can keep its API surface in one place. Set `rootGroup` in `generators.yml` and `contoso plants list` becomes `contoso api plants list`.

**`generators.yml`**

```yaml title="generators.yml"
config:
  binaryName: contoso
  rootGroup: api
```