linksee-memory 0.1.2 → 0.1.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/dist/bin/stats.js CHANGED
@@ -83,7 +83,7 @@ function main() {
83
83
  const entityKinds = db
84
84
  .prepare("SELECT kind, COUNT(*) as c FROM entities GROUP BY kind ORDER BY c DESC")
85
85
  .all();
86
- const pinned = db.prepare('SELECT COUNT(*) as c FROM memories WHERE importance >= 1.0').get().c;
86
+ const pinned = db.prepare('SELECT COUNT(*) as c FROM memories WHERE importance >= 0.9').get().c;
87
87
  const protectedCount = db.prepare('SELECT COUNT(*) as c FROM memories WHERE protected = 1').get().c;
88
88
  const oldest = db.prepare('SELECT MIN(created_at) as t FROM memories').get().t;
89
89
  const newest = db.prepare('SELECT MAX(created_at) as t FROM memories').get().t;
package/package.json CHANGED
@@ -1,15 +1,15 @@
1
1
  {
2
2
  "name": "linksee-memory",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "mcpName": "io.github.michielinksee/linksee-memory",
5
5
  "description": "Local-first agent memory MCP — cross-agent brain with 6-layer structured memory + token-saving file diff cache",
6
6
  "type": "module",
7
7
  "bin": {
8
- "linksee-memory": "./dist/mcp/server.js",
9
- "linksee-memory-import": "./dist/bin/import-sessions.js",
10
- "linksee-memory-sync": "./dist/bin/sync-session.js",
11
- "linksee-memory-install-skill": "./dist/bin/install-skill.js",
12
- "linksee-memory-stats": "./dist/bin/stats.js"
8
+ "linksee-memory": "dist/mcp/server.js",
9
+ "linksee-memory-import": "dist/bin/import-sessions.js",
10
+ "linksee-memory-sync": "dist/bin/sync-session.js",
11
+ "linksee-memory-install-skill": "dist/bin/install-skill.js",
12
+ "linksee-memory-stats": "dist/bin/stats.js"
13
13
  },
14
14
  "main": "./dist/mcp/server.js",
15
15
  "files": [
@@ -48,7 +48,7 @@
48
48
  "homepage": "https://github.com/michielinksee/linksee-memory",
49
49
  "repository": {
50
50
  "type": "git",
51
- "url": "https://github.com/michielinksee/linksee-memory.git"
51
+ "url": "git+https://github.com/michielinksee/linksee-memory.git"
52
52
  },
53
53
  "bugs": {
54
54
  "url": "https://github.com/michielinksee/linksee-memory/issues"