@evident-ai/cli 3.4.1-dev.8fa4d29 → 3.4.1-dev.aa71e9a
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 -1
- package/dist/index.js +540 -72
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -104,7 +104,14 @@ Options:
|
|
|
104
104
|
machine and stays silent otherwise; `on` forces reporting and warns loudly (and
|
|
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
|
+
- `--openai-usage-reporting <mode>` — Whether to report the ChatGPT plan usage
|
|
109
|
+
from an OpenCode login to Evident, so it shows on the runner page: `auto`
|
|
110
|
+
(default) reports it when a usable ChatGPT login is found and stays silent
|
|
111
|
+
otherwise; `on` forces reporting and warns loudly (and keeps retrying) if no
|
|
112
|
+
usable login is found; `off` disables it entirely — no OpenCode login is ever
|
|
113
|
+
read. An unrecognized value falls back to `auto` with a warning. Env:
|
|
114
|
+
`EVIDENT_OPENAI_USAGE_REPORTING`.
|
|
108
115
|
- `--no-resource-usage-reporting` — Don't report this machine's CPU
|
|
109
116
|
utilization, total and available memory, core count, disk space, and the
|
|
110
117
|
OpenCode session-store size to Evident, so it shows on the runner page. On
|
|
@@ -176,6 +183,8 @@ targets the **production** Evident platform by default.
|
|
|
176
183
|
- `EVIDENT_TUNNEL_URL` — Override the tunnel relay URL (equivalent to `--tunnel`).
|
|
177
184
|
- `EVIDENT_CLAUDE_USAGE_REPORTING` — Equivalent to `--claude-usage-reporting`; the
|
|
178
185
|
flag wins if both are set.
|
|
186
|
+
- `EVIDENT_OPENAI_USAGE_REPORTING` — Equivalent to `--openai-usage-reporting`; the
|
|
187
|
+
flag wins if both are set.
|
|
179
188
|
- `EVIDENT_RESOURCE_USAGE_REPORTING` — Equivalent to
|
|
180
189
|
`--no-resource-usage-reporting`; set it to `off` to disable. The flag wins
|
|
181
190
|
if both are set.
|