@evident-ai/cli 3.1.1-dev.9ff0701 → 3.1.1-dev.b4e1c75

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 CHANGED
@@ -72,19 +72,21 @@ delivers any channel messages (e.g. Slack) to your local OpenCode.
72
72
 
73
73
  ```bash
74
74
  # Interactive: connect a specific runner
75
- evident run --agent <agent-id>
75
+ evident run --runner <runner-id>
76
76
 
77
77
  # Drive a single conversation
78
- evident run --agent <agent-id> --conversation <conversation-id>
78
+ evident run --runner <runner-id> --conversation <conversation-id>
79
79
 
80
80
  # CI: exit after 30s with no work
81
- evident run --agent <agent-id> --idle-timeout 30
81
+ evident run --runner <runner-id> --idle-timeout 30
82
82
  ```
83
83
 
84
84
  Options:
85
85
 
86
- - `-a, --agent [id]` — Runner ID to connect to. Optional when `EVIDENT_AGENT_KEY`
86
+ - `--runner [id]` — Runner ID to connect to. Optional when `EVIDENT_RUNNER_KEY`
87
87
  is set (the runner is then resolved automatically from the key).
88
+ - `-a, --agent [id]` — Deprecated alias for `--runner`. Still supported, but it
89
+ prints a deprecation warning; `--runner` wins if both are given.
88
90
  - `-p, --port <port>` — OpenCode port (default: `4096`).
89
91
  - `--log-level <level>` — Log verbosity: `debug | info | warn | error` (default:
90
92
  `info`). Env: `EVIDENT_LOG_LEVEL`.
@@ -105,15 +107,20 @@ targets the **production** Evident platform by default.
105
107
 
106
108
  ## Environment variables
107
109
 
108
- - `EVIDENT_AGENT_KEY` — A runner key. When set, `evident run` authenticates as
109
- that runner and resolves the runner ID automatically, so `--agent` is not
110
- required. Ideal for CI/CD.
110
+ - `EVIDENT_RUNNER_KEY` — A runner key. When set, `evident run` authenticates as
111
+ that runner and resolves the runner ID automatically, so `--runner`/`--agent`
112
+ is not required. Ideal for CI/CD. Preferred name; wins over `EVIDENT_AGENT_KEY`
113
+ if both are set.
114
+ - `EVIDENT_AGENT_KEY` — Deprecated alias for `EVIDENT_RUNNER_KEY`. Still fully
115
+ supported, but `evident run` prints a deprecation warning when it is used
116
+ without `EVIDENT_RUNNER_KEY`.
111
117
  - `EVIDENT_TOKEN` — A user token used for authentication (alternative to a
112
118
  keychain login from `evident login`).
113
119
  - `EVIDENT_API_URL` — Override the API base URL (equivalent to `--endpoint`).
114
120
  - `EVIDENT_TUNNEL_URL` — Override the tunnel relay URL (equivalent to `--tunnel`).
115
121
 
116
- Authentication precedence for `run`: `EVIDENT_AGENT_KEY` → `EVIDENT_TOKEN` →
122
+ Authentication precedence for `run`: `EVIDENT_RUNNER_KEY`/`EVIDENT_AGENT_KEY`
123
+ (tied; `EVIDENT_RUNNER_KEY` wins if both are set) → `EVIDENT_TOKEN` →
117
124
  credentials stored by `evident login`. For the URL flags, an explicit
118
125
  `--endpoint` / `--tunnel` flag wins over the matching environment variable, which
119
126
  in turn overrides the production default.
@@ -137,19 +144,22 @@ ID.
137
144
  From your project directory, start the runner:
138
145
 
139
146
  ```bash
140
- evident run --agent <agent-id>
147
+ evident run --runner <runner-id>
141
148
  ```
142
149
 
143
150
  `evident run` ensures `opencode serve` is running on `127.0.0.1:4096` (starting
144
151
  it if needed) and connects the tunnel. Once connected, the web shows the runner as
145
152
  online and you can open its chat.
146
153
 
147
- For CI or unattended use, set `EVIDENT_AGENT_KEY` and omit `--agent`:
154
+ For CI or unattended use, set `EVIDENT_RUNNER_KEY` and omit `--runner`:
148
155
 
149
156
  ```bash
150
- EVIDENT_AGENT_KEY=<agent-key> evident run --idle-timeout 30
157
+ EVIDENT_RUNNER_KEY=<runner-key> evident run --idle-timeout 30
151
158
  ```
152
159
 
160
+ (`EVIDENT_AGENT_KEY` is a still-supported deprecated alias for
161
+ `EVIDENT_RUNNER_KEY`.)
162
+
153
163
  ## How it works
154
164
 
155
165
  ```
@@ -185,7 +195,7 @@ evident logout
185
195
  evident login
186
196
  ```
187
197
 
188
- In CI, make sure `EVIDENT_AGENT_KEY` (or `EVIDENT_TOKEN`) is set.
198
+ In CI, make sure `EVIDENT_RUNNER_KEY` (or `EVIDENT_TOKEN`) is set.
189
199
 
190
200
  ### OpenCode isn't reachable
191
201