@evident-ai/cli 3.1.1-dev.0d69ecc → 3.1.1-dev.0ff9c93
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 +13 -0
- package/dist/index.js +531 -63
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -94,6 +94,17 @@ Options:
|
|
|
94
94
|
- `-c, --conversation <id>` — Process only this specific conversation.
|
|
95
95
|
- `--idle-timeout <seconds>` — Exit after N seconds with no pending work (useful
|
|
96
96
|
in CI to avoid polling indefinitely).
|
|
97
|
+
- `--opencode-start-timeout <seconds>` — How long to wait for OpenCode to become
|
|
98
|
+
healthy when the runner starts it itself (default: `180`). On expiry the runner
|
|
99
|
+
warns and comes online anyway rather than failing. Env:
|
|
100
|
+
`EVIDENT_OPENCODE_START_TIMEOUT` (seconds).
|
|
101
|
+
- `--claude-usage-reporting <mode>` — Whether to report the local Claude Code
|
|
102
|
+
subscription's rate-limit usage to Evident, so it shows on the runner page:
|
|
103
|
+
`auto` (default) reports it when a usable Claude Code login is found on this
|
|
104
|
+
machine and stays silent otherwise; `on` forces reporting and warns loudly (and
|
|
105
|
+
keeps retrying) if no usable login is found; `off` disables it entirely — no
|
|
106
|
+
Claude credential is ever read. An unrecognized value falls back to `auto` with
|
|
107
|
+
a warning. Env: `EVIDENT_CLAUDE_USAGE_REPORTING`.
|
|
97
108
|
- `--json` — Output in JSON format (forces non-interactive mode).
|
|
98
109
|
|
|
99
110
|
## Global flags
|
|
@@ -118,6 +129,8 @@ targets the **production** Evident platform by default.
|
|
|
118
129
|
keychain login from `evident login`).
|
|
119
130
|
- `EVIDENT_API_URL` — Override the API base URL (equivalent to `--endpoint`).
|
|
120
131
|
- `EVIDENT_TUNNEL_URL` — Override the tunnel relay URL (equivalent to `--tunnel`).
|
|
132
|
+
- `EVIDENT_CLAUDE_USAGE_REPORTING` — Equivalent to `--claude-usage-reporting`; the
|
|
133
|
+
flag wins if both are set.
|
|
121
134
|
|
|
122
135
|
Authentication precedence for `run`: `EVIDENT_RUNNER_KEY`/`EVIDENT_AGENT_KEY`
|
|
123
136
|
(tied; `EVIDENT_RUNNER_KEY` wins if both are set) → `EVIDENT_TOKEN` →
|