From cccc7b74432fbab2e65dd77af4b0c19a7869ac32 Mon Sep 17 00:00:00 2001 From: YeonGyu-Kim Date: Sun, 14 Dec 2025 21:45:29 +0900 Subject: [PATCH] docs: fix incorrect default value for disable_build option MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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) --- README.ko.md | 4 ++-- README.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.ko.md b/README.ko.md index d7676d7..b652182 100644 --- a/README.ko.md +++ b/README.ko.md @@ -566,14 +566,14 @@ Google Gemini ๋ชจ๋ธ์„ ์œ„ํ•œ ๋‚ด์žฅ Antigravity OAuth๋ฅผ ํ™œ์„ฑํ™”ํ•ฉ๋‹ˆ๋‹ค: ```json { "omo_agent": { - "disable_build": false + "disable_build": true } } ``` | ์˜ต์…˜ | ๊ธฐ๋ณธ๊ฐ’ | ์„ค๋ช… | |------|--------|------| -| `disable_build` | `false` | `true`๋กœ ์„ค์ •ํ•˜๋ฉด ๊ธฐ๋ณธ Build ์—์ด์ „ํŠธ๋ฅผ ์ˆจ๊น๋‹ˆ๋‹ค. OmO๊ฐ€ ์œ ์ผํ•œ primary ์—์ด์ „ํŠธ๊ฐ€ ๋ฉ๋‹ˆ๋‹ค. | +| `disable_build` | `true` | `true`๋ฉด ๊ธฐ๋ณธ Build ์—์ด์ „ํŠธ๋ฅผ ์ˆจ๊น๋‹ˆ๋‹ค. OmO๊ฐ€ ์œ ์ผํ•œ primary ์—์ด์ „ํŠธ๊ฐ€ ๋ฉ๋‹ˆ๋‹ค. `false`๋กœ ์„ค์ •ํ•˜๋ฉด Build ์—์ด์ „ํŠธ๊ฐ€ OmO์™€ ํ•จ๊ป˜ ํ‘œ์‹œ๋ฉ๋‹ˆ๋‹ค. | ### Hooks diff --git a/README.md b/README.md index 261919e..bd8cabf 100644 --- a/README.md +++ b/README.md @@ -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