docs: fix incorrect default value for disable_build option

The documentation incorrectly stated that disable_build defaults to false,
but the actual code behavior defaults to true (Build agent hidden by default).

🤖 GENERATED WITH ASSISTANCE OF [OhMyOpenCode](https://github.com/code-yeongyu/oh-my-opencode)
This commit is contained in:
YeonGyu-Kim
2025-12-14 21:45:29 +09:00
parent 056b144174
commit cccc7b7443
2 changed files with 4 additions and 4 deletions

View File

@@ -567,14 +567,14 @@ Configure the default OmO agent behavior:
```json
{
"omo_agent": {
"disable_build": false
"disable_build": true
}
}
```
| Option | Default | Description |
|--------|---------|-------------|
| `disable_build` | `false` | When `true`, hides the default Build agent. OmO becomes the only primary agent. |
| `disable_build` | `true` | When `true`, hides the default Build agent. OmO becomes the only primary agent. Set to `false` to show Build agent alongside OmO. |
### Hooks