n2-qln 3.3.1 β†’ 3.3.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.
package/README.ko.md CHANGED
@@ -43,6 +43,8 @@
43
43
 
44
44
  πŸ”Œ **이쀑 μ‹€ν–‰** β€” 도ꡬλ₯Ό 둜컬 ν•¨μˆ˜ λ˜λŠ” HTTP μ—”λ“œν¬μΈνŠΈλ‘œ μ‹€ν–‰. ν•Έλ“€λŸ¬λ₯Ό 직접 λ“±λ‘ν•˜κ±°λ‚˜ 원격 μ„œλΉ„μŠ€λ₯Ό μ—°κ²°. ν˜Όν•©λ„ κ°€λŠ₯.
45
45
 
46
+ πŸ“‹ **Provider μžλ™ 인덱싱** *(v3.3)* β€” `providers/`에 JSON λ§€λ‹ˆνŽ˜μŠ€νŠΈλ₯Ό λ„£μœΌλ©΄ λΆ€νŒ… μ‹œ μžλ™ 등둝. μ½”λ“œ μˆ˜μ • λΆˆν•„μš”, μˆ˜λ™ `create` 호좜 λΆˆν•„μš”. λ©±λ“±μ„± 보μž₯ 및 μ—λŸ¬ 격리.
47
+
46
48
  πŸ—οΈ **10,000개 이상 ν™•μž₯** β€” μΉ΄ν…Œκ³ λ¦¬λ³„ centroid hierarchy νŒŒν‹°μ…”λ‹. 100개 ~1ms, 1,000개 ~3ms, 10,000개 ~5ms.
47
49
 
48
50
  🌍 **λ²”μš© MCP** β€” Claude Desktop, Cursor, n2-soul λ˜λŠ” λͺ¨λ“  MCP ν˜Έν™˜ ν΄λΌμ΄μ–ΈνŠΈμ—μ„œ λ™μž‘. ν‘œμ€€ stdio 전솑.
@@ -398,7 +400,8 @@ n2-qln/
398
400
  β”‚ β”œβ”€β”€ router.js # 3단계 검색 μ—”μ§„
399
401
  β”‚ β”œβ”€β”€ vector-index.js # Float32 벑터 인덱슀 (centroid hierarchy)
400
402
  β”‚ β”œβ”€β”€ embedding.js # Ollama μž„λ² λ”© ν΄λΌμ΄μ–ΈνŠΈ (nomic-embed-text)
401
- β”‚ └── executor.js # HTTP/ν•¨μˆ˜ 도ꡬ μ‹€ν–‰κΈ°
403
+ β”‚ β”œβ”€β”€ executor.js # HTTP/ν•¨μˆ˜ 도ꡬ μ‹€ν–‰κΈ°
404
+ β”‚ └── provider-loader.js # λΆ€νŒ… μ‹œ providers/*.json μžλ™ 인덱싱
402
405
  β”œβ”€β”€ tools/
403
406
  β”‚ └── qln-call.js # 톡합 MCP 도ꡬ (search/exec/create/update/delete)
404
407
  β”œβ”€β”€ providers/ # 도ꡬ provider λ§€λ‹ˆνŽ˜μŠ€νŠΈ (일괄 λ“±λ‘μš©)
package/README.md CHANGED
@@ -43,6 +43,8 @@
43
43
 
44
44
  πŸ”Œ **Dual execution** β€” Tools can run as local functions or HTTP endpoints. Register a handler directly, or point to a remote service. Mix and match.
45
45
 
46
+ πŸ“‹ **Provider auto-indexing** *(v3.3)* β€” Drop a JSON manifest in `providers/` and tools are auto-registered at boot. No code changes, no manual `create` calls. Idempotent and error-isolated.
47
+
46
48
  πŸ—οΈ **Scales to 10,000+** β€” Centroid hierarchy partitions tools by category, then searches within partitions. 100 tools ~1ms, 1,000 ~3ms, 10,000 ~5ms.
47
49
 
48
50
  🌍 **Universal MCP** β€” Works with Claude Desktop, Cursor, n2-soul, or any MCP-compatible client. Standard stdio transport.
@@ -414,11 +416,12 @@ n2-qln/
414
416
  β”‚ β”œβ”€β”€ store.js # SQLite storage engine (sql.js WASM)
415
417
  β”‚ β”œβ”€β”€ schema.js # Tool schema normalization + search text builder
416
418
  β”‚ β”œβ”€β”€ validator.js # Enforced validation (name, description, category)
417
- β”‚ β”œβ”€β”€ registry.js # Tool CRUD + usage tracking + embedding cache
418
- β”‚ β”œβ”€β”€ router.js # 3-stage parallel search engine
419
- β”‚ β”œβ”€β”€ vector-index.js # Float32 vector index with centroid hierarchy
420
- β”‚ β”œβ”€β”€ embedding.js # Ollama embedding client (nomic-embed-text)
421
- β”‚ └── executor.js # HTTP/function tool executor
419
+ β”‚ β”œβ”€β”€ registry.js # Tool CRUD + usage tracking + embedding cache
420
+ β”‚ β”œβ”€β”€ router.js # 3-stage parallel search engine
421
+ β”‚ β”œβ”€β”€ vector-index.js # Float32 vector index with centroid hierarchy
422
+ β”‚ β”œβ”€β”€ embedding.js # Ollama embedding client (nomic-embed-text)
423
+ β”‚ β”œβ”€β”€ executor.js # HTTP/function tool executor
424
+ β”‚ └── provider-loader.js # Auto-index providers/*.json at boot
422
425
  β”œβ”€β”€ tools/
423
426
  β”‚ └── qln-call.js # Unified MCP tool (search/exec/create/update/delete)
424
427
  β”œβ”€β”€ providers/ # Tool provider manifests (for bulk registration)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n2-qln",
3
- "version": "3.3.1",
3
+ "version": "3.3.2",
4
4
  "description": "Query Layer Network β€” Semantic tool dispatcher for MCP. Route 1000 tools through 1 router.",
5
5
  "main": "index.js",
6
6
  "bin": {