@sellable/mcp 0.1.53 → 0.1.54
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
|
@@ -499,7 +499,7 @@ should test for this campaign. Those can run in parallel and usually take
|
|
|
499
499
|
the background.
|
|
500
500
|
- If real parallel execution is not available or not allowed, run the same DAG
|
|
501
501
|
sequentially and use honest copy: `I’ll tighten the filter first, then draft
|
|
502
|
-
|
|
502
|
+
the message from the same sample.`
|
|
503
503
|
- Never say `kicking off two workstreams`, `in parallel`, or `background`
|
|
504
504
|
unless parallel branches were actually launched.
|
|
505
505
|
- Never run a downstream stage until the active `flow.v2.json` step's
|
|
@@ -973,7 +973,18 @@
|
|
|
973
973
|
},
|
|
974
974
|
{
|
|
975
975
|
"action": "surface_watch_link",
|
|
976
|
-
"requires": ["create_campaign_succeeded", "save_rubrics_succeeded"]
|
|
976
|
+
"requires": ["create_campaign_succeeded", "save_rubrics_succeeded"],
|
|
977
|
+
"reference": "references/watch-link-handoff.md",
|
|
978
|
+
"requiredVisibleContent": [
|
|
979
|
+
"Campaign created",
|
|
980
|
+
"approved brief",
|
|
981
|
+
"Open this to watch",
|
|
982
|
+
"lead sourcing",
|
|
983
|
+
"rubric scoring",
|
|
984
|
+
"messaging populate live",
|
|
985
|
+
"Watch link:"
|
|
986
|
+
],
|
|
987
|
+
"watchUrlSource": "create_campaign.watchUrl"
|
|
977
988
|
}
|
|
978
989
|
],
|
|
979
990
|
"allowedTools": [
|
|
@@ -37,14 +37,18 @@ between the two calls. Never print the link if either call fails.
|
|
|
37
37
|
After both tool calls succeed, print exactly one user-facing block. The block
|
|
38
38
|
must contain:
|
|
39
39
|
|
|
40
|
+
- a plain confirmation that the campaign was created and the approved brief was
|
|
41
|
+
saved
|
|
40
42
|
- a one-line orientation sentence: `Open this to watch lead sourcing, rubric
|
|
41
|
-
scoring, and messaging populate live.`
|
|
43
|
+
scoring, and messaging populate live.`
|
|
42
44
|
- the `watchUrl` captured from the `create_campaign` response
|
|
43
45
|
|
|
44
46
|
Example skeleton:
|
|
45
47
|
|
|
46
48
|
```text
|
|
47
|
-
Campaign
|
|
49
|
+
Campaign created. I saved the approved brief too.
|
|
50
|
+
|
|
51
|
+
Open this to watch lead sourcing, rubric scoring, and messaging populate live.
|
|
48
52
|
|
|
49
53
|
Watch link: {watchUrl}
|
|
50
54
|
```
|