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

# modus scopes evaluations update-config

> Update a scope's scheduled-evaluation config. Nested fields (cadence, notifications) require --file/--body.

Update a scope's scheduled-evaluation config. Nested fields (cadence, notifications) require --file/--body.

## Usage

```bash theme={null}
modus scopes evaluations update-config [flags]
```

## Arguments

| Name |          | Description |
| ---- | -------- | ----------- |
| `id` | required | Scope id.   |

## Flags

| Flag               | Type    | Description                                  |
| ------------------ | ------- | -------------------------------------------- |
| `--file`           | string  | Path to a JSON file with update fields.      |
| `--body`           | string  | Read update fields as JSON from stdin ('-'). |
| `--enabled`        | boolean | Enable or disable scheduled evaluations.     |
| `--judge-model`    | string  | Model id for the judge LLM.                  |
| `--judge-guidance` | string  | Custom guidance for the judge LLM.           |

Global: `--pretty` — human-readable table output instead of compact JSON.

## Examples

```bash theme={null}
modus scopes evaluations update-config 42 --enabled --file cadence.json
```

See [CLI quickstart](/guides/cli) for install and auth.
