ethos-cli 0.1.7 → 0.1.8
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
|
@@ -67,7 +67,7 @@ Then poll the in-app Browser URL every 2 seconds while the user uploads and answ
|
|
|
67
67
|
The ONLY upload-completion indicator is this URL shape:
|
|
68
68
|
|
|
69
69
|
```text
|
|
70
|
-
/tables/<TABLE_ID>?codex_flow=find-people-at-companies&uploaded=1
|
|
70
|
+
/tables/<TABLE_ID>?codex_flow=find-people-at-companies&uploaded=1&sidebar=collapsed[&codex_thread_id=<ID>]
|
|
71
71
|
```
|
|
72
72
|
|
|
73
73
|
When the browser URL matches that shape, save the table id from the URL. Start
|
|
@@ -139,7 +139,7 @@ The instructions should include:
|
|
|
139
139
|
looking for GTM or sales ownership.
|
|
140
140
|
- Cite public source URLs for every person and fit claim.
|
|
141
141
|
|
|
142
|
-
## Source People
|
|
142
|
+
## Source People Part 1: First 3 Rows
|
|
143
143
|
|
|
144
144
|
Run against the uploaded table view:
|
|
145
145
|
|
|
@@ -169,12 +169,21 @@ it appears.
|
|
|
169
169
|
|
|
170
170
|
Only run the agent for 3 rows on the first run, so the user can give feedback.
|
|
171
171
|
|
|
172
|
+
After you queue the run on the 3 rows, tell the user to review the results when done and decide (in 2 bullet points), whether you should
|
|
173
|
+
- Run the agent on the rest of the table if it looks good, or
|
|
174
|
+
- Refine the agent based on their feedback so it finds the right people.
|
|
175
|
+
|
|
176
|
+
## Source People Part 2: Larger Run
|
|
177
|
+
|
|
178
|
+
- If they queue a larger run after the first 3 rows look good, let them know it can take a few minutes to complete, and that they can navigate away and come back later.
|
|
179
|
+
- IMPORTANT: If they were fine with the first agent you made, then make sure that the larger run is in the same column as the first run (don't create a new column).
|
|
180
|
+
|
|
172
181
|
## Keep Browser On The Table
|
|
173
182
|
|
|
174
183
|
ONLY IF the user is not already viewing the table when the `source-people` command succeeds, bring the browser back to the table:
|
|
175
184
|
|
|
176
185
|
```sh
|
|
177
|
-
"$APP_BASE_URL/tables/$TABLE_ID"
|
|
186
|
+
"$APP_BASE_URL/tables/$TABLE_ID?sidebar=collapsed"
|
|
178
187
|
```
|
|
179
188
|
|
|
180
189
|
Then tell the user the agent is running on the first 3 rows. Do not surface
|