@pcircle/memesh 4.0.2 โ 4.1.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.
- package/README.de.md +115 -86
- package/README.es.md +107 -78
- package/README.fr.md +111 -82
- package/README.ja.md +117 -88
- package/README.ko.md +111 -82
- package/README.md +54 -3
- package/README.pt.md +103 -74
- package/README.th.md +117 -88
- package/README.vi.md +113 -84
- package/README.zh-CN.md +114 -85
- package/README.zh-TW.md +115 -86
- package/dashboard/dist/index.html +4 -4
- package/dist/core/config.d.ts.map +1 -1
- package/dist/core/config.js +6 -10
- package/dist/core/config.js.map +1 -1
- package/dist/core/doctor.d.ts +40 -0
- package/dist/core/doctor.d.ts.map +1 -0
- package/dist/core/doctor.js +217 -0
- package/dist/core/doctor.js.map +1 -0
- package/dist/core/embedder.js.map +1 -1
- package/dist/core/install-channel.d.ts +30 -0
- package/dist/core/install-channel.d.ts.map +1 -0
- package/dist/core/install-channel.js +83 -0
- package/dist/core/install-channel.js.map +1 -0
- package/dist/core/schema-export.d.ts.map +1 -1
- package/dist/core/schema-export.js +34 -0
- package/dist/core/schema-export.js.map +1 -1
- package/dist/core/skill-usage-log.d.ts +11 -0
- package/dist/core/skill-usage-log.d.ts.map +1 -0
- package/dist/core/skill-usage-log.js +121 -0
- package/dist/core/skill-usage-log.js.map +1 -0
- package/dist/core/updater.d.ts +11 -0
- package/dist/core/updater.d.ts.map +1 -0
- package/dist/core/updater.js +28 -0
- package/dist/core/updater.js.map +1 -0
- package/dist/core/verifier.d.ts +37 -0
- package/dist/core/verifier.d.ts.map +1 -0
- package/dist/core/verifier.js +142 -0
- package/dist/core/verifier.js.map +1 -0
- package/dist/core/version-check.d.ts +28 -4
- package/dist/core/version-check.d.ts.map +1 -1
- package/dist/core/version-check.js +167 -21
- package/dist/core/version-check.js.map +1 -1
- package/dist/transports/cli/cli.js +154 -16
- package/dist/transports/cli/cli.js.map +1 -1
- package/dist/transports/http/server.d.ts.map +1 -1
- package/dist/transports/http/server.js +48 -1
- package/dist/transports/http/server.js.map +1 -1
- package/dist/transports/mcp/handlers.d.ts +93 -0
- package/dist/transports/mcp/handlers.d.ts.map +1 -1
- package/dist/transports/mcp/handlers.js +51 -1
- package/dist/transports/mcp/handlers.js.map +1 -1
- package/dist/transports/schemas.d.ts +28 -0
- package/dist/transports/schemas.d.ts.map +1 -1
- package/dist/transports/schemas.js +25 -0
- package/dist/transports/schemas.js.map +1 -1
- package/hooks/hooks.json +10 -0
- package/package.json +5 -3
- package/plugin.json +2 -2
- package/scripts/hooks/pre-bash-orchestration-nudge.js +150 -0
- package/scripts/hooks/pre-edit-recall.js +0 -0
- package/scripts/hooks/session-start.js +55 -2
- package/skills/agentic-orchestration/SKILL.md +399 -0
package/README.ko.md
CHANGED
|
@@ -1,10 +1,13 @@
|
|
|
1
|
+
<!-- translated from README.md @ ab9d25f8d9cb7c78c4cc271717709e2efb4bac76 -->
|
|
2
|
+
<!-- DO NOT edit this file by hand. The maintainer regenerates it from README.md via a private toolkit script (see internal docs). Manual edits will be overwritten on next sync. -->
|
|
3
|
+
|
|
1
4
|
๐ [English](README.md) | [็น้ซไธญๆ](README.zh-TW.md) | [็ฎไฝไธญๆ](README.zh-CN.md) | [ๆฅๆฌ่ช](README.ja.md) | [ํ๊ตญ์ด](README.ko.md) | [Portuguรชs](README.pt.md) | [Franรงais](README.fr.md) | [Deutsch](README.de.md) | [Tiแบฟng Viแปt](README.vi.md) | [Espaรฑol](README.es.md) | [เธ เธฒเธฉเธฒเนเธเธข](README.th.md)
|
|
2
5
|
|
|
3
6
|
<p align="center">
|
|
4
7
|
<h1 align="center">MeMesh LLM Memory</h1>
|
|
5
8
|
<p align="center">
|
|
6
|
-
<strong
|
|
7
|
-
SQLite ํ์ผ ํ๋.
|
|
9
|
+
<strong>Claude Code์ MCP ์ฝ๋ฉ ์์ด์ ํธ๋ฅผ ์ํ ๋ก์ปฌ ๋ฉ๋ชจ๋ฆฌ.</strong><br />
|
|
10
|
+
SQLite ํ์ผ ํ๋. Docker ์์. ํด๋ผ์ฐ๋ ํ์ ์๋.
|
|
8
11
|
</p>
|
|
9
12
|
<p align="center">
|
|
10
13
|
<a href="https://www.npmjs.com/package/@pcircle/memesh"><img src="https://img.shields.io/npm/v/@pcircle/memesh?style=flat-square&color=3b82f6&label=npm" alt="npm" /></a>
|
|
@@ -16,15 +19,17 @@
|
|
|
16
19
|
|
|
17
20
|
---
|
|
18
21
|
|
|
19
|
-
##
|
|
22
|
+
## ๋ฌธ์ ์
|
|
23
|
+
|
|
24
|
+
์ฝ๋ฉ ์์ด์ ํธ๋ ์ธ์
์ด ๋๋๋ฉด ๋ชจ๋ ๊ฒ์ ์์ด๋ฒ๋ฆฝ๋๋ค. ์ํคํ
์ฒ ๊ฒฐ์ , ๋ฒ๊ทธ ์์ , ์คํจํ ํ
์คํธ, ํ๋ค๊ฒ ์ป์ ๊ตํ โ ๋งค๋ฒ ๋ค์ ์ค๋ช
ํด์ผ ํฉ๋๋ค. Claude Code๋ ๋งค๋ฒ ์๋ก ์์ํ๊ณ , ์ด๋ฏธ ์์์ผ ํ ์ ์ฝ ์กฐ๊ฑด์ ๋ค์ ๋ฐ๊ฒฌํ๋ฉฐ, ๋ถํ์ํ๊ฒ ์ปจํ
์คํธ๋ฅผ ์๋นํฉ๋๋ค.
|
|
20
25
|
|
|
21
|
-
|
|
26
|
+
**MeMesh๋ ์ฝ๋ฉ ์์ด์ ํธ์๊ฒ ์๊ตฌ์ ์ด๊ณ ๊ฒ์ ๊ฐ๋ฅํ๋ฉฐ ์งํํ๋ ๋ก์ปฌ ๋ฉ๋ชจ๋ฆฌ๋ฅผ ์ ๊ณตํฉ๋๋ค.**
|
|
22
27
|
|
|
23
|
-
|
|
28
|
+
์ด ํจํค์ง๋ MeMesh ์ ํ๊ตฐ์ ๋ก์ปฌ ๋ฉ๋ชจ๋ฆฌ ๋ ์ด์ด์
๋๋ค. ์๋์ ์ผ๋ก ์๊ณ ์คํ์์ค์
๋๋ค: npm์ผ๋ก ์ค์นํ๊ณ , ๋ฉ๋ชจ๋ฆฌ๋ `~/.memesh/knowledge-graph.db`์ ๋ณด๊ดํ๋ฉฐ, Claude Code ๋๋ MCP ํธํ ํด๋ผ์ด์ธํธ์ ์ฐ๊ฒฐํฉ๋๋ค. ํธ์คํ
์ํฌ์คํ์ด์ค์ ์ํฐํ๋ผ์ด์ฆ OS ์ ํ์ ์ด ํจํค์ง์ README์ ๋ก๋๋งต๊ณผ ๋ณ๊ฐ๋ก ์ ์ง๋ฉ๋๋ค.
|
|
24
29
|
|
|
25
30
|
---
|
|
26
31
|
|
|
27
|
-
## 60์ด
|
|
32
|
+
## 60์ด ์์ ์์ํ๊ธฐ
|
|
28
33
|
|
|
29
34
|
### 1๋จ๊ณ: ์ค์น
|
|
30
35
|
|
|
@@ -32,33 +37,39 @@ AI๋ ์ธ์
์ด ๋๋ ๋๋ง๋ค ๋ชจ๋ ๊ฒ์ ์์ด๋ฒ๋ฆฝ๋๋ค. ๋ชจ๋ ๊ฒฐ์
|
|
|
32
37
|
npm install -g @pcircle/memesh
|
|
33
38
|
```
|
|
34
39
|
|
|
35
|
-
### 2๋จ๊ณ:
|
|
40
|
+
### 2๋จ๊ณ: ์์ฌ๊ฒฐ์ ์ ์ฅ
|
|
36
41
|
|
|
37
42
|
```bash
|
|
38
43
|
memesh remember --name "auth-decision" --type "decision" --obs "Use OAuth 2.0 with PKCE"
|
|
39
44
|
```
|
|
40
45
|
|
|
41
|
-
### 3๋จ๊ณ:
|
|
46
|
+
### 3๋จ๊ณ: ๋์ค์ ํ์
|
|
42
47
|
|
|
43
48
|
```bash
|
|
44
49
|
memesh recall "login security"
|
|
45
|
-
# โ ๋ค๋ฅธ
|
|
50
|
+
# โ ๋ค๋ฅธ ๋จ์ด๋ฅผ ๊ฒ์ํ์ด๋ "OAuth 2.0 with PKCE"๋ฅผ ์ฐพ์ต๋๋ค
|
|
46
51
|
```
|
|
47
52
|
|
|
48
|
-
|
|
53
|
+
**์ด๊ฒ ์ ๋ถ์
๋๋ค.** MeMesh๊ฐ ์ด์ ์ธ์
๊ฐ์ ๊ธฐ์ตํ๊ณ ํ์ํฉ๋๋ค.
|
|
49
54
|
|
|
50
|
-
|
|
55
|
+
์ค์น์ ๋ก์ปฌ ์ฐ๊ฒฐ์ ํ์ธํ๋ ค๋ฉด:
|
|
56
|
+
|
|
57
|
+
```bash
|
|
58
|
+
memesh doctor
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
๋์๋ณด๋๋ฅผ ์ด์ด์ ๋ฉ๋ชจ๋ฆฌ๋ฅผ ํ์ํฉ๋๋ค:
|
|
51
62
|
|
|
52
63
|
```bash
|
|
53
64
|
memesh
|
|
54
65
|
```
|
|
55
66
|
|
|
56
67
|
<p align="center">
|
|
57
|
-
<img src="docs/images/dashboard-search.png" alt="MeMesh Search โ
|
|
68
|
+
<img src="docs/images/dashboard-search.png" alt="MeMesh Search โ ๋ชจ๋ ๋ฉ๋ชจ๋ฆฌ๋ฅผ ์ฆ์ ์ฐพ์ต๋๋ค" width="100%" />
|
|
58
69
|
</p>
|
|
59
70
|
|
|
60
71
|
<p align="center">
|
|
61
|
-
<img src="docs/images/dashboard-analytics.png" alt="MeMesh Analytics โ
|
|
72
|
+
<img src="docs/images/dashboard-analytics.png" alt="MeMesh Analytics โ ๊ฑด๊ฐ ์ ์, ํ์๋ผ์ธ, ํจํด, ์ง์ ์ปค๋ฒ๋ฆฌ์ง" width="100%" />
|
|
62
73
|
</p>
|
|
63
74
|
|
|
64
75
|
<p align="center">
|
|
@@ -67,18 +78,18 @@ memesh
|
|
|
67
78
|
|
|
68
79
|
---
|
|
69
80
|
|
|
70
|
-
##
|
|
81
|
+
## ๋๊ฐ ์ฌ์ฉํ ๊น์?
|
|
71
82
|
|
|
72
|
-
|
|
|
73
|
-
|
|
74
|
-
| **Claude Code๋ฅผ
|
|
75
|
-
|
|
|
76
|
-
|
|
|
77
|
-
|
|
|
83
|
+
| ์ด๋ฐ ๊ฐ๋ฐ์๋ผ๋ฉด | MeMesh๊ฐ ๋์์ค๋๋ค |
|
|
84
|
+
|---|---|
|
|
85
|
+
| **Claude Code๋ฅผ ์ฌ์ฉ ์ค** | ํ๋ก์ ํธ ๊ฒฐ์ , ํ์ผ๋ณ ๊ตํ, ๊ณผ๊ฑฐ ์คํจ๋ฅผ ์์
์ค์ ์๋์ผ๋ก ํ์ |
|
|
86
|
+
| **์ฝ๋ฉ ์์ด์ ํธ ํ์ ์ ์ ** | MCP ํธํ ๋๊ตฌ ์ ์ฒด์์ ํ๋์ ๋ก์ปฌ ๋ฉ๋ชจ๋ฆฌ ๋ ์ด์ด ๊ณต์ |
|
|
87
|
+
| **ํ์ด AI ์ฝ๋ฉ ์ํฌํ๋ก์ฐ ์คํ ์ค** | ํธ์คํ
์ธํ๋ผ ๋์
์์ด ํ๋ก์ ํธ ์ง์ ๋ด๋ณด๋ด๊ธฐ/๊ฐ์ ธ์ค๊ธฐ |
|
|
88
|
+
| **์์ด์ ํธ ๊ฐ๋ฐ์** | MCP, HTTP, CLI, Python SDK๋ฅผ ํตํด ๋ก์ปฌ ๋ฉ๋ชจ๋ฆฌ ์ถ๊ฐ |
|
|
78
89
|
|
|
79
90
|
---
|
|
80
91
|
|
|
81
|
-
##
|
|
92
|
+
## ์ฝ๋ฉ ์์ด์ ํธ๋ฅผ ์ฐ์ ์ผ๋ก ์ค๊ณ
|
|
82
93
|
|
|
83
94
|
<table>
|
|
84
95
|
<tr>
|
|
@@ -88,18 +99,18 @@ memesh
|
|
|
88
99
|
```bash
|
|
89
100
|
memesh-mcp
|
|
90
101
|
```
|
|
91
|
-
MCP
|
|
102
|
+
MCP ๋๊ตฌ + Claude Code ํ
|
|
92
103
|
|
|
93
104
|
</td>
|
|
94
105
|
<td width="33%" align="center">
|
|
95
106
|
|
|
96
|
-
|
|
97
|
-
```
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
107
|
+
**๋ชจ๋ HTTP ํด๋ผ์ด์ธํธ**
|
|
108
|
+
```bash
|
|
109
|
+
curl localhost:3737/v1/recall \
|
|
110
|
+
-H "Content-Type: application/json" \
|
|
111
|
+
-d '{"query":"auth"}'
|
|
101
112
|
```
|
|
102
|
-
`
|
|
113
|
+
`memesh serve` (REST API)
|
|
103
114
|
|
|
104
115
|
</td>
|
|
105
116
|
<td width="33%" align="center">
|
|
@@ -109,7 +120,7 @@ m.recall("auth")
|
|
|
109
120
|
memesh export-schema \
|
|
110
121
|
--format openai
|
|
111
122
|
```
|
|
112
|
-
|
|
123
|
+
๋ชจ๋ API ํธ์ถ์ ๋๊ตฌ ๋ถ์ฌ๋ฃ๊ธฐ
|
|
113
124
|
|
|
114
125
|
</td>
|
|
115
126
|
</tr>
|
|
@@ -117,103 +128,120 @@ memesh export-schema \
|
|
|
117
128
|
|
|
118
129
|
---
|
|
119
130
|
|
|
120
|
-
##
|
|
131
|
+
## OpenMemory, Cursor Memories, Mem0, Zep์๋ ์ ๋ค๋ฅผ๊น์?
|
|
121
132
|
|
|
122
|
-
| | **MeMesh** | Mem0 | Zep |
|
|
123
|
-
|
|
124
|
-
|
|
|
125
|
-
|
|
|
126
|
-
| **์ ์ฅ์** | SQLite ํ์ผ ํ๋ |
|
|
127
|
-
|
|
|
128
|
-
|
|
|
129
|
-
|
|
|
130
|
-
|
|
|
133
|
+
| | **MeMesh** | OpenMemory | Cursor Memories | Mem0 | Zep / Graphiti |
|
|
134
|
+
|---|---|---|---|---|---|
|
|
135
|
+
| **์ต์ ํ ๋์** | ์ฝ๋ฉ ์์ด์ ํธ ๋ก์ปฌ ๋ฉ๋ชจ๋ฆฌ | ๋ก์ปฌ/ํฌ๋ก์ค ํด๋ผ์ด์ธํธ MCP ๋ฉ๋ชจ๋ฆฌ | Cursor ๋ค์ดํฐ๋ธ ํ๋ก์ ํธ ๋ฉ๋ชจ๋ฆฌ | ๊ด๋ฆฌํ ์ฑ/์์ด์ ํธ ๋ฉ๋ชจ๋ฆฌ | ์๊ณ์ด ์ง์ ๊ทธ๋ํ |
|
|
136
|
+
| **์ค์น ๋ฐฉ์** | `npm install -g @pcircle/memesh` | ๋ก์ปฌ ์ฑ/์๋ฒ ํ๋ฆ | Cursor ๋ด์ฅ | ํด๋ผ์ฐ๋ API / SDK / MCP | ์๋น์ค/ํ๋ ์์ํฌ ๊ตฌ์ฑ |
|
|
137
|
+
| **์ ์ฅ์** | ๋ก์ปฌ SQLite ํ์ผ ํ๋ | ๋ก์ปฌ ๋ฉ๋ชจ๋ฆฌ ์คํ | Cursor ๊ด๋ฆฌ ๊ท์น/๋ฉ๋ชจ๋ฆฌ | ํธ์คํ
๋๋ ์
ํ ํธ์คํ
์คํ | ๊ทธ๋ํ ๋ฐ์ดํฐ๋ฒ ์ด์ค |
|
|
138
|
+
| **ํด๋ผ์ฐ๋ ํ์** | ์๋์ค | ๋ก์ปฌ ๋ชจ๋๋ ์๋์ค | Cursor ๊ณ์ /์ค์ ์ ๋ฐ๋ผ | ํ๋ซํผ์ ์ํด์ ํ์ | ๋ณดํต ํ์/์
ํ ํธ์คํ
|
|
|
139
|
+
| **Claude Code ํ
** | 1์์ | MCP ๋๊ตฌ | ์์ | MCP ๋๊ตฌ | Claude Code ํนํ ์๋ |
|
|
140
|
+
| **๋์๋ณด๋** | ๋ด์ฅ | ๋ด์ฅ | Cursor ์ค์ | ํ๋ซํผ ๋์๋ณด๋ | ํ๋ซํผ/๊ทธ๋ํ ๋๊ตฌ |
|
|
141
|
+
| **ํธ๋ ์ด๋์คํ** | ๊ฐ๋จํ ๋ก์ปฌ ์๋ฃจ์
, ์ํฐํ๋ผ์ด์ฆ ๊ท๋ชจ ์๋ | ๋ ๋์ ๋ก์ปฌ ์ฑ ํํ๋ฆฐํธ | Cursor์ ์ข
์ | ๊ฐ๋ ฅํ ๊ด๋ฆฌํ ํ๋ซํผ, ๋ก์ปฌ ์ฐ์ ์๋ | ๊ฐ๋ ฅํ ๊ทธ๋ํ ๋ชจ๋ธ, ๋ณต์กํ ๊ตฌ์ฑ |
|
|
131
142
|
|
|
132
|
-
**MeMesh
|
|
143
|
+
**MeMesh๋ ์ํฐํ๋ผ์ด์ฆ๊ธ ๊ด๋ฆฌ ์ธํ๋ผ๋ฅผ ํฌ๊ธฐํ๊ณ ์ฆ๊ฐ์ ์ธ ๋ก์ปฌ ๊ตฌ์ฑ, ๊ฒ์ฌ ๊ฐ๋ฅํ ์ ์ฅ์, ์ฝ๋ฉ ์์ด์ ํธ ์ํฌํ๋ก์ฐ ํ
์ ์ป์ต๋๋ค.**
|
|
133
144
|
|
|
134
145
|
---
|
|
135
146
|
|
|
136
|
-
## ์๋์ผ๋ก ์ผ์ด๋๋
|
|
147
|
+
## Claude Code์์ ์๋์ผ๋ก ์ผ์ด๋๋ ์ผ
|
|
137
148
|
|
|
138
|
-
๋ชจ๋ ๊ฒ์
|
|
149
|
+
๋ชจ๋ ๊ฒ์ ์๋์ผ๋ก ๊ธฐ์ตํ ํ์๋ ์์ต๋๋ค. MeMesh๋ ์์
์ค์ ์ง์์ ์บก์ฒํ๊ณ ์ฃผ์
ํ๋ **6๊ฐ์ง ํ
**์ด ์์ต๋๋ค:
|
|
139
150
|
|
|
140
|
-
|
|
|
141
|
-
|
|
142
|
-
|
|
|
143
|
-
|
|
|
144
|
-
| **
|
|
145
|
-
|
|
|
151
|
+
| ์์ | MeMesh๊ฐ ์ํํ๋ ์์
|
|
|
152
|
+
|------|---|
|
|
153
|
+
| **๋งค ์ธ์
์์** | ๊ฐ์ฅ ๊ด๋ จ ์๋ ๋ฉ๋ชจ๋ฆฌ + ๊ณผ๊ฑฐ ๊ตํ์ ์ฌ์ ๊ฒฝ๊ณ + ์์ด์ ํธ ์ค์ผ์คํธ๋ ์ด์
๋ฐฐ๋ ๋ก๋ |
|
|
154
|
+
| **ํ์ผ ํธ์ง ์ ** | Claude๊ฐ ์ฝ๋๋ฅผ ์์ฑํ๊ธฐ ์ ์ ํ์ผ ๋๋ ํ๋ก์ ํธ์ ์ฐ๊ฒฐ๋ ๋ฉ๋ชจ๋ฆฌ ํ์ |
|
|
155
|
+
| **Bash ๋ช
๋ น ์ ** | Claude๊ฐ ๋์ ๊ฒ์ฆ ๊ฐ๋ฅ์ฑ์ ๋ช
๋ น์ด(ํ
์คํธ, ๋น๋, ๋ฆฐํธ, ๋ง์ด๊ทธ๋ ์ด์
, ๋ฐฐํฌ, ๋ฒค์น๋งํฌ)๋ฅผ ๋ฐฑ๊ทธ๋ผ์ด๋ ์์ด์ ํธ๋ก ์คํํ๋๋ก ์ ๋ |
|
|
156
|
+
| **๋ชจ๋ `git commit` ํ** | ๋ณ๊ฒฝ ์ฌํญ์ diff ํต๊ณ์ ํจ๊ป ๊ธฐ๋ก |
|
|
157
|
+
| **Claude๊ฐ ๋ฉ์ถ ๋** | ํธ์ง๋ ํ์ผ, ์์ ๋ ์๋ฌ, ์คํจ๋ก๋ถํฐ ์๋ ์์ฑ๋ ๊ตฌ์กฐํ๋ ๊ตํ ์บก์ฒ |
|
|
158
|
+
| **์ปจํ
์คํธ ์์ถ ์ ** | ์ปจํ
์คํธ ์ ํ์ผ๋ก ์์ค๋๊ธฐ ์ ์ ์ง์ ์ ์ฅ |
|
|
146
159
|
|
|
147
|
-
> **์ธ์ ๋
|
|
160
|
+
> **์ธ์ ๋ ํด์ ๊ฐ๋ฅ:** `export MEMESH_AUTO_CAPTURE=false`
|
|
148
161
|
|
|
149
162
|
---
|
|
150
163
|
|
|
151
164
|
## ๋์๋ณด๋
|
|
152
165
|
|
|
153
|
-
7๊ฐ ํญ, 11๊ฐ ์ธ์ด, ์ธ๋ถ ์์กด์ฑ
|
|
166
|
+
7๊ฐ ํญ, 11๊ฐ ์ธ์ด, ์ธ๋ถ ์์กด์ฑ ์์. ์๋ฒ ์คํ ์ค `http://localhost:3737/dashboard`์์ ์ ๊ทผํฉ๋๋ค.
|
|
154
167
|
|
|
155
168
|
| ํญ | ๋ด์ฉ |
|
|
156
|
-
|
|
157
|
-
| **Search** | ๋ชจ๋ ๋ฉ๋ชจ๋ฆฌ์
|
|
158
|
-
| **Browse** |
|
|
159
|
-
| **Analytics** | ๋ฉ๋ชจ๋ฆฌ ๊ฑด๊ฐ ์ ์
|
|
160
|
-
| **Graph** | ํ์
ํํฐ, ๊ฒ์, ์๊ณ ๋ชจ๋,
|
|
161
|
-
| **Lessons** | ๊ณผ๊ฑฐ ์คํจ๋ก๋ถํฐ
|
|
162
|
-
| **Manage** | ์ํฐํฐ
|
|
163
|
-
| **Settings** | LLM
|
|
169
|
+
|------|---|
|
|
170
|
+
| **Search** | ๋ชจ๋ ๋ฉ๋ชจ๋ฆฌ์ ๊ฑธ์น ์ ์ฒด ํ
์คํธ + ๋ฒกํฐ ์ ์ฌ์ฑ ๊ฒ์ |
|
|
171
|
+
| **Browse** | ๋ณด๊ด ๋ฐ ๋ณต๊ตฌ ์ต์
์ด ์๋ ๋ชจ๋ ์ํฐํฐ ํ์ด์ง ๋ฆฌ์คํธ |
|
|
172
|
+
| **Analytics** | ๋ฉ๋ชจ๋ฆฌ ๊ฑด๊ฐ ์ ์(0-100), 30์ผ ํ์๋ผ์ธ, ๊ฐ์น ์งํ, ์ง์ ์ปค๋ฒ๋ฆฌ์ง, ์ ๋ฆฌ ์ ์, ์์
ํจํด |
|
|
173
|
+
| **Graph** | ํ์
ํํฐ, ๊ฒ์, ์๊ณ ๋ชจ๋, ์ต๊ทผ์ฑ ํํธ๋งต์ด ์๋ ์ธํฐ๋ํฐ๋ธ ํฌ์ค ๋๋ ์
์ง์ ๊ทธ๋ํ |
|
|
174
|
+
| **Lessons** | ๊ณผ๊ฑฐ ์คํจ๋ก๋ถํฐ ๊ตฌ์กฐํ๋ ๊ตํ(์๋ฌ, ๊ทผ๋ณธ ์์ธ, ์์ , ์๋ฐฉ) |
|
|
175
|
+
| **Manage** | ์ํฐํฐ ๋ณด๊ด ๋ฐ ๋ณต๊ตฌ |
|
|
176
|
+
| **Settings** | LLM ํ๋ก๋ฐ์ด๋ ์ค์ , ์ฆ์ ์ธ์ด ์ ํ๊ธฐ |
|
|
164
177
|
|
|
165
178
|
---
|
|
166
179
|
|
|
167
180
|
## ์ค๋งํธ ๊ธฐ๋ฅ
|
|
168
181
|
|
|
169
|
-
**๐ง ์ค๋งํธ ๊ฒ์** โ "login security"๋ฅผ ๊ฒ์ํ๋ฉด "OAuth PKCE"์ ๊ดํ ๋ฉ๋ชจ๋ฆฌ๋ฅผ
|
|
182
|
+
**๐ง ์ค๋งํธ ๊ฒ์** โ "login security"๋ฅผ ๊ฒ์ํ๋ฉด "OAuth PKCE"์ ๊ดํ ๋ฉ๋ชจ๋ฆฌ๋ฅผ ์ฐพ์ต๋๋ค. MeMesh๋ ์ค์ ๋ LLM์ผ๋ก ์ฟผ๋ฆฌ๋ฅผ ๊ด๋ จ ์ฉ์ด๋ก ํ์ฅํฉ๋๋ค.
|
|
170
183
|
|
|
171
|
-
**๐ ์ ์
|
|
184
|
+
**๐ ์ ์ ์์ ๋งค๊น** โ ๊ฒฐ๊ณผ๋ ๊ด๋ จ์ฑ(30%) + ์ต๊ทผ์ฑ(25%) + ๋น๋(15%) + ์ ๋ขฐ๋(15%) + ํ์ ์ํฅ(10%) + ์๊ณ์ด ์ ํจ์ฑ(5%)์ผ๋ก ์์ ๋งค๊ฒจ์ง๋๋ค.
|
|
172
185
|
|
|
173
|
-
**๐ ์ง์ ์งํ** โ ๊ฒฐ์ ์
|
|
186
|
+
**๐ ์ง์ ์งํ** โ ๊ฒฐ์ ์ ๋ณํฉ๋๋ค. `forget`์ผ๋ก ์ค๋๋ ๋ฉ๋ชจ๋ฆฌ ๋ณด๊ด(์ ๋ ์ญ์ ์ ํจ). `supersedes` ๊ด๊ณ๊ฐ ๊ตฌ โ ์ ์ ์ฐ๊ฒฐํฉ๋๋ค. AI๋ ํญ์ ์ต์ ๋ฒ์ ์ ๋ด
๋๋ค.
|
|
174
187
|
|
|
175
|
-
**โ ๏ธ ์ถฉ๋ ๊ฐ์ง** โ
|
|
188
|
+
**โ ๏ธ ์ถฉ๋ ๊ฐ์ง** โ ์๋ก ๋ชจ์๋๋ ๋ฉ๋ชจ๋ฆฌ ๋ ๊ฐ๊ฐ ์์ผ๋ฉด MeMesh๊ฐ ๊ฒฝ๊ณ ํฉ๋๋ค.
|
|
176
189
|
|
|
177
190
|
**๐ฆ ํ ๊ณต์ ** โ `memesh export > team-knowledge.json` โ ํ๊ณผ ๊ณต์ โ `memesh import team-knowledge.json`
|
|
191
|
+
์ํฌํธ๋ ๋ฒ๋ค์ ๊ณ์ ๊ฒ์ ๊ฐ๋ฅํ์ง๋ง, MeMesh๋ ๊ฒํ ํ๊ฑฐ๋ ๋ก์ปฌ์ ๋ค์ ์ ์ฅํ ๋๊น์ง Claude ํ
์ ์ํฌํธ๋ ๋ฉ๋ชจ๋ฆฌ๋ฅผ ์๋ ์ฃผ์
ํ์ง ์์ต๋๋ค.
|
|
192
|
+
|
|
193
|
+
---
|
|
194
|
+
|
|
195
|
+
## ์ฌ์ฉ ์์
|
|
196
|
+
|
|
197
|
+
> "MeMesh๊ฐ 3์ฃผ ์ ์ ์์์ ํ๋ฆ๋ณด๋ค PKCE๋ฅผ ์ ํํ๋ค๋ ๊ฒ์ ๊ธฐ์ตํ์ต๋๋ค. ๋ค์ ์ธ์ฆ์ ๋ํด Claude์๊ฒ ๋ฌผ์์ ๋, ์ด๋ฏธ ์๊ณ ์์์ต๋๋ค โ ์ค๋ช
ํ ํ์ ์์์ต๋๋ค."
|
|
198
|
+
> โ **SaaS๋ฅผ ๋ง๋๋ ๊ฐ๋ณ ๊ฐ๋ฐ์**
|
|
199
|
+
|
|
200
|
+
> "๋งค์ฃผ ๊ธ์์ผ ํ ๋ฉ๋ชจ๋ฆฌ๋ฅผ ๋ด๋ณด๋ด๊ณ ์์์ผ์ ์ํฌํธํฉ๋๋ค. ๋ชจ๋ Claude๊ฐ ์ฃผ๊ฐ ์์ ์ ํ์ด ์ง๋์ฃผ์ ๋ฐฐ์ด ๊ฒ์ ์๊ณ ์์ํฉ๋๋ค."
|
|
201
|
+
> โ **3๋ช
์คํํธ์
, ๊ณต์ ์ง์๋ฒ ์ด์ค**
|
|
202
|
+
|
|
203
|
+
> "๋์๋ณด๋๋ฅผ ๋ณด๋ ๋ฉ๋ชจ๋ฆฌ์ 90%๊ฐ ์๋ ์์ฑ๋ ์ธ์
๋ก๊ทธ์์ต๋๋ค. `remember`๋ฅผ ์์์ ์ผ๋ก ์ฌ์ฉํด์ ์ํคํ
์ฒ ๊ฒฐ์ ์ ์ ์ฅํ๊ธฐ ์์ํ์ต๋๋ค. ์ ๋ง ๋ฐ๋์์ต๋๋ค."
|
|
204
|
+
> โ **Analytics ํญ์ ๋ฐ๊ฒฌํ ๊ฐ๋ฐ์**
|
|
178
205
|
|
|
179
206
|
---
|
|
180
207
|
|
|
181
|
-
## ์ค๋งํธ ๋ชจ๋
|
|
208
|
+
## ์ค๋งํธ ๋ชจ๋ ์ธ์ ๊ธ (์ ํ)
|
|
182
209
|
|
|
183
|
-
MeMesh๋ ๊ธฐ๋ณธ์ ์ผ๋ก
|
|
210
|
+
MeMesh๋ ๊ธฐ๋ณธ์ ์ผ๋ก ์คํ๋ผ์ธ์์ ์๋ํฉ๋๋ค. ์ฟผ๋ฆฌ ํ์ฅ, ๋ ์ค๋งํธํ ์ถ์ถ, ์์ถ์ ์ํ ๋๋ง LLM API ํค๋ฅผ ์ถ๊ฐํฉ๋๋ค:
|
|
184
211
|
|
|
185
212
|
```bash
|
|
186
213
|
memesh config set llm.provider anthropic
|
|
187
214
|
memesh config set llm.api-key sk-ant-...
|
|
188
215
|
```
|
|
189
216
|
|
|
190
|
-
๋๋ ๋์๋ณด๋
|
|
217
|
+
๋๋ ๋์๋ณด๋ Settings ํญ ์ฌ์ฉ (๋น์ฃผ์ผ ์ค์ ):
|
|
191
218
|
|
|
192
219
|
```bash
|
|
193
|
-
memesh # ๋์๋ณด๋ ์ด๊ธฐ โ
|
|
220
|
+
memesh # ๋์๋ณด๋ ์ด๊ธฐ โ Settings ํญ
|
|
194
221
|
```
|
|
195
222
|
|
|
196
|
-
| |
|
|
223
|
+
| | Level 0 (๊ธฐ๋ณธ) | Level 1 (์ค๋งํธ ๋ชจ๋) |
|
|
197
224
|
|---|---|---|
|
|
198
|
-
| **๊ฒ์** | FTS5 ํค์๋ ๋งค์นญ | + LLM ์ฟผ๋ฆฌ ํ์ฅ (~97%
|
|
199
|
-
| **์๋
|
|
225
|
+
| **๊ฒ์** | FTS5 ํค์๋ ๋งค์นญ | + LLM ์ฟผ๋ฆฌ ํ์ฅ (~97% ํ์์จ) |
|
|
226
|
+
| **์๋ ์บก์ฒ** | ๊ท์น ๊ธฐ๋ฐ ํจํด | + LLM์ด ๊ฒฐ์ ๊ณผ ๊ตํ ์ถ์ถ |
|
|
200
227
|
| **์์ถ** | ์ฌ์ฉ ๋ถ๊ฐ | `consolidate`๋ก ์ฅํฉํ ๋ฉ๋ชจ๋ฆฌ ์์ถ |
|
|
201
|
-
| **๋น์ฉ** | ๋ฌด๋ฃ, API ํค ๋ถํ์ |
|
|
228
|
+
| **๋น์ฉ** | ๋ฌด๋ฃ, API ํค ๋ถํ์ | ~$0.0001 ๊ฒ์๋น (Haiku) |
|
|
202
229
|
|
|
203
230
|
---
|
|
204
231
|
|
|
205
|
-
##
|
|
232
|
+
## 9๊ฐ์ง ๋ฉ๋ชจ๋ฆฌ ๋๊ตฌ ์ ์ฒด
|
|
206
233
|
|
|
207
|
-
| ๋๊ตฌ |
|
|
208
|
-
|
|
209
|
-
| `remember` |
|
|
210
|
-
| `recall` | ๋ค์ค ์์
|
|
211
|
-
| `forget` | ์ํํธ
|
|
234
|
+
| ๋๊ตฌ | ์ญํ |
|
|
235
|
+
|---|---|
|
|
236
|
+
| `remember` | ๊ด์ฐฐ, ๊ด๊ณ, ํ๊ทธ๋ฅผ ํฌํจํ ์ง์ ์ ์ฅ |
|
|
237
|
+
| `recall` | ๋ค์ค ์์ ์ ์ ๋งค๊น๊ณผ LLM ์ฟผ๋ฆฌ ํ์ฅ์ด ์๋ ์ค๋งํธ ๊ฒ์ |
|
|
238
|
+
| `forget` | ์ํํธ ๋ณด๊ด(์ ๋ ์ญ์ ์ ํจ) ๋๋ ํน์ ๊ด์ฐฐ ์ ๊ฑฐ |
|
|
212
239
|
| `consolidate` | LLM ๊ธฐ๋ฐ ์ฅํฉํ ๋ฉ๋ชจ๋ฆฌ ์์ถ |
|
|
213
|
-
| `export` |
|
|
214
|
-
| `import` | ๋ณํฉ ์ ๋ต(
|
|
215
|
-
| `learn` | ์ค์๋ก๋ถํฐ ๊ตฌ์กฐํ๋ ๊ตํ ๊ธฐ๋ก
|
|
240
|
+
| `export` | ํ๋ก์ ํธ๋ ํ ๋ฉค๋ฒ ๊ฐ ๋ฉ๋ชจ๋ฆฌ JSON ๊ณต์ |
|
|
241
|
+
| `import` | ๋ณํฉ ์ ๋ต(์คํต/๋ฎ์ด์ฐ๊ธฐ/์ถ๊ฐ)์ด ์๋ ๋ฉ๋ชจ๋ฆฌ ์ํฌํธ |
|
|
242
|
+
| `learn` | ์ค์๋ก๋ถํฐ ๊ตฌ์กฐํ๋ ๊ตํ ๊ธฐ๋ก(์๋ฌ, ๊ทผ๋ณธ ์์ธ, ์์ , ์๋ฐฉ) |
|
|
216
243
|
| `user_patterns` | ์์
ํจํด ๋ถ์ โ ์ผ์ , ๋๊ตฌ, ๊ฐ์ , ํ์ต ์์ญ |
|
|
244
|
+
| `verify_agent_work` | ๋ฐฑ๊ทธ๋ผ์ด๋ ์์ด์ ํธ ์์
์ ๋ํ ๊ฒ์ฆ ๋ณด๊ณ ์ ์ ์ง; ์ฒญ๊ตฌ๋ ํ์ผ ๋ณ๊ฒฝ์ฌํญ์ `git diff`์ ํ์ค ํ์ธ |
|
|
217
245
|
|
|
218
246
|
---
|
|
219
247
|
|
|
@@ -234,7 +262,7 @@ memesh # ๋์๋ณด๋ ์ด๊ธฐ โ ์ค์ ํญ
|
|
|
234
262
|
(~/.memesh/knowledge-graph.db)
|
|
235
263
|
```
|
|
236
264
|
|
|
237
|
-
์ฝ์ด๋
|
|
265
|
+
์ฝ์ด๋ ํ๋ ์์ํฌ์ ๊ตฌ์ ๋ฐ์ง ์์ต๋๋ค. ๊ฐ์ ๋ก์ง์ด ํฐ๋ฏธ๋, HTTP, MCP์์ ์คํ๋ฉ๋๋ค.
|
|
238
266
|
|
|
239
267
|
---
|
|
240
268
|
|
|
@@ -243,7 +271,8 @@ memesh # ๋์๋ณด๋ ์ด๊ธฐ โ ์ค์ ํญ
|
|
|
243
271
|
```bash
|
|
244
272
|
git clone https://github.com/PCIRCLE-AI/memesh-llm-memory
|
|
245
273
|
cd memesh-llm-memory && npm install && npm run build
|
|
246
|
-
npm test
|
|
274
|
+
npm test # 489 tests
|
|
275
|
+
npm run test:e2e-dashboard
|
|
247
276
|
```
|
|
248
277
|
|
|
249
278
|
๋์๋ณด๋: `cd dashboard && npm install && npm run dev`
|
|
@@ -251,5 +280,5 @@ npm test -- --run # 413 tests
|
|
|
251
280
|
---
|
|
252
281
|
|
|
253
282
|
<p align="center">
|
|
254
|
-
<strong>MIT</strong> โ <a href="https://pcircle.ai">PCIRCLE AI</a>
|
|
283
|
+
<strong>MIT</strong> โ Made by <a href="https://pcircle.ai">PCIRCLE AI</a>
|
|
255
284
|
</p>
|
package/README.md
CHANGED
|
@@ -26,6 +26,22 @@ This package is the local memory layer of the MeMesh product family. It is inten
|
|
|
26
26
|
|
|
27
27
|
---
|
|
28
28
|
|
|
29
|
+
## Proof โ 95.40% R@5 on LongMemEval-S
|
|
30
|
+
|
|
31
|
+
MeMesh's retrieval engine is **FTS5 alone** (no LLM, no embeddings on the hot path), measured against the public [LongMemEval-S](https://huggingface.co/datasets/xiaowu0162/longmemeval) benchmark (500 questions, MIT-licensed):
|
|
32
|
+
|
|
33
|
+
| System | R@5 | Source |
|
|
34
|
+
|---|---|---|
|
|
35
|
+
| **MeMesh (Mode A, FTS5)** | **95.40%** | [benchmarks/longmemeval/RESULTS.md](benchmarks/longmemeval/RESULTS.md) |
|
|
36
|
+
| MemPalace | 96.6% | Vendor self-report |
|
|
37
|
+
| Supermemory | ~82% | Vendor estimate |
|
|
38
|
+
| Zep | 63.8% | LongMemEval paper |
|
|
39
|
+
| Mem0 | 49.0% | LongMemEval paper |
|
|
40
|
+
|
|
41
|
+
Reproduction commands, dataset SHA256, raw per-question results, and known-failure analysis are all in [`benchmarks/longmemeval/`](benchmarks/longmemeval/). Re-runnable in ~10 seconds.
|
|
42
|
+
|
|
43
|
+
---
|
|
44
|
+
|
|
29
45
|
## Get Started in 60 Seconds
|
|
30
46
|
|
|
31
47
|
### Step 1: Install
|
|
@@ -34,12 +50,22 @@ This package is the local memory layer of the MeMesh product family. It is inten
|
|
|
34
50
|
npm install -g @pcircle/memesh
|
|
35
51
|
```
|
|
36
52
|
|
|
53
|
+
> **First-install notes (one-time):**
|
|
54
|
+
> - **Native modules** โ `better-sqlite3` and `sqlite-vec` install via prebuilt binaries on macOS (arm64/x64), Linux (x64/arm64), and Windows x64. On uncommon platforms or when prebuilds fail, you'll need a working C/C++ toolchain.
|
|
55
|
+
> - **Embedding model** โ the first call that triggers a local embedding (e.g. `recall` with semantic mode) downloads `Xenova/all-MiniLM-L6-v2` (~80 MB) into `~/.memesh/models/`. Subsequent calls are instant. The default retrieval path (FTS5) does not require this download.
|
|
56
|
+
|
|
37
57
|
### Step 2: Store a decision
|
|
38
58
|
|
|
39
59
|
```bash
|
|
40
60
|
memesh remember --name "auth-decision" --type "decision" --obs "Use OAuth 2.0 with PKCE"
|
|
41
61
|
```
|
|
42
62
|
|
|
63
|
+
Or quick-capture in one line:
|
|
64
|
+
|
|
65
|
+
```bash
|
|
66
|
+
memesh remember "Use OAuth 2.0 with PKCE for the new auth"
|
|
67
|
+
```
|
|
68
|
+
|
|
43
69
|
### Step 3: Recall it later
|
|
44
70
|
|
|
45
71
|
```bash
|
|
@@ -49,6 +75,12 @@ memesh recall "login security"
|
|
|
49
75
|
|
|
50
76
|
**That's it.** MeMesh is now remembering and recalling across sessions.
|
|
51
77
|
|
|
78
|
+
If you want to verify the install and local wiring end to end:
|
|
79
|
+
|
|
80
|
+
```bash
|
|
81
|
+
memesh doctor
|
|
82
|
+
```
|
|
83
|
+
|
|
52
84
|
Open the dashboard to explore your memory:
|
|
53
85
|
|
|
54
86
|
```bash
|
|
@@ -137,12 +169,13 @@ Paste tools into any API call
|
|
|
137
169
|
|
|
138
170
|
## What Happens Automatically In Claude Code
|
|
139
171
|
|
|
140
|
-
You don't need to manually remember everything. MeMesh has **
|
|
172
|
+
You don't need to manually remember everything. MeMesh has **6 hooks** that capture and inject knowledge while you work:
|
|
141
173
|
|
|
142
174
|
| When | What MeMesh does |
|
|
143
175
|
|------|------------------|
|
|
144
176
|
| **Every session start** | Loads your most relevant memories + proactive warnings from past lessons |
|
|
145
177
|
| **Before editing files** | Recalls memories tied to the file or project before Claude writes code |
|
|
178
|
+
| **Before bash commands** | (Opt-in) Nudges Claude to dispatch high-verifiability commands (test, build, lint, migrate, deploy, benchmark) as background agents |
|
|
146
179
|
| **After every `git commit`** | Records what you changed, with diff stats |
|
|
147
180
|
| **When Claude stops** | Captures files edited, errors fixed, and auto-generates structured lessons from failures |
|
|
148
181
|
| **Before context compaction** | Saves knowledge before it's lost to context limits |
|
|
@@ -151,6 +184,23 @@ You don't need to manually remember everything. MeMesh has **5 hooks** that capt
|
|
|
151
184
|
|
|
152
185
|
---
|
|
153
186
|
|
|
187
|
+
## Configuration
|
|
188
|
+
|
|
189
|
+
All configuration is via environment variables. Defaults are local-only and zero-network โ you don't need to set anything to get a working system.
|
|
190
|
+
|
|
191
|
+
| Variable | Default | What it does |
|
|
192
|
+
|---|---|---|
|
|
193
|
+
| `MEMESH_DB_PATH` | `~/.memesh/knowledge-graph.db` | Override the SQLite database location. |
|
|
194
|
+
| `MEMESH_AUTO_CAPTURE` | `true` | Disable the auto-capture hooks (`Stop`, `PreCompact`) entirely. |
|
|
195
|
+
| `MEMESH_AUTO_DETECT_LLM` | unset | Set to `1` to let memesh auto-detect a provider from your shell env (`OPENAI_API_KEY` etc.) and switch to BYOK embeddings. **Default fresh-install is local ONNX (384-dim) only** โ opt in if you want cloud embeddings. Without this flag set, an `OPENAI_API_KEY` lying around in your shell is ignored. |
|
|
196
|
+
| `MEMESH_ENABLE_AGENTIC_ORCHESTRATION` | unset | Set to `1` to enable an experimental working-model protocol (CTO / Orchestrator / Agents framing). Adds a session-start banner, a Bash command nudge, and `verify_agent_work` telemetry. The protocol's effectiveness is being instrumented, not yet proven โ opt in if you want to participate. **Default is OFF**: the core memory features work without this flag. |
|
|
197
|
+
| `OPENAI_API_KEY` | unset | Your OpenAI key. Only used when `MEMESH_AUTO_DETECT_LLM=1` or you explicitly configure the provider. |
|
|
198
|
+
| `OLLAMA_HOST` | `http://localhost:11434` | Override the Ollama endpoint when using a local Ollama provider. |
|
|
199
|
+
|
|
200
|
+
`memesh doctor` prints the resolved configuration so you can see what's active.
|
|
201
|
+
|
|
202
|
+
---
|
|
203
|
+
|
|
154
204
|
## Dashboard
|
|
155
205
|
|
|
156
206
|
7 tabs, 11 languages, zero external dependencies. Access at `http://localhost:3737/dashboard` when the server is running.
|
|
@@ -219,7 +269,7 @@ memesh # opens dashboard โ Settings tab
|
|
|
219
269
|
|
|
220
270
|
---
|
|
221
271
|
|
|
222
|
-
## All
|
|
272
|
+
## All 9 Memory Tools
|
|
223
273
|
|
|
224
274
|
| Tool | What it does |
|
|
225
275
|
|------|-------------|
|
|
@@ -231,6 +281,7 @@ memesh # opens dashboard โ Settings tab
|
|
|
231
281
|
| `import` | Import memories with merge strategies (skip / overwrite / append) |
|
|
232
282
|
| `learn` | Record structured lessons from mistakes (error, root cause, fix, prevention) |
|
|
233
283
|
| `user_patterns` | Analyze your work patterns โ schedule, tools, strengths, learning areas |
|
|
284
|
+
| `verify_agent_work` | Persist a verification report for background-agent work; reality-checks claimed file changes against `git diff` |
|
|
234
285
|
|
|
235
286
|
---
|
|
236
287
|
|
|
@@ -260,7 +311,7 @@ Core is framework-agnostic. Same logic runs from terminal, HTTP, or MCP.
|
|
|
260
311
|
```bash
|
|
261
312
|
git clone https://github.com/PCIRCLE-AI/memesh-llm-memory
|
|
262
313
|
cd memesh-llm-memory && npm install && npm run build
|
|
263
|
-
npm test #
|
|
314
|
+
npm test # 489 tests
|
|
264
315
|
npm run test:e2e-dashboard
|
|
265
316
|
```
|
|
266
317
|
|