n2-qln 4.1.1 → 4.1.2

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.
Files changed (3) hide show
  1. package/README.ko.md +10 -0
  2. package/README.md +10 -0
  3. package/package.json +1 -1
package/README.ko.md CHANGED
@@ -100,6 +100,16 @@ auto "알림 보내기" → push_notification 시도 ❌ → send_email 시도
100
100
  }
101
101
  ```
102
102
 
103
+ ### v4.1.1 — 품질 패치
104
+
105
+ | 변경 | 상세 |
106
+ |------|------|
107
+ | **배치 Persist** | `registerBatch()`와 `precomputeEmbeddings()`가 도구별이 아닌 1회만 디스크에 씀. 1,000개 도구 = 1번 쓰기. |
108
+ | **임베딩 TTL** | `isAvailable()`이 영구 캐시 대신 5분마다 Ollama 재확인. 늦게 시작된 Ollama도 감지. |
109
+ | **Strict TypeScript** | `noUnusedLocals` + `noUnusedParameters` 활성화. 죽은 코드 제로. |
110
+ | **레거시 정리** | v4 이전 JavaScript 1,895줄 삭제. 순수 TypeScript 코드베이스. |
111
+ | **국제화** | 검증기 에러 메시지 전면 영문화 (OSS 국제 사용자 대응). |
112
+
103
113
  ---
104
114
 
105
115
  ## 빠른 시작
package/README.md CHANGED
@@ -100,6 +100,16 @@ Add curated search terms to tools via `boostKeywords`. These get 2× weight in B
100
100
  }
101
101
  ```
102
102
 
103
+ ### v4.1.1 — Quality Patch
104
+
105
+ | Change | Detail |
106
+ |--------|--------|
107
+ | **Batch Persist** | `registerBatch()` and `precomputeEmbeddings()` now write to disk once instead of per-tool. 1,000 tools = 1 write, not 1,000. |
108
+ | **Embedding TTL** | `isAvailable()` re-checks Ollama every 5 minutes instead of caching permanently. Late-start Ollama now detected. |
109
+ | **Strict TypeScript** | `noUnusedLocals` + `noUnusedParameters` enabled. Zero dead code. |
110
+ | **Legacy Cleanup** | Removed 1,895 lines of pre-v4 JavaScript. Pure TypeScript codebase. |
111
+ | **i18n** | All validator error messages switched to English for international users. |
112
+
103
113
  ---
104
114
 
105
115
  ## Quick Start
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n2-qln",
3
- "version": "4.1.1",
3
+ "version": "4.1.2",
4
4
  "description": "Query Layer Network — Semantic tool dispatcher for MCP. Route 1000 tools through 1 router.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",