codemem 0.20.0 → 0.20.1
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/.opencode/plugins/codemem.js +1 -1
- package/README.md +35 -0
- package/package.json +4 -4
|
@@ -15,7 +15,7 @@ import {
|
|
|
15
15
|
|
|
16
16
|
const TRUTHY_VALUES = ["1", "true", "yes"];
|
|
17
17
|
const DISABLED_VALUES = ["0", "false", "off"];
|
|
18
|
-
const PINNED_BACKEND_VERSION = "0.20.
|
|
18
|
+
const PINNED_BACKEND_VERSION = "0.20.1";
|
|
19
19
|
|
|
20
20
|
const normalizeEnvValue = (value) => (value || "").toLowerCase();
|
|
21
21
|
const envHasValue = (value, truthyValues) =>
|
package/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# codemem
|
|
2
|
+
|
|
3
|
+
Persistent memory for AI coding agents — local-first SQLite storage, hybrid retrieval,
|
|
4
|
+
automatic OpenCode injection, and optional peer-to-peer sync.
|
|
5
|
+
|
|
6
|
+
This is the published npm package for the `codemem` CLI.
|
|
7
|
+
|
|
8
|
+
## Install
|
|
9
|
+
|
|
10
|
+
```bash
|
|
11
|
+
npm install -g codemem
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
Or run without installing:
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
npx -y codemem stats
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Quick commands
|
|
21
|
+
|
|
22
|
+
```bash
|
|
23
|
+
codemem --help
|
|
24
|
+
codemem stats
|
|
25
|
+
codemem search "query"
|
|
26
|
+
codemem serve start
|
|
27
|
+
codemem mcp
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
## Documentation
|
|
31
|
+
|
|
32
|
+
- Repository: https://github.com/kunickiaj/codemem
|
|
33
|
+
- Full README: https://github.com/kunickiaj/codemem#readme
|
|
34
|
+
- User guide: https://github.com/kunickiaj/codemem/blob/main/docs/user-guide.md
|
|
35
|
+
- Architecture: https://github.com/kunickiaj/codemem/blob/main/docs/architecture.md
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "codemem",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.1",
|
|
4
4
|
"description": "Memory layer for AI coding agents — search, recall, and sync context across sessions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"commander": "^14.0.3",
|
|
21
21
|
"drizzle-orm": "^0.45.1",
|
|
22
22
|
"omelette": "^0.4.17",
|
|
23
|
-
"@codemem/
|
|
24
|
-
"@codemem/server": "^0.20.
|
|
25
|
-
"@codemem/
|
|
23
|
+
"@codemem/core": "^0.20.1",
|
|
24
|
+
"@codemem/server": "^0.20.1",
|
|
25
|
+
"@codemem/mcp": "^0.20.1"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"@types/node": "^25.5.0",
|