@sellable/install 0.1.86 → 0.1.88
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.
|
@@ -7,10 +7,10 @@ Required first step:
|
|
|
7
7
|
- Load the canonical provider prompt before searching. If the parent supplies a
|
|
8
8
|
draft `campaignOfferId`, call `get_provider_prompt({ provider:
|
|
9
9
|
"signal-discovery", campaignOfferId, confirmed: true })` and include that same
|
|
10
|
-
`campaignOfferId`
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
campaignless preview mode.
|
|
10
|
+
`campaignOfferId` plus `currentStep: "signal-discovery"` in `search_signals`
|
|
11
|
+
so the user can watch source work in the campaign UI. Treat that as a
|
|
12
|
+
campaign-attached persisted search; do not run a post-mint search without the
|
|
13
|
+
campaign ID. If no campaign ID is supplied, run campaignless preview mode.
|
|
14
14
|
|
|
15
15
|
Use the inherited Sellable MCP tools when available:
|
|
16
16
|
|
|
@@ -6,9 +6,10 @@ Required first step:
|
|
|
6
6
|
|
|
7
7
|
- Load the canonical provider prompt before searching. If the parent supplies a
|
|
8
8
|
draft `campaignOfferId`, call `get_provider_prompt({ provider: "prospeo",
|
|
9
|
-
campaignOfferId, confirmed: true })` and include that same `campaignOfferId`
|
|
10
|
-
`search_prospeo` so the user can watch source
|
|
11
|
-
campaign ID is supplied, run campaignless
|
|
9
|
+
campaignOfferId, confirmed: true })` and include that same `campaignOfferId`
|
|
10
|
+
plus `currentStep: "prospeo"` in `search_prospeo` so the user can watch source
|
|
11
|
+
work in the campaign UI. If no campaign ID is supplied, run campaignless
|
|
12
|
+
preview mode. Treat post-mint
|
|
12
13
|
searches with `campaignOfferId` as campaign-attached persisted search tabs;
|
|
13
14
|
do not run a live campaign search without the campaign ID.
|
|
14
15
|
|
|
@@ -7,8 +7,9 @@ Required first step:
|
|
|
7
7
|
- Load the canonical provider prompt before searching. If the parent supplies a
|
|
8
8
|
draft `campaignOfferId`, call `get_provider_prompt({ provider: "sales-nav",
|
|
9
9
|
campaignOfferId, confirmed: true })` and include that same `campaignOfferId` in
|
|
10
|
-
`search_sales_nav` so the user can watch
|
|
11
|
-
campaign ID is supplied, run
|
|
10
|
+
`search_sales_nav` with `currentStep: "sales-nav"` so the user can watch
|
|
11
|
+
source work in the campaign UI. If no campaign ID is supplied, run
|
|
12
|
+
campaignless preview mode. Treat post-mint
|
|
12
13
|
searches with `campaignOfferId` as campaign-attached persisted search tabs;
|
|
13
14
|
do not run a live campaign search without the campaign ID.
|
|
14
15
|
|
package/package.json
CHANGED
|
@@ -162,11 +162,11 @@ copy.
|
|
|
162
162
|
## Codex Watch Browser Handoff
|
|
163
163
|
|
|
164
164
|
When a campaign tool returns `watchUrl`, treat it as an active browser handoff,
|
|
165
|
-
not only a URL to print. A valid handoff link must be a
|
|
166
|
-
`/
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
165
|
+
not only a URL to print. A valid handoff link must be a safe direct
|
|
166
|
+
`/campaign-builder/{campaignId}?mode=claude` URL. `create_campaign.watchUrl`,
|
|
167
|
+
`create_campaign({ campaignId }).watchUrl`, and `get_campaign.watchUrl` are all
|
|
168
|
+
acceptable only when they return that direct campaign-builder shape, with
|
|
169
|
+
`workspaceId` used only as a safe routing hint when needed.
|
|
170
170
|
|
|
171
171
|
In Codex Desktop, when in-app browser control is available, open the returned watch link on the user's behalf. After opening it, inspect the browser-visible campaign state, then explain what the user is seeing before continuing with more campaign tools. Use customer language such as:
|
|
172
172
|
|
|
@@ -175,8 +175,8 @@ I’ll open the campaign view and keep it in sync as I build.
|
|
|
175
175
|
```
|
|
176
176
|
|
|
177
177
|
If browser control is unavailable, provide the watch link without discussing the
|
|
178
|
-
runtime limitation. In off-desktop Codex runs, make the
|
|
179
|
-
copy/open, then continue with explicit customer-facing campaign progress and
|
|
178
|
+
runtime limitation. In off-desktop Codex runs, make the direct watch link easy
|
|
179
|
+
to copy/open, then continue with explicit customer-facing campaign progress and
|
|
180
180
|
`get_campaign_navigation_state` orientation checks.
|
|
181
181
|
Use this fallback shape:
|
|
182
182
|
|
|
@@ -188,9 +188,9 @@ here as I build.
|
|
|
188
188
|
```
|
|
189
189
|
|
|
190
190
|
If opening the watch link lands on an auth, 404, permission, blank, or visible
|
|
191
|
-
error state, report only what is visible, recover a fresh
|
|
192
|
-
|
|
193
|
-
|
|
191
|
+
error state, report only what is visible, recover a fresh watch link once with
|
|
192
|
+
`create_campaign({ campaignId })` or `get_campaign`, and try that link. Do not
|
|
193
|
+
claim the browser was opened, inspected, or synchronized unless the visible
|
|
194
194
|
browser state was actually observed. Do not claim the browser was opened unless
|
|
195
195
|
it was opened and observed.
|
|
196
196
|
|