meridianconfiglisted
Install: claude install-skill mattjaikaran/meridian
# /meridian:config — Workflow Configuration
View and modify Meridian workflow preferences. Settings are stored in the SQLite settings table and respected by plan, execute, and review commands.
## Arguments
- (no args) — Show current settings.
- `set <key> <value>` — Set a configuration value.
- `reset` — Restore all settings to defaults.
- `profile <quality|balanced|budget|inherit>` — Shortcut to set model profile.
## Keywords
config, settings, preferences, profile, model, configure, setup
## Available Settings
| Key | Values | Default | Description |
|-----|--------|---------|-------------|
| `model_profile` | quality, balanced, budget, inherit | balanced | Model assignment per agent type |
| `discuss_mode` | interactive, auto, batch | interactive | Default discuss phase mode |
| `auto_advance` | true, false | false | Auto-advance after phase completion |
| `interactive_execute` | true, false | false | Pause after each plan for review |
| `tdd_required` | true, false | true | Require TDD in execution |
| `cross_model_review` | true, false | false | Use secondary AI for review |
| `rtk_enabled` | true, false | true | Use RTK proxy for gate commands when installed |
## Procedure
1. **Show current settings:**
```bash
PYTHONPATH=$MERIDIAN_HOME uv run --project $MERIDIAN_HOME -- python -c "
import json
from scripts.db import open_project
from scripts.state import list_settings
from scripts.model_profiles import get_profile_table, format_profile_display
with open_project