claude-code-kr 0.3.19 → 0.3.21

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.
@@ -200,6 +200,7 @@
200
200
  "\"Update marketplace\"": "\"마켓플레이스 업데이트\"",
201
201
  "\"Update now\"": "\"지금 업데이트\"",
202
202
  "\"Usage\"": "\"사용량\"",
203
+ "\"Use \",Z,\" to toggle thinking\"": "\"\",Z,\"으로 사고 모드 전환\"",
203
204
  "\"Use --agent <agent_name> to directly start a conversation with a subagent\"": "\"--agent <에이전트명>으로 서브에이전트와 직접 대화를 시작하세요\"",
204
205
  "\"Use /agents to optimize specific tasks. Eg. Software Architect, Code Writer, Code Reviewer\"": "\"/agents로 특정 작업을 최적화하세요. 예: Software Architect, Code Writer, Code Reviewer\"",
205
206
  "\"Use /config to change your default permission mode (including Plan Mode)\"": "\"/config로 기본 권한 모드를 변경할 수 있습니다 (계획 모드 포함)\"",
@@ -256,6 +257,7 @@
256
257
  "action:\"expand\"": "action:\"펼쳐보기\"",
257
258
  "action:\"go back\"": "action:\"뒤로\"",
258
259
  "action:\"navigate\"": "action:\"이동\"",
260
+ "action:\"run in background\"": "action:\"백그라운드 실행\"",
259
261
  "action:\"select\"": "action:\"선택\"",
260
262
  "action:\"skip\"": "action:\"건너뛰기\"",
261
263
  "action:\"stop\"": "action:\"중지\"",
package/lib/patcher.js CHANGED
@@ -153,11 +153,12 @@ function apply(cliJs, { force = false } = {}) {
153
153
  } catch {}
154
154
  }
155
155
 
156
- // 마커 체크 — CC 버전 + cckr 버전이 같으면 스킵
156
+ // 마커 체크 — CC 버전 + cckr 버전이 같고, 실제로도 패치된 상태일 때만 스킵
157
+ // (CC가 cli.js를 덮어썼지만 마커는 안 지운 경우 방어)
157
158
  if (!force && fs.existsSync(markerPath)) {
158
159
  try {
159
160
  const marker = JSON.parse(fs.readFileSync(markerPath, 'utf8'));
160
- if (marker.ccVersion === ccVersion && marker.cckrVersion === pkg.version) {
161
+ if (marker.ccVersion === ccVersion && marker.cckrVersion === pkg.version && isPatched(cliJs)) {
161
162
  return { ok: true, skipped: true, ccVersion, testedCcVersion: TESTED_CC_VERSION };
162
163
  }
163
164
  } catch {}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-code-kr",
3
- "version": "0.3.19",
3
+ "version": "0.3.21",
4
4
  "description": "Claude Code 한글 패치 CLI — /btw → /근데, /help → /도움, /compact → /압축",
5
5
  "main": "./index.js",
6
6
  "bin": {