@danielmarbach/mnemonic-mcp 0.1.0 → 0.2.0
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 +12 -0
- package/README.md +6 -18
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,18 @@ 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.2.0] - 2026-03-10
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
|
|
11
|
+
- `mnemonic import-claude-memory` CLI command imports Claude Code auto-memory notes into the vault. Each `##` heading becomes a separate note tagged `claude-memory` and `imported`. Safe to re-run — notes whose titles already exist are skipped.
|
|
12
|
+
- `mutationPushMode` config option controls when mutating writes auto-push to the remote: `main-only` (default), `all`, or `none`. Prevents push failures on unpublished project branches while keeping the main vault in sync automatically.
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
|
|
16
|
+
- Published to the public npm registry with provenance attestation via OIDC trusted publishing. No authentication required to install.
|
|
17
|
+
- Renovate configured for automated dependency updates.
|
|
18
|
+
|
|
7
19
|
## [0.1.0] - 2026-03-08
|
|
8
20
|
|
|
9
21
|
First public release candidate.
|
package/README.md
CHANGED
|
@@ -75,27 +75,15 @@ Override the vault location:
|
|
|
75
75
|
VAULT_PATH=/path/to/your-vault docker compose run --rm mnemonic
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
-
## Installing from
|
|
78
|
+
## Installing from npm
|
|
79
79
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
Create an `.npmrc` in the consuming project (or your home directory):
|
|
83
|
-
|
|
84
|
-
```ini
|
|
85
|
-
@danielmarbach:registry=https://npm.pkg.github.com
|
|
86
|
-
//npm.pkg.github.com/:_authToken=YOUR_GITHUB_TOKEN
|
|
87
|
-
```
|
|
88
|
-
|
|
89
|
-
Then install:
|
|
80
|
+
Packages are published to the public npm registry. No authentication required.
|
|
90
81
|
|
|
91
82
|
```bash
|
|
92
|
-
# Latest
|
|
93
|
-
npm install @danielmarbach/mnemonic-mcp
|
|
94
|
-
|
|
95
|
-
# Specific prerelease
|
|
96
|
-
npm install @danielmarbach/mnemonic-mcp@0.1.0-staging.12
|
|
83
|
+
# Latest stable release
|
|
84
|
+
npm install @danielmarbach/mnemonic-mcp
|
|
97
85
|
|
|
98
|
-
#
|
|
86
|
+
# Specific release
|
|
99
87
|
npm install @danielmarbach/mnemonic-mcp@0.1.0
|
|
100
88
|
```
|
|
101
89
|
|
|
@@ -108,7 +96,7 @@ npm install @danielmarbach/mnemonic-mcp@0.1.0
|
|
|
108
96
|
"mcpServers": {
|
|
109
97
|
"mnemonic": {
|
|
110
98
|
"command": "npx",
|
|
111
|
-
"args": ["@danielmarbach/mnemonic-mcp
|
|
99
|
+
"args": ["@danielmarbach/mnemonic-mcp"],
|
|
112
100
|
"env": {
|
|
113
101
|
"VAULT_PATH": "/Users/you/mnemonic-vault"
|
|
114
102
|
}
|