cogmem 3.6.2 → 3.6.4
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/CHANGELOG.md +14 -0
- package/CONTRIBUTING.md +2 -2
- package/README.md +60 -14
- package/RELEASE_CHECKLIST.md +13 -5
- package/dist/bin/connect.js +39 -27
- package/dist/bin/import-support.d.ts +1 -0
- package/dist/bin/import-support.js +15 -2
- package/dist/bin/mcp.js +2 -1
- package/dist/bin/migrate.js +4 -2
- package/dist/bin/openclaw.js +53 -2
- package/dist/bin/update.js +79 -22
- package/dist/episode/EpisodeStore.d.ts +7 -0
- package/dist/episode/EpisodeStore.js +75 -6
- package/dist/factory.js +3 -1
- package/dist/host/openclaw/AutoMemoryPluginInstaller.js +31 -7
- package/dist/migrations/SchemaMigrationRunner.d.ts +9 -1
- package/dist/migrations/SchemaMigrationRunner.js +47 -6
- package/examples/hermes-backend/AGENTS.md +27 -13
- package/examples/hermes-backend/README.md +25 -7
- package/examples/hermes-backend/SKILL.md +54 -17
- package/examples/hermes-backend/references/operations.md +45 -8
- package/examples/openclaw-backend/AGENTS.md +27 -6
- package/examples/openclaw-backend/README.md +26 -8
- package/examples/openclaw-backend/SKILL.md +60 -12
- package/examples/openclaw-backend/references/operations.md +49 -10
- package/install.sh +6 -0
- package/package.json +6 -2
package/install.sh
CHANGED
package/package.json
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cogmem",
|
|
3
3
|
|
|
4
|
-
"version": "3.6.
|
|
4
|
+
"version": "3.6.4",
|
|
5
5
|
|
|
6
6
|
"type": "module",
|
|
7
7
|
"description": "cogmem — agent-native memory kernel for a single local-first AI agent",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/liuqin164/cogmem.git"
|
|
11
|
+
},
|
|
8
12
|
"main": "./dist/public.js",
|
|
9
13
|
"types": "./dist/public.d.ts",
|
|
10
14
|
"exports": {
|
|
@@ -46,7 +50,7 @@
|
|
|
46
50
|
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
47
51
|
"build": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.json",
|
|
48
52
|
"prepare": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\" && tsc -p tsconfig.json",
|
|
49
|
-
"prepublishOnly": "bun run typecheck && bun test __tests__
|
|
53
|
+
"prepublishOnly": "bun run typecheck && bun test __tests__ && bun run build && npm pack --dry-run --json",
|
|
50
54
|
"type": "tsc -p tsconfig.json --noEmit",
|
|
51
55
|
"test": "bun test __tests__",
|
|
52
56
|
"typecheck": "tsc -p tsconfig.json --noEmit"
|