@sharkdyt/omni-memory-mcp 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +10 -2
package/README.md CHANGED
@@ -3,6 +3,17 @@
3
3
  Universal memory MCP server for multi-agent workflows.
4
4
  100% local with SQLite + FTS5.
5
5
 
6
+ ## npm Package
7
+
8
+ - Package: `@sharkdyt/omni-memory-mcp`
9
+ - npm: `https://www.npmjs.com/package/@sharkdyt/omni-memory-mcp`
10
+ - Current `latest`: `1.0.0`
11
+
12
+ ## Project Memory
13
+
14
+ This project does not keep local `memory-bank/` files.
15
+ Operational context is stored through Omni Memory itself.
16
+
6
17
  ## Why this exists
7
18
 
8
19
  - Keep AI memory local (no cloud dependency)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sharkdyt/omni-memory-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Universal memory MCP server for multi-agent AI workflows. 100% local with SQLite + FTS5.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -25,7 +25,15 @@
25
25
  "prepack": "npm run build",
26
26
  "prepublishOnly": "npm run check && npm run build && npm test"
27
27
  },
28
- "keywords": ["mcp", "memory", "sqlite", "fts5", "agent", "ai", "local"],
28
+ "keywords": [
29
+ "mcp",
30
+ "memory",
31
+ "sqlite",
32
+ "fts5",
33
+ "agent",
34
+ "ai",
35
+ "local"
36
+ ],
29
37
  "author": "Allan Schramm",
30
38
  "license": "Apache-2.0",
31
39
  "repository": {