ethos-cli 0.7.15 → 0.7.16
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/package.json
CHANGED
|
@@ -313,6 +313,9 @@ Do not assume that reusing the same agent id writes into the same column. A
|
|
|
313
313
|
later `source-people` command without `--column-id` creates a new column.
|
|
314
314
|
|
|
315
315
|
Only run the agent for 3 rows on the first run, so the user can give feedback.
|
|
316
|
+
Tell the user this is a test run on the first 3 companies, that results will
|
|
317
|
+
appear in a new people-finder column on the uploaded table, and that they can
|
|
318
|
+
review the results before running it across the rest of the table.
|
|
316
319
|
|
|
317
320
|
After you queue the run on the 3 rows, tell the user to review the results when
|
|
318
321
|
done and decide whether you should:
|
|
@@ -324,7 +327,7 @@ done and decide whether you should:
|
|
|
324
327
|
|
|
325
328
|
- If they queue a larger run after the first 3 rows look good, let them know it
|
|
326
329
|
can take a few minutes to complete, and that they can navigate away and come
|
|
327
|
-
back later.
|
|
330
|
+
back later. Results continue filling into the same people-finder column.
|
|
328
331
|
- IMPORTANT: If they were fine with the first agent you made, run the existing
|
|
329
332
|
column. Do not create a new column.
|
|
330
333
|
- Prefer the returned `response.same_column_empty_run_command` to run only rows
|
|
@@ -358,9 +361,10 @@ explicitly requested environment. In Codex, bring the in-app Browser back to
|
|
|
358
361
|
that table URL. In Claude Code, Cursor, or another non-Codex shell-based client,
|
|
359
362
|
open that table URL with `open` first, and only use MCP browser tools, Chrome
|
|
360
363
|
connectors, in-app browser plugins, or other browser automation connectors if
|
|
361
|
-
`open` fails. Then tell the user the agent is running on the first 3 rows
|
|
362
|
-
|
|
363
|
-
|
|
364
|
+
`open` fails. Then tell the user the agent is running on the first 3 rows and
|
|
365
|
+
that results will appear in a new people-finder column on this table. Do not
|
|
366
|
+
surface agent ids, run ids, table ids, or similar internal ids unless the user
|
|
367
|
+
asks for them or you are actively debugging.
|
|
364
368
|
|
|
365
369
|
## How to communicate with the user
|
|
366
370
|
|
package/skills/find-people.md
CHANGED
|
@@ -135,7 +135,8 @@ Always invite adjustment before or while polling:
|
|
|
135
135
|
|
|
136
136
|
```text
|
|
137
137
|
If any of that looks off, tell me what to change and I can interrupt or refine
|
|
138
|
-
the search. I’ll poll this one now
|
|
138
|
+
the search. I’ll poll this one now. Ethos is creating a people table where you
|
|
139
|
+
can review, edit, and filter the results; I’ll send the link when it’s ready.
|
|
139
140
|
```
|
|
140
141
|
|
|
141
142
|
When the search succeeds, lead with the result count and table link. If
|
|
@@ -161,6 +162,14 @@ interactive agent work, prefer repeated `get` calls every 10-20 seconds over a
|
|
|
161
162
|
long-running `wait` command: `wait --json` is silent until the job reaches a
|
|
162
163
|
terminal state, which makes the agent blind while the job is running.
|
|
163
164
|
|
|
165
|
+
As soon as a poll returns `profileCount` and/or `companyCount`, surface the
|
|
166
|
+
scope clearly before continuing to wait, for example:
|
|
167
|
+
|
|
168
|
+
```text
|
|
169
|
+
Matched 842 people across 210 companies. Ethos is creating a people table with
|
|
170
|
+
the results now.
|
|
171
|
+
```
|
|
172
|
+
|
|
164
173
|
The job reaches one of these terminal statuses:
|
|
165
174
|
|
|
166
175
|
- `succeeded`: linked company and people tables were created. Open
|