@bennys001/claude-code-memory 0.11.1 → 0.11.2

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
@@ -7,17 +7,31 @@ MCP server that gives Claude Code persistent memory via an Obsidian-compatible k
7
7
  Requires [Bun](https://bun.sh/) and [Claude Code](https://docs.anthropic.com/en/docs/claude-code).
8
8
 
9
9
  ```bash
10
- bunx @bennys001/claude-code-memory --init
10
+ bun install -g @bennys001/claude-code-memory && ccm --init
11
11
  ```
12
12
 
13
- This scaffolds the vault at `~/.ccm/knowledge-base/`, registers it with Obsidian (if installed), and adds the MCP server to Claude Code.
13
+ This installs the `ccm` binary globally, scaffolds the vault at `~/.ccm/knowledge-base/`, registers it with Obsidian (if installed), and adds the MCP server to Claude Code.
14
14
 
15
- ### Manual setup
15
+ ### Update
16
+
17
+ ```bash
18
+ ccm --update
19
+ ```
20
+
21
+ ### Uninstall
22
+
23
+ ```bash
24
+ ccm --uninstall
25
+ ```
26
+
27
+ Removes the MCP server registration, Obsidian vault registration, and the global binary. Prompts before deleting the vault.
28
+
29
+ ### Manual MCP setup
16
30
 
17
31
  If `--init` can't reach the `claude` CLI, register manually:
18
32
 
19
33
  ```bash
20
- claude mcp add --transport stdio --scope user ccm -- bunx @bennys001/claude-code-memory --stdio
34
+ claude mcp add --transport stdio --scope user ccm -- ccm --stdio
21
35
  ```
22
36
 
23
37
  ## MCP Tools
package/dist/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  var package_default = {
5
5
  name: "@bennys001/claude-code-memory",
6
6
  publishConfig: { access: "public" },
7
- version: "0.11.1",
7
+ version: "0.11.2",
8
8
  description: "MCP server that gives Claude Code persistent memory via an Obsidian knowledge vault",
9
9
  module: "dist/index.js",
10
10
  main: "dist/index.js",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@bennys001/claude-code-memory",
3
3
  "publishConfig": { "access": "public" },
4
- "version": "0.11.1",
4
+ "version": "0.11.2",
5
5
  "description": "MCP server that gives Claude Code persistent memory via an Obsidian knowledge vault",
6
6
  "module": "dist/index.js",
7
7
  "main": "dist/index.js",