@pcircle/memesh 4.3.0 → 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 (46) hide show
  1. package/.claude-plugin/marketplace.json +2 -2
  2. package/.claude-plugin/plugin.json +2 -2
  3. package/README.de.md +4 -4
  4. package/README.es.md +4 -4
  5. package/README.fr.md +4 -4
  6. package/README.ja.md +4 -4
  7. package/README.ko.md +4 -4
  8. package/README.md +4 -4
  9. package/README.pt.md +4 -4
  10. package/README.th.md +4 -4
  11. package/README.vi.md +4 -4
  12. package/README.zh-CN.md +4 -4
  13. package/README.zh-TW.md +4 -4
  14. package/dashboard/dist/index.html +1 -1
  15. package/dist/cli/view-live.js +1 -1
  16. package/dist/cli/view.js +1 -1
  17. package/dist/core/demo.d.ts +1 -0
  18. package/dist/core/demo.d.ts.map +1 -1
  19. package/dist/core/demo.js +24 -0
  20. package/dist/core/demo.js.map +1 -1
  21. package/dist/core/embedder.d.ts.map +1 -1
  22. package/dist/core/embedder.js +4 -1
  23. package/dist/core/embedder.js.map +1 -1
  24. package/dist/core/operations.d.ts.map +1 -1
  25. package/dist/core/operations.js +9 -2
  26. package/dist/core/operations.js.map +1 -1
  27. package/dist/core/types.d.ts +4 -0
  28. package/dist/core/types.d.ts.map +1 -1
  29. package/dist/core/verifier.js +1 -1
  30. package/dist/core/verifier.js.map +1 -1
  31. package/dist/skills-manifest.json +8 -8
  32. package/dist/transports/cli/cli.d.ts.map +1 -1
  33. package/dist/transports/cli/cli.js +76 -57
  34. package/dist/transports/cli/cli.js.map +1 -1
  35. package/dist/transports/http/server.d.ts.map +1 -1
  36. package/dist/transports/http/server.js +28 -0
  37. package/dist/transports/http/server.js.map +1 -1
  38. package/dist/transports/mcp/handlers.d.ts +1 -1
  39. package/dist/transports/mcp/handlers.js +1 -1
  40. package/dist/transports/mcp/handlers.js.map +1 -1
  41. package/dist/transports/schemas.d.ts.map +1 -1
  42. package/dist/transports/schemas.js.map +1 -1
  43. package/package.json +2 -2
  44. package/scripts/hooks/post-commit.js +8 -2
  45. package/scripts/hooks/pre-compact.js +9 -0
  46. package/scripts/hooks/session-start.js +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.3.0",
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.3.0",
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">
@@ -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)
@@ -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">
@@ -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)
@@ -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">
@@ -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)
@@ -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">
@@ -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
  ### 独自のエンベディングを使う(任意)
@@ -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">
@@ -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
  ### 자체 임베딩 사용 (선택)
@@ -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">
@@ -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)
@@ -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">
@@ -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)
@@ -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">
@@ -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 ของคุณเอง (ไม่บังคับ)
@@ -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">
@@ -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)
@@ -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>
package/README.zh-CN.md CHANGED
@@ -83,7 +83,7 @@ flowchart TB
83
83
  | 在 Claude Code 对话里用 `/memesh` skill | Path A(plugin)|
84
84
  | 在 Claude Code 启用自动 capture(session → 教训 → 下次 recall) | Path A(plugin)|
85
85
  | 在任何 terminal 跑 `memesh remember` / `memesh recall` / `memesh doctor` | Path B(npm-global)|
86
- | 用 `memesh` 直接开 dashboard(没有 `npx` 启动延迟) | Path B(npm-global)|
86
+ | 用 `memesh serve` 直接开 dashboard(没有 `npx` 启动延迟) | Path B(npm-global)|
87
87
  | 把 `memesh-mcp` 接到 Cursor、Cline 或其他 MCP client | 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">
@@ -358,7 +358,7 @@ memesh config set llm.api-key sk-ant-...
358
358
  或使用仪表板设置标签页(可视化配置):
359
359
 
360
360
  ```bash
361
- memesh # 打开仪表板 → 设置标签页
361
+ memesh serve # 打开仪表板 → 设置标签页
362
362
  ```
363
363
 
364
364
  ### 自带嵌入(可选)
@@ -461,5 +461,5 @@ npm run test:e2e-dashboard
461
461
  ---
462
462
 
463
463
  <p align="center">
464
- <strong>MIT</strong> — 由 <a href="https://pcircle.ai">PCIRCLE AI</a> 开发
464
+ <strong>MIT</strong> — 由 <a href="https://pcircle.com">PCIRCLE AI</a> 开发
465
465
  </p>
package/README.zh-TW.md CHANGED
@@ -83,7 +83,7 @@ flowchart TB
83
83
  | 在 Claude Code 對話裡用 `/memesh` skill | Path A(plugin)|
84
84
  | 在 Claude Code 自動 capture(session → 教訓 → 下次 recall)| Path A(plugin)|
85
85
  | 在任何 terminal 跑 `memesh remember` / `memesh recall` / `memesh doctor` | Path B(npm-global)|
86
- | 用 `memesh` 直接開 dashboard(沒有 `npx` 啟動延遲)| Path B(npm-global)|
86
+ | 用 `memesh serve` 直接開 dashboard(沒有 `npx` 啟動延遲)| Path B(npm-global)|
87
87
  | 把 `memesh-mcp` 接到 Cursor、Cline 或其他 MCP client | 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">
@@ -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
  ### 自帶嵌入(可選)
@@ -461,5 +461,5 @@ npm run test:e2e-dashboard
461
461
  ---
462
462
 
463
463
  <p align="center">
464
- <strong>MIT</strong> — 由 <a href="https://pcircle.ai">PCIRCLE AI</a> 製作
464
+ <strong>MIT</strong> — 由 <a href="https://pcircle.com">PCIRCLE AI</a> 製作
465
465
  </p>