---
summary: "CLI reference for `AURA config` (get/set/unset config values)"
read_when:
  - You want to read or edit config non-interactively
title: "config"
---

# `AURA config`

Config helpers: get/set/unset values by path. Run without a subcommand to open
the configure wizard (same as `AURA configure`).

## Examples

```bash
AURA config get browser.executablePath
AURA config set browser.executablePath "/usr/bin/google-chrome"
AURA config set agents.defaults.heartbeat.every "2h"
AURA config set agents.list[0].tools.exec.node "node-id-or-name"
AURA config unset tools.web.search.apiKey
```

## Paths

Paths use dot or bracket notation:

```bash
AURA config get agents.defaults.workspace
AURA config get agents.list[0].id
```

Use the agent list index to target a specific agent:

```bash
AURA config get agents.list
AURA config set agents.list[1].tools.exec.node "node-id-or-name"
```

## Values

Values are parsed as JSON5 when possible; otherwise they are treated as strings.
Use `--strict-json` to require JSON5 parsing. `--json` remains supported as a legacy alias.

```bash
AURA config set agents.defaults.heartbeat.every "0m"
AURA config set gateway.port 19001 --strict-json
AURA config set channels.whatsapp.groups '["*"]' --strict-json
```

Restart the gateway after edits.
