@memnexus-ai/cli 0.1.4 → 0.1.6
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 +4 -11
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -29,27 +29,20 @@
|
|
|
29
29
|
|
|
30
30
|
- Node.js 18+ and npm
|
|
31
31
|
- Access to a MemNexus API instance
|
|
32
|
-
- GitHub account with access to the memnexus-ai organization (for GitHub Packages installation)
|
|
33
32
|
|
|
34
33
|
### Installation Options
|
|
35
34
|
|
|
36
|
-
#### Option 1: Install from
|
|
35
|
+
#### Option 1: Install from npm (Recommended)
|
|
37
36
|
|
|
38
37
|
```bash
|
|
39
|
-
#
|
|
40
|
-
npm config set @memnexus-ai:registry https://npm.pkg.github.com
|
|
41
|
-
|
|
42
|
-
# Authenticate with GitHub Packages (requires GitHub personal access token with read:packages scope)
|
|
43
|
-
npm login --scope=@memnexus-ai --registry=https://npm.pkg.github.com
|
|
44
|
-
|
|
45
|
-
# Install globally
|
|
38
|
+
# Install globally from npm
|
|
46
39
|
npm install -g @memnexus-ai/cli
|
|
47
40
|
|
|
48
41
|
# Verify installation
|
|
49
42
|
mx --version
|
|
50
43
|
```
|
|
51
44
|
|
|
52
|
-
|
|
45
|
+
> Published on npm: https://www.npmjs.com/package/@memnexus-ai/cli
|
|
53
46
|
|
|
54
47
|
#### Option 2: Install from Source (Development)
|
|
55
48
|
|
|
@@ -122,7 +115,7 @@ The following environment variables are supported:
|
|
|
122
115
|
Get up and running with mx-cli in 5 minutes:
|
|
123
116
|
|
|
124
117
|
```bash
|
|
125
|
-
# 1. Install from
|
|
118
|
+
# 1. Install from npm
|
|
126
119
|
npm install -g @memnexus-ai/cli
|
|
127
120
|
|
|
128
121
|
# 2. Configure authentication (interactive mode with password masking)
|