@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/README.md +10 -4
- package/dist/index.js +295 -129
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/skills/xerg/SKILL.md +12 -8
package/package.json
CHANGED
package/skills/xerg/SKILL.md
CHANGED
|
@@ -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.
|
|
209
|
+
When using `--json`, expect a `recommendations` array alongside the audit summary. Each recommendation item includes:
|
|
210
210
|
|
|
211
|
-
- `id`, `findingId`, `kind`, `title`, `
|
|
212
|
-
- `
|
|
213
|
-
-
|
|
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
|
|
218
|
+
Current recommendation kinds map into the Action queue buckets:
|
|
216
219
|
|
|
217
|
-
-
|
|
218
|
-
-
|
|
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
|
|
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
|
|