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
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -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.
|
package/templates/manifest.json
CHANGED