@agentxm/client-core 0.4.1 → 0.4.2
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/package.json +2 -2
- package/site-content/install.md +22 -29
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentxm/client-core",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "Core library for the axm agent extension manager",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -209,6 +209,6 @@
|
|
|
209
209
|
"typescript": "^5.9.3",
|
|
210
210
|
"vitest": "^4.0.0",
|
|
211
211
|
"yaml": "^2.8.2",
|
|
212
|
-
"@agentxm/client-utils": "0.4.
|
|
212
|
+
"@agentxm/client-utils": "0.4.2"
|
|
213
213
|
}
|
|
214
214
|
}
|
package/site-content/install.md
CHANGED
|
@@ -20,29 +20,10 @@ extension packs across your AI agents from a single CLI.
|
|
|
20
20
|
|
|
21
21
|
## Step 1: Install
|
|
22
22
|
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
Each method below installs a persistent `axm` binary on the machine. Pick the
|
|
24
|
+
one that matches the environment (operating system or package manager).
|
|
25
25
|
|
|
26
|
-
### Option A:
|
|
27
|
-
|
|
28
|
-
Requires Node.js. No global install needed.
|
|
29
|
-
|
|
30
|
-
```bash
|
|
31
|
-
npx axm.sh --version
|
|
32
|
-
```
|
|
33
|
-
|
|
34
|
-
Prefix all axm commands with `npx axm.sh` instead of `axm`:
|
|
35
|
-
|
|
36
|
-
```bash
|
|
37
|
-
npx axm.sh auth login
|
|
38
|
-
npx axm.sh whoami
|
|
39
|
-
```
|
|
40
|
-
|
|
41
|
-
### Option B: Native install scripts
|
|
42
|
-
|
|
43
|
-
For environments without Node.js. Downloads a standalone binary.
|
|
44
|
-
|
|
45
|
-
**macOS / Linux (bash):**
|
|
26
|
+
### Option A: macOS / Linux (install script)
|
|
46
27
|
|
|
47
28
|
```bash
|
|
48
29
|
curl -fsSL https://axm.sh/install.sh | sh
|
|
@@ -54,7 +35,7 @@ Installs to `~/.axm/bin/axm`. If `axm` is not found after install, add to PATH:
|
|
|
54
35
|
export PATH="$HOME/.axm/bin:$PATH"
|
|
55
36
|
```
|
|
56
37
|
|
|
57
|
-
|
|
38
|
+
### Option B: Windows (PowerShell)
|
|
58
39
|
|
|
59
40
|
```powershell
|
|
60
41
|
irm https://axm.sh/install.ps1 | iex
|
|
@@ -63,9 +44,7 @@ irm https://axm.sh/install.ps1 | iex
|
|
|
63
44
|
Installs to `%LOCALAPPDATA%\axm\axm.exe`. Follow the printed PATH instructions
|
|
64
45
|
if `axm` is not recognized.
|
|
65
46
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
Download and run `install.cmd` from `https://axm.sh/install.cmd`:
|
|
47
|
+
### Option C: Windows (CMD)
|
|
69
48
|
|
|
70
49
|
```cmd
|
|
71
50
|
curl -fsSL -o install.cmd https://axm.sh/install.cmd && install.cmd
|
|
@@ -74,12 +53,27 @@ curl -fsSL -o install.cmd https://axm.sh/install.cmd && install.cmd
|
|
|
74
53
|
Installs to `%LOCALAPPDATA%\axm\axm.exe`. Follow the printed PATH instructions
|
|
75
54
|
if `axm` is not recognized.
|
|
76
55
|
|
|
77
|
-
### Option
|
|
56
|
+
### Option D: Homebrew (macOS / Linux)
|
|
78
57
|
|
|
79
58
|
```bash
|
|
80
59
|
brew install agentxm/tap/axm
|
|
81
60
|
```
|
|
82
61
|
|
|
62
|
+
### Option E: npm (any OS with Node.js)
|
|
63
|
+
|
|
64
|
+
Installs the `axm.sh` package globally. Requires Node.js.
|
|
65
|
+
|
|
66
|
+
```bash
|
|
67
|
+
npm install -g axm.sh
|
|
68
|
+
```
|
|
69
|
+
|
|
70
|
+
If `axm` is not found after install, ensure the npm global bin directory is on
|
|
71
|
+
PATH:
|
|
72
|
+
|
|
73
|
+
```bash
|
|
74
|
+
export PATH="$(npm config get prefix)/bin:$PATH"
|
|
75
|
+
```
|
|
76
|
+
|
|
83
77
|
**Verify:**
|
|
84
78
|
|
|
85
79
|
```bash
|
|
@@ -147,7 +141,6 @@ axm skills list --json
|
|
|
147
141
|
|
|
148
142
|
The fix depends on how you installed:
|
|
149
143
|
|
|
150
|
-
- **npx:** Use `npx axm.sh` instead of `axm`. Ensure Node.js is installed.
|
|
151
144
|
- **Install script (macOS/Linux):** Add `~/.axm/bin` to PATH:
|
|
152
145
|
```bash
|
|
153
146
|
export PATH="$HOME/.axm/bin:$PATH"
|
|
@@ -160,7 +153,7 @@ The fix depends on how you installed:
|
|
|
160
153
|
$env:Path = "$env:LOCALAPPDATA\axm;$env:Path"
|
|
161
154
|
```
|
|
162
155
|
- **Homebrew:** Run `brew link axm` or check `brew --prefix axm`.
|
|
163
|
-
- **npm
|
|
156
|
+
- **npm:** Ensure the global npm bin directory is on PATH:
|
|
164
157
|
```bash
|
|
165
158
|
export PATH="$(npm config get prefix)/bin:$PATH"
|
|
166
159
|
```
|