@sellable/install 0.1.152 → 0.1.153
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
|
@@ -59,11 +59,13 @@ Claude Code and Codex are configured to launch the same packaged MCP server. The
|
|
|
59
59
|
installer also writes Sellable source-scout agents for both hosts from the
|
|
60
60
|
packaged `agents/` registry: Claude Code gets `source-scout-*` subagents, and
|
|
61
61
|
Codex gets `source-scout-linkedin-engagement`, `source-scout-sales-nav`, and
|
|
62
|
-
`source-scout-prospeo-contact`.
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
62
|
+
`source-scout-prospeo-contact`. After Find Buyers Plan approval, runtime prompts
|
|
63
|
+
use the named scout for the approved source lane as the normal path when the
|
|
64
|
+
current session exposes it. If a named scout is unavailable, they use a generic
|
|
65
|
+
background agent when possible; parent-thread provider probes are the explicit
|
|
66
|
+
fallback, not the default path. The MCP exposes the same list through
|
|
67
|
+
`get_source_scout_registry`, so adding a future scout starts in one registry
|
|
68
|
+
entry instead of scattered prompt edits.
|
|
67
69
|
|
|
68
70
|
## Names
|
|
69
71
|
|
|
@@ -110,6 +110,27 @@ brief hash, selected source, `selectedLeadListId`, `workflowTableId`, or
|
|
|
110
110
|
execution-slice rows. Filter/rubric/enrichment basis drift alone is not a stale
|
|
111
111
|
blocker.
|
|
112
112
|
|
|
113
|
+
## User Revision Feedback
|
|
114
|
+
|
|
115
|
+
If the parent sends user feedback about the template before `approve-message`,
|
|
116
|
+
treat it as a Message Drafting revision, not a campaign write. Use the current
|
|
117
|
+
`messageDraftRecommendation`, basis token/hash, campaign/table basis, and the
|
|
118
|
+
latest user feedback as inputs. Load or reuse the full
|
|
119
|
+
`generate-messages` contract, then return a revised recommendation with:
|
|
120
|
+
|
|
121
|
+
- revised proposed template
|
|
122
|
+
- what changed and why
|
|
123
|
+
- token fill rule/fallback changes, if any
|
|
124
|
+
- one rendered good-fill sample
|
|
125
|
+
- pass/fail notes against the same quality gates
|
|
126
|
+
- updated output timestamp/hash and basis token
|
|
127
|
+
|
|
128
|
+
Keep the revision grounded in the same source/list/table rows unless the parent
|
|
129
|
+
explicitly supplies a new selected list or review slice. Do not call
|
|
130
|
+
`update_campaign_brief`, do not persist the template, and do not approve your
|
|
131
|
+
own revision. The parent renders the revised template and waits for
|
|
132
|
+
`approve-message`.
|
|
133
|
+
|
|
113
134
|
## Hard Rules
|
|
114
135
|
|
|
115
136
|
- Do not call product Generate Message cells. This worker drafts the template
|
package/package.json
CHANGED
|
@@ -253,20 +253,29 @@ scout those angles as independent branches when the host can actually do it:
|
|
|
253
253
|
LinkedIn posts / people reacting or commenting (internal `signal-discovery`
|
|
254
254
|
provider prompt), Sales Nav / title + company filters, and Prospeo Contact /
|
|
255
255
|
domains, hiring filters, or broad verified-contact expansion when relevant. In
|
|
256
|
-
Codex,
|
|
256
|
+
Codex, source discovery is agent-first after the Find Buyers Plan approval. For
|
|
257
|
+
the approved single source lane, explicitly spawn that returned named custom
|
|
258
|
+
scout; for example, choosing LinkedIn posts should spawn
|
|
259
|
+
`source-scout-linkedin-engagement` even when no comparison is needed. When
|
|
260
|
+
multiple source angles are credible, explicitly spawn the named custom scouts
|
|
257
261
|
`source-scout-linkedin-engagement`, `source-scout-sales-nav`, and
|
|
258
262
|
`source-scout-prospeo-contact` for the credible lanes only when the current host
|
|
259
|
-
exposes those names; Codex does not infer subagent fan-out from generic
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
263
|
+
exposes those names; Codex does not infer subagent fan-out from generic wording.
|
|
264
|
+
YOLO/autonomous mode counts as campaign-scoped permission to use Sellable source
|
|
265
|
+
background agents. In Claude Code, invoke the generated `source-scout-*`
|
|
266
|
+
Task/Agent subagent for the approved lane, or all credible lanes in one
|
|
267
|
+
assistant message when comparison/fallback is needed, only when the current
|
|
268
|
+
session lists those names. The installer writes them from the same canonical
|
|
269
|
+
Sellable agent registry with explicit Sellable MCP tool allowlists.
|
|
264
270
|
The create-campaign-v2 subskill calls `get_source_scout_registry` before
|
|
265
271
|
dispatch so the current registry, not this copy, is the runtime source of truth.
|
|
266
|
-
If the
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
272
|
+
If the named source scout is unavailable, use a generic `gpt-5.5` high
|
|
273
|
+
background agent when the host can spawn generic agents. Continue source
|
|
274
|
+
discovery in the parent thread only when agent launch is impossible or the user
|
|
275
|
+
explicitly says to continue inline. Do not claim a scout ran unless one did, and
|
|
276
|
+
do not surface install status to the customer. In chat, call the downstream copy
|
|
277
|
+
stage `message generation`; message validation is only an internal approval
|
|
278
|
+
proof.
|
|
270
279
|
|
|
271
280
|
For campaign-attached Signal Discovery sampling, promote/select the exact posts
|
|
272
281
|
with `select_promising_posts` before `fetch_post_engagers` so the user can see
|