@xerg/cli 0.4.0 → 0.5.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xerg/cli",
3
- "version": "0.4.0",
3
+ "version": "0.5.0",
4
4
  "description": "Audit OpenClaw and Hermes workflows in dollars, compare fixes, and export daily spend and waste trends.",
5
5
  "keywords": [
6
6
  "xerg",
@@ -206,18 +206,22 @@ Automation can branch on those codes instead of scraping terminal output.
206
206
 
207
207
  ## Recommendations
208
208
 
209
- When using `--json`, expect a `recommendations` array alongside the audit summary. Recommendation items include:
209
+ When using `--json`, expect a `recommendations` array alongside the audit summary. Each recommendation item includes:
210
210
 
211
- - `id`, `findingId`, `kind`, `title`, `description`
212
- - `estimatedSavingsUsd`, `confidence`, `actionType`
213
- - optional `suggestedChange`
211
+ - `id`, `findingId`, `kind`, `title`, `summary`
212
+ - `priorityBucket`, `recommendedOrder`, `implementationSurface`, `category`
213
+ - `severity`, `confidence`, `effort`
214
+ - `estimatedSavingsUsd`, `estimatedSavingsPct`
215
+ - `scope`, `scopeId`, `scopeLabel`
216
+ - `whereToChange`, `validationPlan`, `actions`
214
217
 
215
- Current recommendation kinds fall into two buckets:
218
+ Current recommendation kinds map into the Action queue buckets:
216
219
 
217
- - Confirmed waste: `retry-waste`, `loop-waste`
218
- - Savings opportunities or directional findings: `context-outlier`, `idle-spend`, `candidate-downgrade`
220
+ - `fix_now`: `retry-waste`, `loop-waste`
221
+ - `test_next`: `context-outlier`, `idle-spend`, `candidate-downgrade`, `cache-carryover`, `max-mode-concentration`
222
+ - `watch`: unknown or uncategorized findings
219
223
 
220
- Prefer reversible or high-confidence fixes first. Treat model downgrades and context reductions as A/B-test candidates, not guaranteed savings.
224
+ Prefer high-confidence or reversible fixes first. Treat model downgrades, context changes, and Cursor behavior changes as compare-friendly experiments, not guaranteed savings.
221
225
 
222
226
  ## Checks
223
227