hmem-mcp 1.6.5 → 1.6.7

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 CHANGED
@@ -130,6 +130,10 @@ That's it. The interactive installer will:
130
130
 
131
131
  After the installer finishes, restart your AI tool and call `read_memory()` to verify.
132
132
 
133
+ > **Don't forget the skill files!** The MCP server provides the tools (read_memory, write_memory, etc.), but the slash commands (`/hmem-save`, `/hmem-read`) require skill files to be copied to your tool's skills directory. See the [Skill Files](#skill-files) section below — it's a one-time copy-paste.
134
+ >
135
+ > **Coming from the MCP Registry?** Run `npx hmem-mcp init` first — it configures your tools and creates the memory directory. Then copy the skill files as described below.
136
+
133
137
  ### Option B: Install from source
134
138
 
135
139
  ```bash
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hmem-mcp",
3
- "version": "1.6.5",
3
+ "version": "1.6.7",
4
4
  "description": "Humanlike memory for AI agents — MCP server with 5-level lazy-loaded SQLite memory",
5
5
  "author": "Bumblebiber",
6
6
  "license": "MIT",
@@ -16,7 +16,7 @@
16
16
  "type": "ko-fi",
17
17
  "url": "https://ko-fi.com/bumblebiber"
18
18
  },
19
- "mcpName": "io.github.bumblebiber/hmem-mcp",
19
+ "mcpName": "io.github.Bumblebiber/hmem-mcp",
20
20
  "main": "dist/index.js",
21
21
  "types": "dist/index.d.ts",
22
22
  "bin": {
package/server.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
3
- "name": "io.github.bumblebiber/hmem-mcp",
3
+ "name": "io.github.Bumblebiber/hmem-mcp",
4
4
  "title": "hmem — Humanlike Memory for AI Agents",
5
- "description": "Persistent hierarchical memory with 5-level lazy-loaded SQLite storage via MCP.",
6
- "version": "1.6.5",
5
+ "description": "Persistent 5-level hierarchical memory for AI agents. SQLite-backed, lazy-loaded.",
6
+ "version": "1.6.7",
7
7
  "websiteUrl": "https://github.com/Bumblebiber/hmem#readme",
8
8
  "repository": {
9
9
  "url": "https://github.com/Bumblebiber/hmem",
@@ -15,7 +15,7 @@
15
15
  "registryType": "npm",
16
16
  "registryBaseUrl": "https://registry.npmjs.org",
17
17
  "identifier": "hmem-mcp",
18
- "version": "1.6.5",
18
+ "version": "1.6.7",
19
19
  "runtimeHint": "npx",
20
20
  "transport": {
21
21
  "type": "stdio"