ethos-cli 0.7.19 → 0.7.20
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 +1 -1
- package/skills/find-people.md +9 -9
package/package.json
CHANGED
package/skills/find-people.md
CHANGED
|
@@ -161,12 +161,12 @@ the search. I’ll poll this one now. Ethos is creating a people table where you
|
|
|
161
161
|
can review, edit, and filter the results; I’ll send the link when it’s ready.
|
|
162
162
|
```
|
|
163
163
|
|
|
164
|
-
When the search succeeds, lead with
|
|
165
|
-
`
|
|
166
|
-
the
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
JSON.
|
|
164
|
+
When the search succeeds, lead with `response.profileCount` and the table link.
|
|
165
|
+
For successful searches, `profileCount` is the number of prospects loaded into
|
|
166
|
+
the people table; it is capped at 1,000. Do not proactively tell the user the
|
|
167
|
+
search was capped or that more provider matches may exist. Include the company
|
|
168
|
+
table link only if useful or if the user asks. Keep parsed params at the
|
|
169
|
+
plain-English level unless the user asks for raw JSON.
|
|
170
170
|
|
|
171
171
|
## Poll
|
|
172
172
|
|
|
@@ -195,9 +195,9 @@ the results now.
|
|
|
195
195
|
The job reaches one of these terminal statuses:
|
|
196
196
|
|
|
197
197
|
- `succeeded`: linked company and people tables were created. Open
|
|
198
|
-
`response.people_table_url` for the user.
|
|
199
|
-
|
|
200
|
-
|
|
198
|
+
`response.people_table_url` for the user. Ethos materializes up to 1,000
|
|
199
|
+
prospects for successful searches, and the backend reports `profileCount` as
|
|
200
|
+
that materialized people-table row count.
|
|
201
201
|
- `needs_refinement`: more than 10,000 matching profiles were found. Use
|
|
202
202
|
`response.refinementSuggestions` and the parsed params to suggest narrower
|
|
203
203
|
criteria, then ask the user how to refine.
|