@xerg/cli 0.1.6 → 0.1.7
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 +11 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -22,19 +22,25 @@ xerg audit
|
|
|
22
22
|
|
|
23
23
|
## Bundled skill
|
|
24
24
|
|
|
25
|
-
The published `@xerg/cli` package includes the portable Xerg skill bundle at:
|
|
25
|
+
The published `@xerg/cli` package includes the portable Xerg skill bundle inside the installed package at:
|
|
26
|
+
|
|
27
|
+
```text
|
|
28
|
+
skills/xerg/SKILL.md
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
For a local project install, that usually resolves to:
|
|
26
32
|
|
|
27
33
|
```text
|
|
28
34
|
node_modules/@xerg/cli/skills/xerg/SKILL.md
|
|
29
35
|
```
|
|
30
36
|
|
|
31
|
-
That file is a packaged copy of the canonical repo skill at [`skills/xerg/SKILL.md`](../../skills/xerg/SKILL.md). Use it if your agent platform imports skills from disk; installing the npm package does not automatically register the skill with every agent product.
|
|
37
|
+
For a global install, the same file lives inside the global npm package directory instead. That file is a packaged copy of the canonical repo skill at [`skills/xerg/SKILL.md`](../../skills/xerg/SKILL.md). Use it if your agent platform imports skills from disk; installing the npm package does not automatically register the skill with every agent product.
|
|
32
38
|
|
|
33
39
|
## Supported runtime
|
|
34
40
|
|
|
35
|
-
`@xerg/cli` supports Node `
|
|
41
|
+
`@xerg/cli` supports Node `22` and `24`.
|
|
36
42
|
|
|
37
|
-
If you are developing
|
|
43
|
+
If you are developing or releasing from this repo, `.nvmrc` pins the default toolchain to Node `24.14.0`.
|
|
38
44
|
|
|
39
45
|
## Sample output
|
|
40
46
|
|
|
@@ -84,7 +90,7 @@ xerg audit --since 24h --compare
|
|
|
84
90
|
|
|
85
91
|
- Local machine: yes
|
|
86
92
|
- VPS or remote server: yes
|
|
87
|
-
- If OpenClaw runs remotely,
|
|
93
|
+
- If OpenClaw runs remotely, you can audit it from your local machine with `xerg audit --remote user@host`
|
|
88
94
|
- Or point Xerg at exported files directly with flags
|
|
89
95
|
|
|
90
96
|
Remote prerequisites:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xerg/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.7",
|
|
4
4
|
"description": "Audit OpenClaw agent spend, waste, and before/after improvements.",
|
|
5
5
|
"keywords": ["ai", "agents", "finops", "llm", "openclaw", "cost", "cli"],
|
|
6
6
|
"homepage": "https://xerg.ai",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"engines": {
|
|
33
|
-
"node": ">=
|
|
33
|
+
"node": ">=22 <25"
|
|
34
34
|
},
|
|
35
35
|
"scripts": {
|
|
36
36
|
"prebuild": "node ../../scripts/sync-cli-skill.mjs",
|