@evident-ai/cli 3.3.1-dev.e98fa27 → 3.4.1-dev.74a16b2
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 +8 -0
- package/dist/index.js +744 -81
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -105,6 +105,11 @@ Options:
|
|
|
105
105
|
keeps retrying) if no usable login is found; `off` disables it entirely — no
|
|
106
106
|
Claude credential is ever read. An unrecognized value falls back to `auto` with
|
|
107
107
|
a warning. Env: `EVIDENT_CLAUDE_USAGE_REPORTING`.
|
|
108
|
+
- `--no-resource-usage-reporting` — Don't report this machine's CPU
|
|
109
|
+
utilization, total and available memory, core count, disk space, and the
|
|
110
|
+
OpenCode session-store size to Evident, so it shows on the runner page. On
|
|
111
|
+
by default; nothing else about the machine leaves it. Env:
|
|
112
|
+
`EVIDENT_RESOURCE_USAGE_REPORTING=off` (the flag wins if both are set).
|
|
108
113
|
- `--json` — Output in JSON format (forces non-interactive mode).
|
|
109
114
|
- `--session-cleanup-max-age <duration>` — Delete OpenCode sessions idle longer
|
|
110
115
|
than this window (format `<number><unit>`, unit one of `s, m, h, d` — e.g.
|
|
@@ -171,6 +176,9 @@ targets the **production** Evident platform by default.
|
|
|
171
176
|
- `EVIDENT_TUNNEL_URL` — Override the tunnel relay URL (equivalent to `--tunnel`).
|
|
172
177
|
- `EVIDENT_CLAUDE_USAGE_REPORTING` — Equivalent to `--claude-usage-reporting`; the
|
|
173
178
|
flag wins if both are set.
|
|
179
|
+
- `EVIDENT_RESOURCE_USAGE_REPORTING` — Equivalent to
|
|
180
|
+
`--no-resource-usage-reporting`; set it to `off` to disable. The flag wins
|
|
181
|
+
if both are set.
|
|
174
182
|
- `EVIDENT_LOG_LEVEL` — Equivalent to `--log-level`; the flag wins if both are
|
|
175
183
|
set, and `-v`/`--verbose` also outranks this env var.
|
|
176
184
|
- `EVIDENT_OPENCODE_START_TIMEOUT` — Equivalent to `--opencode-start-timeout`
|