@pcircle/memesh 4.2.11 → 4.4.0

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 (59) hide show
  1. package/.claude-plugin/marketplace.json +2 -2
  2. package/.claude-plugin/plugin.json +2 -2
  3. package/README.de.md +7 -7
  4. package/README.es.md +8 -8
  5. package/README.fr.md +7 -7
  6. package/README.ja.md +8 -8
  7. package/README.ko.md +8 -8
  8. package/README.md +8 -8
  9. package/README.pt.md +8 -8
  10. package/README.th.md +8 -8
  11. package/README.vi.md +8 -8
  12. package/README.zh-CN.md +6 -6
  13. package/README.zh-TW.md +6 -6
  14. package/dashboard/dist/index.html +8 -8
  15. package/dist/cli/view-live.js +1 -1
  16. package/dist/cli/view.d.ts.map +1 -1
  17. package/dist/cli/view.js +7 -1
  18. package/dist/cli/view.js.map +1 -1
  19. package/dist/core/demo.d.ts +1 -0
  20. package/dist/core/demo.d.ts.map +1 -1
  21. package/dist/core/demo.js +24 -0
  22. package/dist/core/demo.js.map +1 -1
  23. package/dist/core/doctor.d.ts.map +1 -1
  24. package/dist/core/doctor.js +6 -0
  25. package/dist/core/doctor.js.map +1 -1
  26. package/dist/core/embedder.d.ts.map +1 -1
  27. package/dist/core/embedder.js +4 -1
  28. package/dist/core/embedder.js.map +1 -1
  29. package/dist/core/llm-validator.d.ts.map +1 -1
  30. package/dist/core/llm-validator.js +6 -0
  31. package/dist/core/llm-validator.js.map +1 -1
  32. package/dist/core/operations.d.ts.map +1 -1
  33. package/dist/core/operations.js +9 -2
  34. package/dist/core/operations.js.map +1 -1
  35. package/dist/core/types.d.ts +4 -0
  36. package/dist/core/types.d.ts.map +1 -1
  37. package/dist/core/verifier.js +1 -1
  38. package/dist/core/verifier.js.map +1 -1
  39. package/dist/skills-manifest.json +9 -9
  40. package/dist/transports/cli/cli.d.ts.map +1 -1
  41. package/dist/transports/cli/cli.js +77 -58
  42. package/dist/transports/cli/cli.js.map +1 -1
  43. package/dist/transports/http/retired-routes.d.ts +2 -0
  44. package/dist/transports/http/retired-routes.d.ts.map +1 -0
  45. package/dist/transports/http/retired-routes.js +4 -0
  46. package/dist/transports/http/retired-routes.js.map +1 -0
  47. package/dist/transports/http/server.d.ts.map +1 -1
  48. package/dist/transports/http/server.js +30 -4
  49. package/dist/transports/http/server.js.map +1 -1
  50. package/dist/transports/mcp/handlers.d.ts +1 -1
  51. package/dist/transports/mcp/handlers.js +1 -1
  52. package/dist/transports/mcp/handlers.js.map +1 -1
  53. package/dist/transports/schemas.d.ts.map +1 -1
  54. package/dist/transports/schemas.js.map +1 -1
  55. package/package.json +9 -6
  56. package/scripts/hooks/post-commit.js +8 -2
  57. package/scripts/hooks/pre-compact.js +9 -0
  58. package/scripts/hooks/session-start.js +1 -1
  59. package/skills/memesh-review/SKILL.md +1 -1
@@ -8,11 +8,11 @@
8
8
  "name": "memesh",
9
9
  "source": "./",
10
10
  "description": "MeMesh — Local memory for Claude Code and MCP coding agents. One SQLite file, zero cloud required.",
11
- "version": "4.2.11",
11
+ "version": "4.4.0",
12
12
  "author": {
13
13
  "name": "PCIRCLE AI"
14
14
  },
15
- "homepage": "https://pcircle.ai/memesh-llm-memory",
15
+ "homepage": "https://pcircle.com/memesh-llm-memory",
16
16
  "license": "MIT",
