claude-token-saver 3.20.0 → 3.20.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "claude-token-saver",
3
- "version": "3.20.0",
3
+ "version": "3.20.1",
4
4
  "description": "Route the easy work your expensive Claude model keeps repeating down to haiku/sonnet — post-hoc session analysis, no realtime router, no extra LLM calls.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -145,11 +145,12 @@ export function pickCapWarn(caps) {
145
145
  function buildKoreanSeg(c, isIcon, verbose) {
146
146
  try {
147
147
  if (!koreanStyleEnabled()) return null;
148
- // Deliberately quiet (gray, one syllable): this is a "yes, it is on"
148
+ // Deliberately quiet (gray, one glyph): this is a "yes, it is on"
149
149
  // confirmation, not a warning. Without it a silently-failed hook looks
150
150
  // exactly like a working one, because the style only shows up when the
151
- // model happens to write Korean.
152
- if (isIcon) return `${c(GRAY)}${verbose ? '가 Korean style' : '가'}${c(RESET)}`;
151
+ // model happens to write Korean. The icon says "writing guidance", not
152
+ // "Korean" the verbose label already carries the language.
153
+ if (isIcon) return `${c(GRAY)}${verbose ? '✍️ Korean style' : '✍️'}${c(RESET)}`;
153
154
  return `${c(GRAY)}Korean style${c(RESET)}`;
154
155
  } catch {
155
156
  return null;