@xerg/cli 0.1.7 → 0.1.8
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 +6 -3
- package/package.json +2 -2
- package/skills/xerg/SKILL.md +13 -2
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
# xerg
|
|
2
2
|
|
|
3
|
-
Audit OpenClaw
|
|
3
|
+
Audit OpenClaw workflows in dollars, compare fixes, and surface savings opportunities.
|
|
4
4
|
|
|
5
|
-
Xerg audits OpenClaw workflows in dollars, not tokens. It reads your gateway logs and session transcripts,
|
|
5
|
+
Xerg audits OpenClaw workflows in dollars, not tokens. It reads your gateway logs and session transcripts, surfaces five spend categories across confirmed waste and savings opportunities, and lets you re-run the same audit with `--compare` so you can see exactly what changed after a fix.
|
|
6
|
+
|
|
7
|
+
Everything runs locally by default. No account is required for local audits. No data leaves your machine unless you explicitly `--push` results to the Xerg API for a team dashboard.
|
|
6
8
|
|
|
7
9
|
## 30-second quick start
|
|
8
10
|
|
|
@@ -140,7 +142,8 @@ Example `~/.xerg/config.json`:
|
|
|
140
142
|
|
|
141
143
|
- Total spend by workflow and model, in dollars
|
|
142
144
|
- Observed vs. estimated cost (always labeled)
|
|
143
|
-
-
|
|
145
|
+
- Confirmed waste: retry, loop
|
|
146
|
+
- Savings opportunities: context bloat, downgrade candidates, idle
|
|
144
147
|
- Savings recommendations with suggested A/B tests
|
|
145
148
|
- Before/after deltas on re-audit
|
|
146
149
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xerg/cli",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "Audit OpenClaw
|
|
3
|
+
"version": "0.1.8",
|
|
4
|
+
"description": "Audit OpenClaw workflows in dollars, compare fixes, and surface savings opportunities.",
|
|
5
5
|
"keywords": ["ai", "agents", "finops", "llm", "openclaw", "cost", "cli"],
|
|
6
6
|
"homepage": "https://xerg.ai",
|
|
7
7
|
"repository": {
|
package/skills/xerg/SKILL.md
CHANGED
|
@@ -1,13 +1,23 @@
|
|
|
1
1
|
---
|
|
2
2
|
name: xerg
|
|
3
|
-
description: Audit OpenClaw
|
|
3
|
+
description: Audit OpenClaw workflows in dollars. Local-first audits with compare mode, remote and Railway support, CI gates, and structured recommendations.
|
|
4
4
|
---
|
|
5
5
|
|
|
6
6
|
# Xerg
|
|
7
7
|
|
|
8
8
|
Use `xerg` if it is already installed. If not, use `npx @xerg/cli` with the same arguments.
|
|
9
9
|
|
|
10
|
-
Xerg audits OpenClaw
|
|
10
|
+
Xerg audits OpenClaw workflows in dollars, not tokens. It reads gateway logs and session transcripts, surfaces five spend categories across confirmed waste and savings opportunities, and helps you measure fixes with `--compare`.
|
|
11
|
+
|
|
12
|
+
Local audits need no account. No data leaves your machine unless you explicitly `--push` results to the Xerg API.
|
|
13
|
+
|
|
14
|
+
## Quick Start
|
|
15
|
+
|
|
16
|
+
```bash
|
|
17
|
+
xerg doctor
|
|
18
|
+
xerg audit
|
|
19
|
+
xerg audit --compare
|
|
20
|
+
```
|
|
11
21
|
|
|
12
22
|
## Inputs
|
|
13
23
|
|
|
@@ -180,6 +190,7 @@ Before finalizing work that used Xerg:
|
|
|
180
190
|
- If `--compare` was used, confirm that it compared against a compatible stored snapshot
|
|
181
191
|
- If no data was found, run `xerg doctor` or use explicit source flags rather than guessing
|
|
182
192
|
- Say whether results were pushed to the Xerg API
|
|
193
|
+
- Distinguish confirmed waste (`retry-waste`, `loop-waste`) from directional opportunities (`context-outlier`, `idle-spend`, `candidate-downgrade`)
|
|
183
194
|
|
|
184
195
|
## Notes
|
|
185
196
|
|