17
17
  "keywords": [
18
18
  "claude-code",
@@ -4,8 +4,8 @@
4
4
  "author": {
5
5
  "name": "PCIRCLE AI"
6
6
  },
7
- "version": "4.2.11",
8
- "homepage": "https://pcircle.ai/memesh-llm-memory",
7
+ "version": "4.4.0",
8
+ "homepage": "https://pcircle.com/memesh-llm-memory",
9
9
  "repository": "https://github.com/PCIRCLE-AI/memesh-llm-memory",
10
10
  "license": "MIT",
11
11
  "keywords": [
package/README.de.md CHANGED
@@ -83,7 +83,7 @@ flowchart TB
83
83
  | `/memesh` skill im Claude-Code-Chat verwenden | Path A (Plugin) |
84
84
  | Auto-Capture in Claude Code (Session → Lessons → nächste Recall) | Path A (Plugin) |
85
85
  | `memesh remember` / `memesh recall` / `memesh doctor` im Terminal | Path B (npm-global) |
86
- | `memesh` direkt zum Öffnen des Dashboards (ohne `npx`-Startverzögerung) | Path B (npm-global) |
86
+ | `memesh serve` direkt zum Öffnen des Dashboards (ohne `npx`-Startverzögerung) | Path B (npm-global) |
87
87
  | `memesh-mcp` an Cursor, Cline oder andere MCP-Clients anbinden | Path B (npm-global) |
88
88
  | Alles oben | **Beide installieren** — kein Konflikt |
89
89
 
@@ -149,7 +149,7 @@ memesh doctor
149
149
  Dashboard öffnen, um den Speicher zu erkunden:
150
150
 
151
151
  ```bash
152
- memesh
152
+ memesh serve
153
153
  ```
154
154
 
155
155
  <p align="center">
@@ -173,7 +173,7 @@ memesh
173
173
  | **Claude Code verwenden** | Projektentscheidungen, dateispezifische Erkenntnisse und vergangene Fehler während der Arbeit automatisch abrufen |
174
174
  | **Power-User von Coding-Agenten** | Eine lokale Speicherschicht über MCP-kompatible Tools verteilen |
175
175
  | **ein Team mit KI-Coding-Workflows experimentiert** | Projektwissen ohne gehostete Infrastruktur aus- und importieren |
176
- | **Agent-Entwickler** | Lokalen Speicher via MCP, HTTP, CLI oder Python-SDK hinzufügen |
176
+ | **Agent-Entwickler** | Lokalen Speicher via MCP, HTTP oder CLI hinzufügen |
177
177
 
178
178
  ---
179
179
 
@@ -298,7 +298,7 @@ Wenn npm eine installierte Version als veraltet kennzeichnet (typischerweise ein
298
298
 
299
299
  **⚠️ Konflikterkennung** — Wenn Sie zwei Memories haben, die sich widersprechen, warnt Sie MeMesh.
300
300
 
301
- **🕸️ Wissensgraph-Konnektivität** — `memesh kg backfill-relations --all-rules` verknüpft verwaiste Entitäten über Tag-Kookurrenz, Projekt-Clustering, Sitzungskontext und Namensähnlichkeit — ohne LLM. Reduziert die Waisenrate auf einer repräsentativen Wissensbasis von 89% auf unter 12%.
301
+ **🕸️ Wissensgraph-Konnektivität** — `memesh kg backfill-relations --all-rules` verknüpft verwaiste Entitäten über Tag-Kookurrenz, Projekt-Clustering, Sitzungskontext und Namensähnlichkeit — ohne LLM.
302
302
 
303
303
  **📦 Team-Freigabe** — `memesh export > team-knowledge.json` → mit Team teilen → `memesh import team-knowledge.json`
304
304
  Importierte Bundles bleiben durchsuchbar, aber MeMesh injiziert importierte Memories nicht automatisch in Claude Hooks, bis Sie sie überprüfen oder lokal neu speichern.
@@ -330,7 +330,7 @@ memesh config set llm.api-key sk-ant-...
330
330
  Oder nutzen Sie den Dashboard-Settings-Reiter (visuelles Setup):
331
331
 
332
332
  ```bash
333
- memesh # öffnet Dashboard → Settings-Reiter
333
+ memesh serve # öffnet Dashboard → Settings-Reiter
334
334
  ```
335
335
 
336
336
  ### Eigene Embeddings verwenden (optional)
@@ -425,7 +425,7 @@ Beim Session-Start erscheint ein einzeiliges Banner (pro Version alle 24h gedros
425
425
  ```bash
426
426
  git clone https://github.com/PCIRCLE-AI/memesh-llm-memory
427
427
  cd memesh-llm-memory && npm install && npm run build
428
- npm test # 630 tests
428
+ npm test
429
429
  npm run test:e2e-dashboard
430
430
  ```
431
431
 
@@ -434,5 +434,5 @@ Dashboard: `cd dashboard && npm install && npm run dev`
434
434
  ---
435
435
 
436
436
  <p align="center">
437
- <strong>MIT</strong> — Erstellt von <a href="https://pcircle.ai">PCIRCLE AI</a>
437
+ <strong>MIT</strong> — Erstellt von <a href="https://pcircle.com">PCIRCLE AI</a>
438
438
  </p>
package/README.es.md CHANGED
@@ -83,7 +83,7 @@ flowchart TB
83
83
  | Usar el skill `/memesh` dentro de una conversación de Claude Code | Path A (plugin) |
84
84
  | Auto-captura en Claude Code (sesión → lecciones → recall siguiente) | Path A (plugin) |
85
85
  | Ejecutar `memesh remember` / `memesh recall` / `memesh doctor` en cualquier terminal | Path B (npm-global) |
86
- | Abrir el dashboard con `memesh` (sin retraso de arranque de `npx`) | Path B (npm-global) |
86
+ | Abrir el dashboard con `memesh serve` (sin retraso de arranque de `npx`) | Path B (npm-global) |
87
87
  | Conectar `memesh-mcp` a Cursor, Cline u otro cliente MCP | Path B (npm-global) |
88
88
  | Todo lo anterior | **Instala ambos** — no entran en conflicto |
89
89
 
@@ -176,7 +176,7 @@ memesh doctor
176
176
  Abre el dashboard para explorar tu memoria:
177
177
 
178
178
  ```bash
179
- memesh
179
+ memesh serve
180
180
  ```
181
181
 
182
182
  <p align="center">
@@ -200,7 +200,7 @@ memesh
200
200
  | **Un desarrollador usando Claude Code** | Recuperar automáticamente decisiones del proyecto, lecciones específicas de archivos y fracasos anteriores mientras trabajas |
201
201
  | **Un usuario avanzado de agentes de codificación** | Compartir una capa de memoria local entre herramientas compatibles con MCP |
202
202
  | **Un equipo experimentando con flujos de trabajo de IA para codificación** | Exportar/importar conocimiento del proyecto sin introducir infraestructura alojada |
203
- | **Un desarrollador de agentes** | Añadir memoria local mediante MCP, HTTP, CLI o el SDK de Python |
203
+ | **Un desarrollador de agentes** | Añadir memoria local mediante MCP, HTTP o la CLI |
204
204
 
205
205
  ---
206
206
 
@@ -326,7 +326,7 @@ Cuando npm marca una versión instalada como deprecada (típicamente un aviso de
326
326
 
327
327
  **⚠️ Detección de Conflictos** — Si tienes dos memorias que se contradicen, MeMesh te advierte.
328
328
 
329
- **🕸️ Conectividad del grafo de conocimiento** — `memesh kg backfill-relations --all-rules` vincula entidades huérfanas mediante co-ocurrencia de etiquetas, agrupación de proyectos, contexto de sesión y similitud de nombres — sin LLM. Reduce la tasa de huérfanos del 89% a menos del 12% en una base de conocimiento representativa.
329
+ **🕸️ Conectividad del grafo de conocimiento** — `memesh kg backfill-relations --all-rules` vincula entidades huérfanas mediante co-ocurrencia de etiquetas, agrupación de proyectos, contexto de sesión y similitud de nombres — sin LLM.
330
330
 
331
331
  **📦 Compartir en Equipo** — `memesh export > team-knowledge.json` → comparte con tu equipo → `memesh import team-knowledge.json`
332
332
  Los bundles importados permanecen buscables, pero MeMesh no inyecta automáticamente memorias importadas en hooks de Claude hasta que las revises o las guardes localmente de nuevo.
@@ -358,7 +358,7 @@ memesh config set llm.api-key sk-ant-...
358
358
  O usa la pestaña Configuración del dashboard (configuración visual):
359
359
 
360
360
  ```bash
361
- memesh # abre dashboard → pestaña Settings
361
+ memesh serve # abre dashboard → pestaña Settings
362
362
  ```
363
363
 
364
364
  ### Usa tus propios embeddings (opcional)
@@ -374,7 +374,7 @@ El embedder se configura **independientemente del LLM de chat** — cambiar `llm
374
374
 
375
375
  | | Nivel 0 (por defecto) | Nivel 1 (Modo Inteligente) |
376
376
  |---|---|---|
377
- | **Búsqueda** | FTS5 + sqlite-vec, 95.60% R@5 (~4ms por recall) | sin cambios — el recall es sin LLM en cada nivel |
377
+ | **Búsqueda** | FTS5 + sqlite-vec, 95.60% R@5 | sin cambios — el recall es sin LLM en cada nivel |
378
378
  | **Auto-capture** | Patrones basados en reglas | + LLM extrae decisiones y lecciones |
379
379
  | **Auto-etiquetado** | Solo etiquetas manuales | + LLM genera etiquetas para nuevas memorias |
380
380
  | **Análisis de fallos** | No disponible | + LLM convierte errores de sesión en lecciones estructuradas |
@@ -453,7 +453,7 @@ Al inicio de sesión aparece un banner de una línea (limitado a una vez cada 24
453
453
  ```bash
454
454
  git clone https://github.com/PCIRCLE-AI/memesh-llm-memory
455
455
  cd memesh-llm-memory && npm install && npm run build
456
- npm test # 630 tests
456
+ npm test
457
457
  npm run test:e2e-dashboard
458
458
  ```
459
459
 
@@ -462,5 +462,5 @@ Dashboard: `cd dashboard && npm install && npm run dev`
462
462
  ---
463
463
 
464
464
  <p align="center">
465
- <strong>MIT</strong> — Hecho por <a href="https://pcircle.ai">PCIRCLE AI</a>
465
+ <strong>MIT</strong> — Hecho por <a href="https://pcircle.com">PCIRCLE AI</a>
466
466
  </p>
package/README.fr.md CHANGED
@@ -83,7 +83,7 @@ flowchart TB
83
83
  | Utiliser le skill `/memesh` dans une conversation Claude Code | Path A (plugin) |
84
84
  | Auto-capture dans Claude Code (session → leçons → recall suivant) | Path A (plugin) |
85
85
  | Exécuter `memesh remember` / `memesh recall` / `memesh doctor` dans n'importe quel terminal | Path B (npm-global) |
86
- | Ouvrir le dashboard via `memesh` (sans délai de démarrage `npx`) | Path B (npm-global) |
86
+ | Ouvrir le dashboard via `memesh serve` (sans délai de démarrage `npx`) | Path B (npm-global) |
87
87
  | Brancher `memesh-mcp` à Cursor, Cline ou un autre client MCP | Path B (npm-global) |
88
88
  | Tout ce qui précède | **Installez les deux** — ils ne sont pas en conflit |
89
89
 
@@ -149,7 +149,7 @@ memesh doctor
149
149
  Ouvrez le tableau de bord pour explorer votre mémoire :
150
150
 
151
151
  ```bash
152
- memesh
152
+ memesh serve
153
153
  ```
154
154
 
155
155
  <p align="center">
@@ -173,7 +173,7 @@ memesh
173
173
  | **Un développeur utilisant Claude Code** | Rappeler automatiquement les décisions du projet, les leçons spécifiques aux fichiers et les échecs passés au fur et à mesure du travail |
174
174
  | **Un utilisateur avancé d'agent de codage** | Partager une couche de mémoire locale unique sur les outils compatibles MCP |
175
175
  | **Une équipe expérimentant les workflows de codage IA** | Exporter/importer les connaissances du projet sans infrastructure hébergée |
176
- | **Un développeur d'agent** | Ajouter la mémoire locale via MCP, HTTP, CLI ou le SDK Python |
176
+ | **Un développeur d'agent** | Ajouter la mémoire locale via MCP, HTTP ou la CLI |
177
177
 
178
178
  ---
179
179
 
@@ -299,7 +299,7 @@ Lorsque npm signale une version installée comme dépréciée (typiquement une a
299
299
 
300
300
  **⚠️ Détection De Conflits** — Si vous avez deux mémoires qui se contredisent, MeMesh vous avertit.
301
301
 
302
- **🕸️ Connectivité du graphe de connaissances** — `memesh kg backfill-relations --all-rules` relie les entités orphelines par cooccurrence de tags, clustering de projets, contexte de session et similarité de noms — sans LLM. Réduit le taux d'orphelins de 89% à moins de 12% sur une base de connaissances représentative.
302
+ **🕸️ Connectivité du graphe de connaissances** — `memesh kg backfill-relations --all-rules` relie les entités orphelines par cooccurrence de tags, clustering de projets, contexte de session et similarité de noms — sans LLM.
303
303
 
304
304
  **📦 Partage D'Équipe** — `memesh export > team-knowledge.json` → partagez avec votre équipe → `memesh import team-knowledge.json`
305
305
  Les bundles importés restent consultables, mais MeMesh n'injecte pas automatiquement les mémoires importées dans les hooks Claude jusqu'à ce que vous les examiniez ou les rémémorisiez localement.
@@ -331,7 +331,7 @@ memesh config set llm.api-key sk-ant-...
331
331
  Ou utilisez l'onglet Settings du tableau de bord (configuration visuelle) :
332
332
 
333
333
  ```bash
334
- memesh # ouvre le tableau de bord → onglet Settings
334
+ memesh serve # ouvre le tableau de bord → onglet Settings
335
335
  ```
336
336
 
337
337
  ### Utilisez vos propres embeddings (optionnel)
@@ -426,7 +426,7 @@ Au démarrage de session, une bannière sur une ligne s'affiche (limitée à une
426
426
  ```bash
427
427
  git clone https://github.com/PCIRCLE-AI/memesh-llm-memory
428
428
  cd memesh-llm-memory && npm install && npm run build
429
- npm test # 630 tests
429
+ npm test
430
430
  npm run test:e2e-dashboard
431
431
  ```
432
432
 
@@ -435,5 +435,5 @@ Tableau de bord : `cd dashboard && npm install && npm run dev`
435
435
  ---
436
436
 
437
437
  <p align="center">
438
- <strong>MIT</strong> — Créé par <a href="https://pcircle.ai">PCIRCLE AI</a>
438
+ <strong>MIT</strong> — Créé par <a href="https://pcircle.com">PCIRCLE AI</a>
439
439
  </p>
package/README.ja.md CHANGED
@@ -83,7 +83,7 @@ flowchart TB
83
83
  | Claude Code の会話で `/memesh` skill を使う | Path A(プラグイン)|
84
84
  | Claude Code で自動キャプチャ(session → 学習 → 次回リコール) | Path A(プラグイン)|
85
85
  | ターミナルで `memesh remember` / `memesh recall` / `memesh doctor` を実行 | Path B(npm-global)|
86
- | `memesh` でダッシュボードを直接起動(`npx` 起動遅延なし) | Path B(npm-global)|
86
+ | `memesh serve` でダッシュボードを直接起動(`npx` 起動遅延なし) | Path B(npm-global)|
87
87
  | `memesh-mcp` を Cursor、Cline、その他の MCP クライアントに接続 | Path B(npm-global)|
88
88
  | すべて | **両方インストール** — 競合しません |
89
89
 
@@ -176,7 +176,7 @@ memesh doctor
176
176
  ダッシュボードを開いてメモリを探索します:
177
177
 
178
178
  ```bash
179
- memesh
179
+ memesh serve
180
180
  ```
181
181
 
182
182
  <p align="center">
@@ -200,7 +200,7 @@ memesh
200
200
  | **Claude Code を使う開発者** | プロジェクト判断、ファイル固有の知見、過去の失敗が自動で呼び出される |
201
201
  | **コーディングエージェントのパワーユーザー** | 1 つのローカルメモリレイヤーを MCP 互換ツール全体で共有 |
202
202
  | **AI コーディングワークフローを実験中のチーム** | ホステッドインフラを導入せず、プロジェクト知識をエクスポート・インポート |
203
- | **エージェント開発者** | MCP、HTTP、CLI、Python SDK 経由でローカルメモリを追加 |
203
+ | **エージェント開発者** | MCP、HTTP、CLI 経由でローカルメモリを追加 |
204
204
 
205
205
  ---
206
206
 
@@ -326,7 +326,7 @@ npm がインストール済みバージョンを非推奨としてフラグし
326
326
 
327
327
  **⚠️ 矛盾検出** — 互いに矛盾するメモリが 2 つある場合、MeMesh が警告します。
328
328
 
329
- **🕸️ ナレッジグラフ接続性** — `memesh kg backfill-relations --all-rules` はタグの共起・プロジェクトクラスタリング・セッションコンテキスト・名前類似度を使って孤立エンティティをリンク — LLM 不要。代表的なナレッジベースで孤立率を 89% から 12% 未満に削減。
329
+ **🕸️ ナレッジグラフ接続性** — `memesh kg backfill-relations --all-rules` はタグの共起・プロジェクトクラスタリング・セッションコンテキスト・名前類似度を使って孤立エンティティをリンク — LLM 不要。
330
330
 
331
331
  **📦 チーム共有** — `memesh export > team-knowledge.json` → チームと共有 → `memesh import team-knowledge.json`。
332
332
  インポートされたバンドルは検索可能ですが、MeMesh はレビュー・ローカル再保存まで Claude フックへの自動注入はしません。
@@ -358,7 +358,7 @@ memesh config set llm.api-key sk-ant-...
358
358
  またはダッシュボード Settings タブで視覚的にセットアップ:
359
359
 
360
360
  ```bash
361
- memesh # ダッシュボード → Settings タブを開く
361
+ memesh serve # ダッシュボード → Settings タブを開く
362
362
  ```
363
363
 
364
364
  ### 独自のエンベディングを使う(任意)
@@ -374,7 +374,7 @@ memesh config set embedder.model text-embedding-3-small
374
374
 
375
375
  | | レベル 0 (デフォルト) | レベル 1 (スマートモード) |
376
376
  |---|---|---|
377
- | **検索** | FTS5 + sqlite-vec、95.60% R@5(リコール 1 回あたり ~4ms) | 変更なし — リコールはどのレベルでも LLM フリー |
377
+ | **検索** | FTS5 + sqlite-vec、95.60% R@5 | 変更なし — リコールはどのレベルでも LLM フリー |
378
378
  | **自動キャプチャ** | ルールベースパターン | + LLM が判断・教訓を抽出 |
379
379
  | **自動タグ付け** | 手動タグのみ | + LLM が新規メモリにタグを生成 |
380
380
  | **失敗分析** | 利用不可 | + LLM がセッションエラーを構造化教訓に変換 |
@@ -453,7 +453,7 @@ bash "$(npm prefix -g)/lib/node_modules/@pcircle/memesh/scripts/upgrade-plugin.s
453
453
  ```bash
454
454
  git clone https://github.com/PCIRCLE-AI/memesh-llm-memory
455
455
  cd memesh-llm-memory && npm install && npm run build
456
- npm test # 630 tests
456
+ npm test
457
457
  npm run test:e2e-dashboard
458
458
  ```
459
459
 
@@ -462,5 +462,5 @@ npm run test:e2e-dashboard
462
462
  ---
463
463
 
464
464
  <p align="center">
465
- <strong>MIT</strong> — Made by <a href="https://pcircle.ai">PCIRCLE AI</a>
465
+ <strong>MIT</strong> — Made by <a href="https://pcircle.com">PCIRCLE AI</a>
466
466
  </p>
package/README.ko.md CHANGED
@@ -83,7 +83,7 @@ flowchart TB
83
83
  | Claude Code 대화에서 `/memesh` skill 사용 | Path A(플러그인) |
84
84
  | Claude Code에서 자동 캡처(session → 교훈 → 다음 recall) | Path A(플러그인) |
85
85
  | 터미널에서 `memesh remember` / `memesh recall` / `memesh doctor` 실행 | Path B(npm-global) |
86
- | `memesh`로 대시보드 바로 열기(`npx` 시작 지연 없음) | Path B(npm-global) |
86
+ | `memesh serve`로 대시보드 바로 열기(`npx` 시작 지연 없음) | Path B(npm-global) |
87
87
  | `memesh-mcp`를 Cursor, Cline 또는 기타 MCP 클라이언트에 연결 | Path B(npm-global) |
88
88
  | 위 전부 | **둘 다 설치** — 충돌 없음 |
89
89
 
@@ -176,7 +176,7 @@ memesh doctor
176
176
  대시보드를 열어서 메모리를 탐색합니다:
177
177
 
178
178
  ```bash
179
- memesh
179
+ memesh serve
180
180
  ```
181
181
 
182
182
  <p align="center">
@@ -200,7 +200,7 @@ memesh
200
200
  | **Claude Code를 사용 중** | 프로젝트 결정, 파일별 교훈, 과거 실패를 작업 중에 자동으로 회상 |
201
201
  | **코딩 에이전트 파워 유저** | MCP 호환 도구 전체에서 하나의 로컬 메모리 레이어 공유 |
202
202
  | **팀이 AI 코딩 워크플로우 실험 중** | 호스팅 인프라 도입 없이 프로젝트 지식 내보내기/가져오기 |
203
- | **에이전트 개발자** | MCP, HTTP, CLI, Python SDK를 통해 로컬 메모리 추가 |
203
+ | **에이전트 개발자** | MCP, HTTP, CLI를 통해 로컬 메모리 추가 |
204
204
 
205
205
  ---
206
206
 
@@ -326,7 +326,7 @@ npm이 설치된 버전을 deprecated로 플래그하면(일반적으로 보안
326
326
 
327
327
  **⚠️ 충돌 감지** — 서로 모순되는 메모리 두 개가 있으면 MeMesh가 경고합니다.
328
328
 
329
- **🕸️ 지식 그래프 연결성** — `memesh kg backfill-relations --all-rules`는 태그 공동 발생, 프로젝트 클러스터링, 세션 컨텍스트, 이름 유사성을 사용해 고아 엔티티를 연결 — LLM 불필요. 대표적인 지식 베이스에서 고아 비율을 89%에서 12% 미만으로 감소.
329
+ **🕸️ 지식 그래프 연결성** — `memesh kg backfill-relations --all-rules`는 태그 공동 발생, 프로젝트 클러스터링, 세션 컨텍스트, 이름 유사성을 사용해 고아 엔티티를 연결 — LLM 불필요.
330
330
 
331
331
  **📦 팀 공유** — `memesh export > team-knowledge.json` → 팀과 공유 → `memesh import team-knowledge.json`
332
332
  임포트된 번들은 계속 검색 가능하지만, MeMesh는 검토하거나 로컬에 다시 저장할 때까지 Claude 훅에 임포트된 메모리를 자동 주입하지 않습니다.
@@ -358,7 +358,7 @@ memesh config set llm.api-key sk-ant-...
358
358
  또는 대시보드 Settings 탭 사용 (비주얼 설정):
359
359
 
360
360
  ```bash
361
- memesh # 대시보드 열기 → Settings 탭
361
+ memesh serve # 대시보드 열기 → Settings 탭
362
362
  ```
363
363
 
364
364
  ### 자체 임베딩 사용 (선택)
@@ -374,7 +374,7 @@ memesh config set embedder.model text-embedding-3-small
374
374
 
375
375
  | | Level 0 (기본) | Level 1 (스마트 모드) |
376
376
  |---|---|---|
377
- | **검색** | FTS5 + sqlite-vec, R@5 95.60% (회상 1회당 ~4ms) | 변경 없음 — 회상은 모든 레벨에서 LLM-free |
377
+ | **검색** | FTS5 + sqlite-vec, R@5 95.60% | 변경 없음 — 회상은 모든 레벨에서 LLM-free |
378
378
  | **자동 캡처** | 규칙 기반 패턴 | + LLM이 결정과 교훈 추출 |
379
379
  | **자동 태그 부여** | 수동 태그만 | + LLM이 새 메모리에 태그 생성 |
380
380
  | **실패 분석** | 사용 불가 | + LLM이 세션 에러를 구조화된 교훈으로 변환 |
@@ -453,7 +453,7 @@ bash "$(npm prefix -g)/lib/node_modules/@pcircle/memesh/scripts/upgrade-plugin.s
453
453
  ```bash
454
454
  git clone https://github.com/PCIRCLE-AI/memesh-llm-memory
455
455
  cd memesh-llm-memory && npm install && npm run build
456
- npm test # 630 tests
456
+ npm test
457
457
  npm run test:e2e-dashboard
458
458
  ```
459
459
 
@@ -462,5 +462,5 @@ npm run test:e2e-dashboard
462
462
  ---
463
463
 
464
464
  <p align="center">
465
- <strong>MIT</strong> — Made by <a href="https://pcircle.ai">PCIRCLE AI</a>
465
+ <strong>MIT</strong> — Made by <a href="https://pcircle.com">PCIRCLE AI</a>
466
466
  </p>
package/README.md CHANGED
@@ -83,7 +83,7 @@ flowchart TB
83
83
  | Use the `/memesh` skill inside a Claude Code conversation | Path A (plugin) |
84
84
  | Get auto-capture (sessions → lessons → recall) in Claude Code | Path A (plugin) |
85
85
  | Run `memesh remember` / `memesh recall` / `memesh doctor` in any terminal | Path B (npm-global) |
86
- | Open the local dashboard via `memesh` (no `npx` lookup delay) | Path B (npm-global) |
86
+ | Open the local dashboard via `memesh serve` (no `npx` lookup delay) | Path B (npm-global) |
87
87
  | Plug `memesh-mcp` into Cursor, Cline, or another MCP client | Path B (npm-global) |
88
88
  | All of the above | **Install both** — they don't conflict |
89
89
 
@@ -178,7 +178,7 @@ memesh doctor
178
178
  Open the dashboard to explore your memory:
179
179
 
180
180
  ```bash
181
- memesh
181
+ memesh serve
182
182
  ```
183
183
 
184
184
  <p align="center">
@@ -202,7 +202,7 @@ memesh
202
202
  | **A developer using Claude Code** | Auto-recall project decisions, file-specific lessons, and past failures as you work |
203
203
  | **A coding-agent power user** | Share one local memory layer across MCP-compatible tools |
204
204
  | **A team experimenting with AI coding workflows** | Export/import project knowledge without introducing hosted infrastructure |
205
- | **An agent developer** | Add local memory through MCP, HTTP, CLI, or the Python SDK |
205
+ | **An agent developer** | Add local memory through MCP, HTTP, or the CLI |
206
206
 
207
207
  ---
208
208
 
@@ -328,7 +328,7 @@ When npm flags an installed version as deprecated (typically a security advisory
328
328
 
329
329
  **⚠️ Conflict Detection** — If you have two memories that contradict each other, MeMesh warns you.
330
330
 
331
- **🕸️ Knowledge Graph Connectivity** — `memesh kg backfill-relations --all-rules` links orphan entities using tag co-occurrence, project clustering, session context, and name similarity — no LLM required. Reduces orphan rate from 89% to under 12% on a representative knowledge base.
331
+ **🕸️ Knowledge Graph Connectivity** — `memesh kg backfill-relations --all-rules` links orphan entities using tag co-occurrence, project clustering, session context, and name similarity — no LLM required.
332
332
 
333
333
  **📦 Team Sharing** — `memesh export > team-knowledge.json` → share with your team → `memesh import team-knowledge.json`
334
334
  Imported bundles stay searchable, but MeMesh does not auto-inject imported memories into Claude hooks until you review or re-store them locally.
@@ -360,7 +360,7 @@ memesh config set llm.api-key sk-ant-...
360
360
  Or use the dashboard Settings tab (visual setup):
361
361
 
362
362
  ```bash
363
- memesh # opens dashboard → Settings tab
363
+ memesh serve # opens dashboard → Settings tab
364
364
  ```
365
365
 
366
366
  ### Bring-your-own embeddings (optional)
@@ -376,7 +376,7 @@ The embedder is configured **independently of the chat LLM** — changing `llm.p
376
376
 
377
377
  | | Level 0 (default) | Level 1 (Smart Mode) |
378
378
  |---|---|---|
379
- | **Search** | FTS5 + sqlite-vec, 95.60% R@5 (~4ms per recall) | unchanged — recall is LLM-free at every level |
379
+ | **Search** | FTS5 + sqlite-vec, 95.60% R@5 | unchanged — recall is LLM-free at every level |
380
380
  | **Auto-capture** | Rule-based patterns | + LLM extracts decisions & lessons |
381
381
  | **Auto-tagging** | Manual tags only | + LLM generates tags for new memories |
382
382
  | **Failure analysis** | Not available | + LLM converts session errors into structured lessons |
@@ -455,7 +455,7 @@ Session start surfaces a one-line banner (throttled to once per 24h per version)
455
455
  ```bash
456
456
  git clone https://github.com/PCIRCLE-AI/memesh-llm-memory
457
457
  cd memesh-llm-memory && npm install && npm run build
458
- npm test # 630 tests
458
+ npm test
459
459
  npm run test:e2e-dashboard
460
460
  ```
461
461
 
@@ -464,5 +464,5 @@ Dashboard: `cd dashboard && npm install && npm run dev`
464
464
  ---
465
465
 
466
466
  <p align="center">
467
- <strong>MIT</strong> — Made by <a href="https://pcircle.ai">PCIRCLE AI</a>
467
+ <strong>MIT</strong> — Made by <a href="https://pcircle.com">PCIRCLE AI</a>
468
468
  </p>
package/README.pt.md CHANGED
@@ -83,7 +83,7 @@ flowchart TB
83
83
  | Usar o skill `/memesh` numa conversa do Claude Code | Path A (plugin) |
84
84
  | Auto-captura no Claude Code (sessão → lições → recall seguinte) | Path A (plugin) |
85
85
  | Rodar `memesh remember` / `memesh recall` / `memesh doctor` em qualquer terminal | Path B (npm-global) |
86
- | Abrir o dashboard via `memesh` (sem atraso de inicialização do `npx`) | Path B (npm-global) |
86
+ | Abrir o dashboard via `memesh serve` (sem atraso de inicialização do `npx`) | Path B (npm-global) |
87
87
  | Conectar `memesh-mcp` ao Cursor, Cline ou outro cliente MCP | Path B (npm-global) |
88
88
  | Tudo acima | **Instale ambos** — não conflitam |
89
89
 
@@ -149,7 +149,7 @@ memesh doctor
149
149
  Abra o dashboard para explorar sua memória:
150
150
 
151
151
  ```bash
152
- memesh
152
+ memesh serve
153
153
  ```
154
154
 
155
155
  <p align="center">
@@ -173,7 +173,7 @@ memesh
173
173
  | **Um dev usando Claude Code** | Recuperar automaticamente decisões de projeto, lições por arquivo e falhas passadas enquanto trabalha |
174
174
  | **Um power user de agentes de código** | Compartilhar uma camada de memória local entre ferramentas compatíveis com MCP |
175
175
  | **Uma equipe experimentando workflows de IA para código** | Exportar/importar conhecimento de projeto sem precisar de infraestrutura hospedada |
176
- | **Um desenvolvedor de agentes** | Adicionar memória local via MCP, HTTP, CLI ou o SDK Python |
176
+ | **Um desenvolvedor de agentes** | Adicionar memória local via MCP, HTTP ou CLI |
177
177
 
178
178
  ---
179
179
 
@@ -299,7 +299,7 @@ Quando o npm sinaliza uma versão instalada como depreciada (tipicamente um advi
299
299
 
300
300
  **⚠️ Detecção de Conflitos** — Se você tem duas memórias que se contradizem, MeMesh te avisa.
301
301
 
302
- **🕸️ Conectividade do grafo de conhecimento** — `memesh kg backfill-relations --all-rules` liga entidades órfãs usando co-ocorrência de tags, agrupamento de projetos, contexto de sessão e similaridade de nomes — sem LLM. Reduz a taxa de órfãos de 89% para menos de 12% numa base de conhecimento representativa.
302
+ **🕸️ Conectividade do grafo de conhecimento** — `memesh kg backfill-relations --all-rules` liga entidades órfãs usando co-ocorrência de tags, agrupamento de projetos, contexto de sessão e similaridade de nomes — sem LLM.
303
303
 
304
304
  **📦 Compartilhamento em Equipe** — `memesh export > team-knowledge.json` → compartilhe com sua equipe → `memesh import team-knowledge.json`
305
305
  Bundles importados permanecem pesquisáveis, mas MeMesh não injeta automaticamente memórias importadas nos hooks do Claude até você revisar ou re-armazená-las localmente.
@@ -331,7 +331,7 @@ memesh config set llm.api-key sk-ant-...
331
331
  Ou use a aba Settings do dashboard (setup visual):
332
332
 
333
333
  ```bash
334
- memesh # abre dashboard → aba Settings
334
+ memesh serve # abre dashboard → aba Settings
335
335
  ```
336
336
 
337
337
  ### Use seus próprios embeddings (opcional)
@@ -347,7 +347,7 @@ O embedder é configurado **independentemente do LLM de chat** — mudar `llm.pr
347
347
 
348
348
  | | Level 0 (padrão) | Level 1 (Smart Mode) |
349
349
  |---|---|---|
350
- | **Busca** | FTS5 + sqlite-vec, 95,60% R@5 (~4ms por recall) | inalterado — recall é LLM-free em todos os níveis |
350
+ | **Busca** | FTS5 + sqlite-vec, 95,60% R@5 | inalterado — recall é LLM-free em todos os níveis |
351
351
  | **Auto-capture** | Padrões baseados em regras | + LLM extrai decisões & lições |
352
352
  | **Auto-tagging** | Apenas tags manuais | + LLM gera tags para novas memórias |
353
353
  | **Análise de falhas** | Não disponível | + LLM converte erros de sessão em structured lessons |
@@ -426,7 +426,7 @@ No início da sessão aparece um banner de uma linha (limitado a uma vez por 24h
426
426
  ```bash
427
427
  git clone https://github.com/PCIRCLE-AI/memesh-llm-memory
428
428
  cd memesh-llm-memory && npm install && npm run build
429
- npm test # 630 tests
429
+ npm test
430
430
  npm run test:e2e-dashboard
431
431
  ```
432
432
 
@@ -435,5 +435,5 @@ Dashboard: `cd dashboard && npm install && npm run dev`
435
435
  ---
436
436
 
437
437
  <p align="center">
438
- <strong>MIT</strong> — Feito por <a href="https://pcircle.ai">PCIRCLE AI</a>
438
+ <strong>MIT</strong> — Feito por <a href="https://pcircle.com">PCIRCLE AI</a>
439
439
  </p>
package/README.th.md CHANGED
@@ -83,7 +83,7 @@ flowchart TB
83
83
  | ใช้ skill `/memesh` ในการสนทนา Claude Code | Path A (plugin) |
84
84
  | Auto-capture ใน Claude Code (session → บทเรียน → recall ครั้งถัดไป) | Path A (plugin) |
85
85
  | รัน `memesh remember` / `memesh recall` / `memesh doctor` ใน terminal | Path B (npm-global) |
86
- | เปิด dashboard ผ่าน `memesh` (ไม่มีดีเลย์ของ `npx`) | Path B (npm-global) |
86
+ | เปิด dashboard ผ่าน `memesh serve` (ไม่มีดีเลย์ของ `npx`) | Path B (npm-global) |
87
87
  | เสียบ `memesh-mcp` เข้ากับ Cursor, Cline หรือ MCP client อื่น | Path B (npm-global) |
88
88
  | ทั้งหมดข้างต้น | **ติดตั้งทั้งสอง** — ไม่ขัดแย้งกัน |
89
89
 
@@ -164,7 +164,7 @@ memesh doctor
164
164
  เปิดแดชบอร์ดเพื่อสำรวจหน่วยความจำ:
165
165
 
166
166
  ```bash
167
- memesh
167
+ memesh serve
168
168
  ```
169
169
 
170
170
  <p align="center">
@@ -188,7 +188,7 @@ memesh
188
188
  | **นักพัฒนาที่ใช้ Claude Code** | เรียกคืนการตัดสินใจโครงการ บทเรียนเฉพาะไฟล์ และความล้มเหลวที่ผ่านมาโดยอัตโนมัติขณะทำงาน |
189
189
  | **ผู้ใช้เอเจนต์คิดโค้ดขั้นสูง** | ใช้ชั้นหน่วยความจำภายในตัวเดียวร่วมกันบนเครื่องมือที่รองรับ MCP |
190
190
  | **ทีมทดลองเวิร์กโฟลว์คิดโค้ด AI** | ส่งออก/นำเข้าความรู้โครงการโดยไม่ต้องสถาปัตยกรรมบนคลาวด์ |
191
- | **นักพัฒนาเอเจนต์** | เพิ่มหน่วยความจำภายในผ่าน MCP HTTP CLI หรือ Python SDK |
191
+ | **นักพัฒนาเอเจนต์** | เพิ่มหน่วยความจำภายในผ่าน MCP HTTP หรือ CLI |
192
192
 
193
193
  ---
194
194
 
@@ -314,7 +314,7 @@ memesh export-schema \
314
314
 
315
315
  **⚠️ การตรวจจับความขัดแย้ง** — ถ้าคุณมีหน่วยความจำสองอันที่ขัดแย้งกัน MeMesh เตือนคุณ
316
316
 
317
- **🕸️ การเชื่อมต่อกราฟความรู้** — `memesh kg backfill-relations --all-rules` เชื่อมโยงเอนทิตีกำพร้าโดยใช้การร่วมเกิดของแท็ก การจัดกลุ่มโครงการ บริบทเซสชัน และความคล้ายคลึงของชื่อ — ไม่ต้องใช้ LLM ลดอัตราเด็กกำพร้าจาก 89% เป็นต่ำกว่า 12% บนฐานความรู้ที่เป็นตัวแทน
317
+ **🕸️ การเชื่อมต่อกราฟความรู้** — `memesh kg backfill-relations --all-rules` เชื่อมโยงเอนทิตีกำพร้าโดยใช้การร่วมเกิดของแท็ก การจัดกลุ่มโครงการ บริบทเซสชัน และความคล้ายคลึงของชื่อ — ไม่ต้องใช้ LLM
318
318
 
319
319
  **📦 การแบ่งปันทีม** — `memesh export > team-knowledge.json` → แบ่งปันกับทีม → `memesh import team-knowledge.json`
320
320
  บันเดิลนำเข้าสามารถค้นหาได้ แต่ MeMesh ไม่ได้แทรกหน่วยความจำนำเข้าโดยอัตโนมัติลงใน hook Claude จนกว่าคุณจะตรวจสอบหรือเก็บเป็นท้องถิ่นอีกครั้ง
@@ -346,7 +346,7 @@ memesh config set llm.api-key sk-ant-...
346
346
  หรือใช้แท็บ Settings แดชบอร์ด (การตั้งค่าสายตา):
347
347
 
348
348
  ```bash
349
- memesh # opens dashboard → Settings tab
349
+ memesh serve # opens dashboard → Settings tab
350
350
  ```
351
351
 
352
352
  ### ใช้ embeddings ของคุณเอง (ไม่บังคับ)
@@ -362,7 +362,7 @@ embedder ถูกตั้งค่า**แยกจาก LLM แชท** —
362
362
 
363
363
  | | ระดับ 0 (ค่าเริ่มต้น) | ระดับ 1 (Smart Mode) |
364
364
  |---|---|---|
365
- | **Search** | FTS5 + sqlite-vec, 95.60% R@5 (~4ms ต่อการ recall) | คงเดิม — recall ไม่ใช้ LLM ในทุก level |
365
+ | **Search** | FTS5 + sqlite-vec, 95.60% R@5 | คงเดิม — recall ไม่ใช้ LLM ในทุก level |
366
366
  | **Auto-capture** | รูปแบบตามกฎ | + LLM สกัดการตัดสินใจ & บทเรียน |
367
367
  | **Auto-tagging** | แท็กด้วยตนเองเท่านั้น | + LLM สร้างแท็กให้ entity ใหม่ |
368
368
  | **วิเคราะห์ความล้มเหลว** | ไม่พร้อมใช้ | + LLM แปลง session errors เป็น structured lessons |
@@ -440,7 +440,7 @@ bash "$(npm prefix -g)/lib/node_modules/@pcircle/memesh/scripts/upgrade-plugin.s
440
440
  ```bash
441
441
  git clone https://github.com/PCIRCLE-AI/memesh-llm-memory
442
442
  cd memesh-llm-memory && npm install && npm run build
443
- npm test # 630 tests
443
+ npm test
444
444
  npm run test:e2e-dashboard
445
445
  ```
446
446
 
@@ -449,5 +449,5 @@ Dashboard: `cd dashboard && npm install && npm run dev`
449
449
  ---
450
450
 
451
451
  <p align="center">
452
- <strong>MIT</strong> — สร้างโดย <a href="https://pcircle.ai">PCIRCLE AI</a>
452
+ <strong>MIT</strong> — สร้างโดย <a href="https://pcircle.com">PCIRCLE AI</a>
453
453
  </p>
package/README.vi.md CHANGED
@@ -83,7 +83,7 @@ flowchart TB
83
83
  | Dùng skill `/memesh` trong cuộc trò chuyện Claude Code | Path A (plugin) |
84
84
  | Tự động capture trong Claude Code (session → bài học → recall lần sau) | Path A (plugin) |
85
85
  | Chạy `memesh remember` / `memesh recall` / `memesh doctor` ở bất kỳ terminal nào | Path B (npm-global) |
86
- | Mở dashboard qua `memesh` (không bị trễ khởi động `npx`) | Path B (npm-global) |
86
+ | Mở dashboard qua `memesh serve` (không bị trễ khởi động `npx`) | Path B (npm-global) |
87
87
  | Cắm `memesh-mcp` vào Cursor, Cline hoặc client MCP khác | Path B (npm-global) |
88
88
  | Tất cả các mục trên | **Cài cả hai** — không xung đột |
89
89
 
@@ -149,7 +149,7 @@ memesh doctor
149
149
  Mở dashboard để khám phá bộ nhớ của bạn:
150
150
 
151
151
  ```bash
152
- memesh
152
+ memesh serve
153
153
  ```
154
154
 
155
155
  <p align="center">
@@ -173,7 +173,7 @@ memesh
173
173
  | **Nhà phát triển sử dụng Claude Code** | Tự động gọi lại các quyết định dự án, bài học cụ thể theo file, và những lỗi trong quá khứ khi bạn làm việc |
174
174
  | **Power user của coding agent** | Chia sẻ một tầng bộ nhớ cục bộ qua các công cụ tương thích MCP |
175
175
  | **Nhóm thử nghiệm workflow AI coding** | Export/import kiến thức dự án mà không cần hạ tầng được quản lý |
176
- | **Nhà phát triển agent** | Thêm bộ nhớ cục bộ thông qua MCP, HTTP, CLI, hoặc Python SDK |
176
+ | **Nhà phát triển agent** | Thêm bộ nhớ cục bộ thông qua MCP, HTTP, hoặc CLI |
177
177
 
178
178
  ---
179
179
 
@@ -299,7 +299,7 @@ Khi npm gắn cờ phiên bản đã cài là deprecated (thường là security
299
299
 
300
300
  **⚠️ Conflict Detection** — Nếu bạn có hai memories mâu thuẫn với nhau, MeMesh cảnh báo bạn.
301
301
 
302
- **🕸️ Kết nối đồ thị tri thức** — `memesh kg backfill-relations --all-rules` liên kết các thực thể cô lập bằng cách sử dụng đồng xuất hiện thẻ, phân cụm dự án, ngữ cảnh phiên và độ tương đồng tên — không cần LLM. Giảm tỷ lệ cô lập từ 89% xuống dưới 12% trên cơ sở tri thức đại diện.
302
+ **🕸️ Kết nối đồ thị tri thức** — `memesh kg backfill-relations --all-rules` liên kết các thực thể cô lập bằng cách sử dụng đồng xuất hiện thẻ, phân cụm dự án, ngữ cảnh phiên và độ tương đồng tên — không cần LLM.
303
303
 
304
304
  **📦 Team Sharing** — `memesh export > team-knowledge.json` → chia sẻ với team → `memesh import team-knowledge.json`
305
305
  Các imported bundles vẫn có thể tìm kiếm được, nhưng MeMesh không auto-inject imported memories vào Claude hooks cho đến khi bạn review hoặc re-store chúng locally.
@@ -331,7 +331,7 @@ memesh config set llm.api-key sk-ant-...
331
331
  Hoặc dùng dashboard Settings tab (visual setup):
332
332
 
333
333
  ```bash
334
- memesh # mở dashboard → Settings tab
334
+ memesh serve # mở dashboard → Settings tab
335
335
  ```
336
336
 
337
337
  ### Dùng embeddings của riêng bạn (tùy chọn)
@@ -347,7 +347,7 @@ Embedder được cấu hình **độc lập với LLM chat** — thay đổi `l
347
347
 
348
348
  | | Level 0 (default) | Level 1 (Smart Mode) |
349
349
  |---|---|---|
350
- | **Search** | FTS5 + sqlite-vec, 95.60% R@5 (~4ms mỗi recall) | giữ nguyên — recall luôn LLM-free ở mọi level |
350
+ | **Search** | FTS5 + sqlite-vec, 95.60% R@5 | giữ nguyên — recall luôn LLM-free ở mọi level |
351
351
  | **Auto-capture** | Rule-based patterns | + LLM extracts decisions & lessons |
352
352
  | **Auto-tagging** | Chỉ thẻ thủ công | + LLM tự động gắn nhãn entity mới |
353
353
  | **Phân tích lỗi** | Không có sẵn | + LLM chuyển session errors thành structured lessons |
@@ -426,7 +426,7 @@ Khi bắt đầu session, banner một dòng (throttle mỗi 24h mỗi version)
426
426
  ```bash
427
427
  git clone https://github.com/PCIRCLE-AI/memesh-llm-memory
428
428
  cd memesh-llm-memory && npm install && npm run build
429
- npm test # 630 tests
429
+ npm test
430
430
  npm run test:e2e-dashboard
431
431
  ```
432
432
 
@@ -435,5 +435,5 @@ Dashboard: `cd dashboard && npm install && npm run dev`
435
435
  ---
436
436
 
437
437
  <p align="center">
438
- <strong>MIT</strong> — Được tạo bởi <a href="https://pcircle.ai">PCIRCLE AI</a>
438
+ <strong>MIT</strong> — Được tạo bởi <a href="https://pcircle.com">PCIRCLE AI</a>
439
439
  </p>