oh-my-customcode 0.111.1 → 0.112.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/cli/index.js CHANGED
@@ -2334,7 +2334,7 @@ var init_package = __esm(() => {
2334
2334
  workspaces: [
2335
2335
  "packages/*"
2336
2336
  ],
2337
- version: "0.111.1",
2337
+ version: "0.112.0",
2338
2338
  description: "Batteries-included agent harness for Claude Code",
2339
2339
  type: "module",
2340
2340
  bin: {
package/dist/index.js CHANGED
@@ -2014,7 +2014,7 @@ var package_default = {
2014
2014
  workspaces: [
2015
2015
  "packages/*"
2016
2016
  ],
2017
- version: "0.111.1",
2017
+ version: "0.112.0",
2018
2018
  description: "Batteries-included agent harness for Claude Code",
2019
2019
  type: "module",
2020
2020
  bin: {
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "workspaces": [
4
4
  "packages/*"
5
5
  ],
6
- "version": "0.111.1",
6
+ "version": "0.112.0",
7
7
  "description": "Batteries-included agent harness for Claude Code",
8
8
  "type": "module",
9
9
  "bin": {
@@ -204,3 +204,52 @@ When routing skills detect a code generation task and codex is available:
204
204
  ```
205
205
  /codex-exec "Generate {description} following {framework} best practices" --effort high --full-auto
206
206
  ```
207
+
208
+ ## Browser Verify Workflow (Codex + claude-in-chrome 협업 루프)
209
+
210
+ Codex가 생성/수정한 프론트엔드 결과를 시각적으로 검증하는 루프 패턴. 신규 스킬 불요 — 기존 도구 조합.
211
+
212
+ ### Pattern
213
+
214
+ ```
215
+ codex-exec "build/fix frontend"
216
+ → bun dev / npm run dev (로컬 서버 기동)
217
+ → claude-in-chrome:navigate(localhost:port)
218
+ → claude-in-chrome:gif_creator(action capture)
219
+ → claude-in-chrome:read_console_messages (오류 감지)
220
+ → claude-in-chrome:read_network_requests (실패 호출 감지)
221
+ → 오류 있으면: codex-exec "fix: {error context}" → 루프 재진입
222
+ → 오류 없으면: 종료 + 결과 보고
223
+ ```
224
+
225
+ ### When to Use
226
+
227
+ | 상황 | 권장 |
228
+ |------|------|
229
+ | 단순 코드 생성 | `codex-exec` 단독 |
230
+ | 프론트엔드 시각 검증 필요 | **이 루프** |
231
+ | API/백엔드 검증 | `deep-verify` skill |
232
+ | 복잡한 디자인 시스템 | `design-shotgun` 병행 |
233
+
234
+ ### Loop Termination Rules
235
+
236
+ - 최대 반복 3회 (degeneration 방지, R013/agora 패턴 차용)
237
+ - console error 0개 + network failure 0개 → 종료
238
+ - 동일 오류 반복 시 즉시 종료 + 사용자 보고
239
+
240
+ ### Tool Composition
241
+
242
+ | 단계 | 도구 |
243
+ |------|------|
244
+ | Build/Fix | `codex-exec` |
245
+ | Server | `Bash(bun dev)` (background) |
246
+ | Visual | `mcp__claude-in-chrome__navigate` + `gif_creator` |
247
+ | Diagnose | `read_console_messages` + `read_network_requests` |
248
+
249
+ 자세한 구현 패턴: `guides/browser-automation/01-browser-automation-patterns.md` 참조.
250
+
251
+ > **Tool**: Use the **Write tool** for any artifact files this loop produces — never Bash mkdir on `.claude/outputs/`.
252
+
253
+ ### Attribution
254
+
255
+ Pattern source: Codex Browser Use (https://x.com/jameszmsun/status/2047522852854026378), scout #1009.
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.111.1",
2
+ "version": "0.112.0",
3
3
  "lastUpdated": "2026-04-24T07:30:00.000Z",
4
4
  "components": [
5
5
  {