You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: correct package name in docs — npx gitmem-mcp init, not npx gitmem init
The npm package is gitmem-mcp (not gitmem). All npx commands in docs
referenced the wrong package name, which would fail for users.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: apps/docs/content/docs/getting-started/index.mdx
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,14 +9,14 @@ GitMem gives your AI coding agents institutional memory — the ability to learn
9
9
10
10
## Prerequisites
11
11
12
-
-**Node.js 18+** (for `npx gitmem init`)
12
+
-**Node.js 18+** (for `npx gitmem-mcp init`)
13
13
- An MCP-compatible client: [Claude Code](https://claude.com/claude-code), [Claude Desktop](https://claude.ai/download), or [Cursor](https://cursor.sh)
14
14
15
15
## Quick Start (30 seconds)
16
16
17
17
```bash
18
18
# In any project directory
19
-
npx gitmem init
19
+
npx gitmem-mcp init
20
20
```
21
21
22
22
The interactive wizard detects your existing config and sets up everything:
Copy file name to clipboardExpand all lines: apps/docs/content/docs/getting-started/installation.mdx
+10-10Lines changed: 10 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ The recommended way to install GitMem. One command, interactive setup, safe to r
20
20
21
21
```bash
22
22
cd your-project
23
-
npx gitmem init
23
+
npx gitmem-mcp init
24
24
```
25
25
26
26
<Steps>
@@ -54,17 +54,17 @@ Adds `.gitmem/` to `.gitignore` — memory data stays local.
54
54
55
55
```bash
56
56
# Accept all defaults (non-interactive)
57
-
npx gitmem init --yes
57
+
npx gitmem-mcp init --yes
58
58
59
59
# Preview what would change (no files written)
60
-
npx gitmem init --dry-run
60
+
npx gitmem-mcp init --dry-run
61
61
62
62
# Set a project namespace
63
-
npx gitmem init --project my-app
63
+
npx gitmem-mcp init --project my-app
64
64
```
65
65
66
66
<Callouttype="info"title="Idempotent">
67
-
Re-running `npx gitmem init` is safe — completed steps are skipped with "Already configured."
67
+
Re-running `npx gitmem-mcp init` is safe — completed steps are skipped with "Already configured."
68
68
</Callout>
69
69
70
70
### What Gets Created
@@ -89,14 +89,14 @@ Re-running `npx gitmem init` is safe — completed steps are skipped with "Alrea
89
89
### Uninstall
90
90
91
91
```bash
92
-
npx gitmem uninstall
92
+
npx gitmem-mcp uninstall
93
93
```
94
94
95
95
Cleanly reverses everything init did. Your `.gitmem/` data is preserved by default.
96
96
97
97
```bash
98
98
# Also delete .gitmem/ memory data
99
-
npx gitmem uninstall --all
99
+
npx gitmem-mcp uninstall --all
100
100
```
101
101
102
102
</Tab>
@@ -206,14 +206,14 @@ See [Configuration](/docs/getting-started/configuration) for full details.
206
206
## Troubleshooting
207
207
208
208
<Accordionstype="single">
209
-
<Accordiontitle="npx gitmem init hangs or fails">
210
-
Ensure Node.js 18+ is installed (`node --version`). If behind a corporate proxy, try `npm install -g gitmem-mcp` first, then use `gitmem init` without npx.
209
+
<Accordiontitle="npx gitmem-mcp init hangs or fails">
210
+
Ensure Node.js 18+ is installed (`node --version`). If behind a corporate proxy, try `npm install -g gitmem-mcp` first, then use `gitmem-mcp init` without npx.
211
211
</Accordion>
212
212
<Accordiontitle="Agent can't find gitmem tools">
213
213
Check that `.mcp.json` exists in your project root and contains the gitmem server entry. For Claude Desktop, verify the config path matches your OS. Restart the client after config changes.
214
214
</Accordion>
215
215
<Accordiontitle="Permission errors on tool calls">
216
-
Run `npx gitmem init` to add tool permissions to `.claude/settings.json`, or manually add `mcp__gitmem__*` to the `allow` array.
216
+
Run `npx gitmem-mcp init` to add tool permissions to `.claude/settings.json`, or manually add `mcp__gitmem__*` to the `allow` array.
217
217
</Accordion>
218
218
<Accordiontitle="Starter scars show wrong age">
219
219
Starter scars use fixed creation dates. This is cosmetic — the scars function correctly regardless of displayed age.
Copy file name to clipboardExpand all lines: apps/docs/content/docs/index.mdx
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -64,7 +64,7 @@ Every time an AI agent makes a mistake, fixes a bug, or discovers a better appro
64
64
<divclassName="install-block">
65
65
66
66
```bash
67
-
npx gitmem init
67
+
npx gitmem-mcp init
68
68
```
69
69
70
70
One command sets up everything: `.gitmem/` directory, `.mcp.json`, `CLAUDE.md`, hooks, and permissions. Already have existing config? The wizard merges without destroying anything.
0 commit comments