@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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +6 -18
  3. 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 GitHub Packages
78
+ ## Installing from npm
79
79
 
80
- Staging builds are published to GitHub Packages under the `staging` dist-tag. To install outside GitHub Actions, you need a GitHub token with at least the `read:packages` scope.
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 staging build
93
- npm install @danielmarbach/mnemonic-mcp@staging
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
- # Stable release
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@staging"],
99
+ "args": ["@danielmarbach/mnemonic-mcp"],
112
100
  "env": {
113
101
  "VAULT_PATH": "/Users/you/mnemonic-vault"
114
102
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@danielmarbach/mnemonic-mcp",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "description": "A local MCP memory server backed by markdown + JSON files, synced via git",
5
5
  "type": "module",
6
6
  "repository": {