@danielmarbach/mnemonic-mcp 0.7.0 → 0.8.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.
package/CHANGELOG.md CHANGED
@@ -4,6 +4,29 @@ All notable changes to `mnemonic` will be documented in this file.
4
4
 
5
5
  The format is loosely based on Keep a Changelog and uses semver-style version headings.
6
6
 
7
+ ## [0.8.1] - 2026-03-14
8
+
9
+ ### Changed
10
+
11
+ - The publish workflow now updates the Homebrew formula through an automated pull request instead of pushing directly to `main`.
12
+ - `workflow_dispatch` now supports job toggles (`run_npm`, `run_docker`, `run_homebrew`, `run_release`) so partial release failures can be resumed by rerunning only remaining jobs.
13
+
14
+ ## [0.8.0] - 2026-03-14
15
+
16
+ ### Changed
17
+
18
+ - All MCP tool descriptions rewritten for self-contained routing and sub-vault awareness
19
+
20
+ ### Added
21
+
22
+ - Homebrew tap support: `brew install danielmarbach/mnemonic/mnemonic-mcp`.
23
+ - Git submodule support: project vault creation and identity resolution now walk up through submodule boundaries to the superproject root.
24
+ - Multi-vault support: project git roots can contain multiple vault folders (`.mnemonic-<name>`) alongside the primary `.mnemonic/`. Sub-vaults share the primary vault's embeddings directory and appear in `searchOrder`, `allKnownVaults`, and all list/recall operations.
25
+ - `move_memory` accepts optional `vaultFolder` parameter to target specific sub-vaults.
26
+ - `Storage` accepts optional `embeddingsDirOverride` to redirect where embeddings are stored.
27
+ - `Vault` interface gains `vaultFolderName` field.
28
+ - `VaultManager` exposes `getVaultByFolder(cwd, folderName)` method.
29
+
7
30
  ## [0.7.0] - 2026-03-13
8
31
 
9
32
  ### Added
package/README.md CHANGED
@@ -91,6 +91,21 @@ npm install @danielmarbach/mnemonic-mcp
91
91
  npm install @danielmarbach/mnemonic-mcp@0.2.0
92
92
  ```
93
93
 
94
+ ### Homebrew
95
+
96
+ The formula lives in this repository. Tap it with an explicit URL so no separate repository is needed:
97
+
98
+ ```bash
99
+ brew tap danielmarbach/mnemonic-mcp https://github.com/danielmarbach/mnemonic
100
+ brew install mnemonic-mcp
101
+ ```
102
+
103
+ Or in a single step:
104
+
105
+ ```bash
106
+ brew install danielmarbach/mnemonic-mcp/mnemonic-mcp
107
+ ```
108
+
94
109
  ### Docker Hub
95
110
 
96
111
  Pre-built images for `linux/amd64` and `linux/arm64`:
@@ -135,6 +150,21 @@ For a fixed installed version, point at the local binary instead:
135
150
  }
136
151
  ```
137
152
 
153
+ ### Claude Desktop / Cursor (Homebrew)
154
+
155
+ ```json
156
+ {
157
+ "mcpServers": {
158
+ "mnemonic": {
159
+ "command": "mnemonic",
160
+ "env": {
161
+ "VAULT_PATH": "/Users/you/mnemonic-vault"
162
+ }
163
+ }
164
+ }
165
+ }
166
+ ```
167
+
138
168
  ### Claude Desktop / Cursor (Docker)
139
169
 
140
170
  ```json