You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: convert Korean-specific prompts and docs to language-neutral English
- Rewrite README.md and CLAUDE.md in English
- Update singleSystemPrompt and batchSystemPrompt in claude.go to use English
categories and language-matched output (title/summary follow input language)
- Translate buildPrompt, buildBatchPrompt, writeCategories labels to English
- Sanitize Korean category strings (잡담 → chat, 일상 → daily) in sanitizeResult
- Add EnsureModelFromURL to pkg/model to fix pre-existing build error in pkg/vision
- Update tacit.knowledge and tacit.memorize skill docs to be language-neutral
- Fix integration test expectCategory values from Korean to English equivalents
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CLAUDE.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -34,17 +34,17 @@ make clean # Clean build artifacts
34
34
35
35
## Build Verification
36
36
37
-
-`go build ./...`로 빌드 검증하지 말 것 — `pkg/stt`가 CGo로 whisper.h를 참조하므로 `make build` 전에는 항상 실패한다
38
-
-빌드 검증은 반드시 `make build`또는`make e2e-test`사용
39
-
-CGo와 무관한 순수 Go 패키지(예:`./skills/`)만 `go build ./skills/` 로 개별 확인 가능
37
+
-Do NOT verify builds with `go build ./...` — `pkg/stt` references `whisper.h` via CGo and will always fail before `make build`
38
+
-Always use `make build`or`make e2e-test`to verify builds
39
+
-Pure Go packages unrelated to CGo (e.g.`./skills/`) can be individually verified with `go build ./skills/`
40
40
41
41
## Build Principles
42
42
43
-
-AI agent(Claude Code CLI)를 제외한 모든 의존성(whisper.cpp, ten-vad, miniaudio, AudioToolbox 등)은 바이너리에 정적 링크/번들되어야 한다. 빌드 결과물은 반드시 포터블 바이너리여야 하며, 런타임에 외부 라이브러리 설치를 요구해서는 안 된다.
43
+
-All dependencies (whisper.cpp, ten-vad, miniaudio, AudioToolbox, etc.) except the AI agent (Claude Code CLI) must be statically linked/bundled into the binary. The build output must be a portable binary that requires no external library installation at runtime.
44
44
45
45
## Workflow
46
46
47
-
-코드 수정 후 반드시 `make e2e-test`를 실행하여 파이프라인 동작을 확인할 것
47
+
-After modifying code, always run `make e2e-test` to verify pipeline behavior
0 commit comments