@hope666/melu 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +7 -1
  2. package/package.json +4 -1
package/README.md CHANGED
@@ -15,7 +15,7 @@ Requirements:
15
15
  Install:
16
16
 
17
17
  ```bash
18
- npm install -g melu
18
+ npm install -g @hope666/melu
19
19
  ```
20
20
 
21
21
  Initialize:
@@ -39,6 +39,12 @@ melu show <id-prefix>
39
39
  melu clear
40
40
  ```
41
41
 
42
+ After installation, the command is still:
43
+
44
+ ```bash
45
+ melu
46
+ ```
47
+
42
48
  What Melu stores locally:
43
49
 
44
50
  - `~/.melu/config.json`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hope666/melu",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Transparent AI memory agent — intercepts LLM API calls, injects persistent memory, extracts new memories automatically.",
5
5
  "type": "module",
6
6
  "bin": {
@@ -11,6 +11,9 @@
11
11
  "LICENSE",
12
12
  "README.md"
13
13
  ],
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
14
17
  "scripts": {
15
18
  "build": "tsc",
16
19
  "dev": "tsc --watch",