@aman_asmuei/amem 0.1.3 → 0.1.4
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 +5 -8
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -66,10 +66,10 @@ Corrections always surface first. They're the "never do this" rules your AI shou
|
|
|
66
66
|
You need [Node.js](https://nodejs.org) 18 or higher. Then:
|
|
67
67
|
|
|
68
68
|
```bash
|
|
69
|
-
|
|
69
|
+
npm install -g @aman_asmuei/amem
|
|
70
70
|
```
|
|
71
71
|
|
|
72
|
-
That's it. amem
|
|
72
|
+
That's it. amem is now installed on your machine.
|
|
73
73
|
|
|
74
74
|
### Step 2: Connect your AI tool
|
|
75
75
|
|
|
@@ -82,8 +82,7 @@ Add to `~/.claude/settings.json`:
|
|
|
82
82
|
{
|
|
83
83
|
"mcpServers": {
|
|
84
84
|
"amem": {
|
|
85
|
-
"command": "
|
|
86
|
-
"args": ["-y", "@aman_asmuei/amem"]
|
|
85
|
+
"command": "amem"
|
|
87
86
|
}
|
|
88
87
|
}
|
|
89
88
|
}
|
|
@@ -102,8 +101,7 @@ Add to `.cursor/mcp.json` in your project:
|
|
|
102
101
|
{
|
|
103
102
|
"mcpServers": {
|
|
104
103
|
"amem": {
|
|
105
|
-
"command": "
|
|
106
|
-
"args": ["-y", "@aman_asmuei/amem"]
|
|
104
|
+
"command": "amem"
|
|
107
105
|
}
|
|
108
106
|
}
|
|
109
107
|
}
|
|
@@ -122,8 +120,7 @@ Add to your MCP configuration:
|
|
|
122
120
|
{
|
|
123
121
|
"mcpServers": {
|
|
124
122
|
"amem": {
|
|
125
|
-
"command": "
|
|
126
|
-
"args": ["-y", "@aman_asmuei/amem"]
|
|
123
|
+
"command": "amem"
|
|
127
124
|
}
|
|
128
125
|
}
|
|
129
126
|
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aman_asmuei/amem",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.4",
|
|
4
4
|
"description": "The memory layer for AI coding tools. Local-first, developer-specific, works everywhere.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
+
"@aman_asmuei/amem": "dist/index.js",
|
|
7
8
|
"amem": "dist/index.js",
|
|
8
9
|
"amem-cli": "dist/cli.js"
|
|
9
10
|
},
|