@ai-devkit/memory 0.9.0 → 0.11.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.md +5 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
# @ai-devkit/memory
|
|
2
2
|
|
|
3
|
-
A
|
|
3
|
+
A local MCP-based memory service for AI coding agents. Store project decisions, coding conventions, and reusable fixes so agents can retrieve them across sessions with SQLite full-text search.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@ai-devkit/memory)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
7
|
|
|
8
|
+
Most users get this automatically through `ai-devkit init`. Install `@ai-devkit/memory` directly when you want to wire the MCP memory server into your own MCP client configuration.
|
|
9
|
+
|
|
8
10
|
## Features
|
|
9
11
|
|
|
10
12
|
- 🔍 **Full-Text Search** — FTS5 with BM25 ranking
|
|
@@ -34,6 +36,8 @@ Add to your MCP client configuration (e.g., Claude Code, Cursor):
|
|
|
34
36
|
}
|
|
35
37
|
```
|
|
36
38
|
|
|
39
|
+
Example developer use case: after deciding that all API responses must use DTOs, store that rule once. Future agent sessions can search memory before implementing new endpoints instead of asking you to repeat the convention.
|
|
40
|
+
|
|
37
41
|
### Store Knowledge
|
|
38
42
|
|
|
39
43
|
```json
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-devkit/memory",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.11.0",
|
|
4
|
+
"description": "Local MCP memory for AI coding agents to reuse project decisions, conventions, and fixes across sessions",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"exports": {
|