@sellable/install 0.1.222 → 0.1.224
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
|
@@ -142,6 +142,14 @@ Treat active fills as capacity-fill preparation: calculate the bounded target
|
|
|
142
142
|
from sender capacity when needed, then use the refill workflow to decide source
|
|
143
143
|
replenishment, enrichment/prep, approval policy, and scheduler proof. Mutation
|
|
144
144
|
requires exact visible approval and a fresh `get_campaign_refill_state` reread.
|
|
145
|
+
For already-running regular campaigns that need Signal Discovery source
|
|
146
|
+
replenishment, the refill workflow owns the guarded recovery: clear
|
|
147
|
+
`currentStep` only with `clearCurrentStepIfMatches:"running"`, load the
|
|
148
|
+
campaign-scoped provider prompt, run campaign-scoped `search_signals`, select
|
|
149
|
+
posts with a capacity-target scrape plan, import into the same source path, and
|
|
150
|
+
restore Running through `confirm_lead_list`. If the copied rows append beyond
|
|
151
|
+
the first table page, inspect `reviewBatch` with table-schema/selector tools and
|
|
152
|
+
use adaptive or wider bounded message prep; do not rely on a fixed `maxRowsToCheck:100` pass after source copy.
|
|
145
153
|
If the user says "prepare/generate X messages", use message-prep primitives with
|
|
146
154
|
`targetPreparedMessages:X` and default `approvalMode:"mark_ready"`. If the user
|
|
147
155
|
says "approve X messages", use `approvalMode:"approve"` only for the bounded
|
|
@@ -9,6 +9,9 @@ allowed-tools:
|
|
|
9
9
|
- mcp__sellable__get_campaign_refill_state
|
|
10
10
|
- mcp__sellable__fill_campaign_horizon
|
|
11
11
|
- mcp__sellable__get_campaign
|
|
12
|
+
- mcp__sellable__get_campaign_context
|
|
13
|
+
- mcp__sellable__update_campaign
|
|
14
|
+
- mcp__sellable__get_provider_prompt
|
|
12
15
|
- mcp__sellable__get_campaign_message_preparation_status
|
|
13
16
|
- mcp__sellable__start_campaign_message_preparation
|
|
14
17
|
- mcp__sellable__cancel_campaign_message_preparation
|
|
@@ -16,6 +19,7 @@ allowed-tools:
|
|
|
16
19
|
- mcp__sellable__wait_for_lead_list_ready
|
|
17
20
|
- mcp__sellable__confirm_lead_list
|
|
18
21
|
- mcp__sellable__search_signals
|
|
22
|
+
- mcp__sellable__select_promising_posts
|
|
19
23
|
- mcp__sellable__fetch_post_engagers
|
|
20
24
|
- mcp__sellable__search_sales_nav
|
|
21
25
|
- mcp__sellable__lookup_sales_nav_filter
|
|
@@ -29,6 +33,10 @@ allowed-tools:
|
|
|
29
33
|
- mcp__sellable__get_rows
|
|
30
34
|
- mcp__sellable__get_rows_minimal
|
|
31
35
|
- mcp__sellable__get_table_rows
|
|
36
|
+
- mcp__sellable__get_campaign_table_schema
|
|
37
|
+
- mcp__sellable__select_campaign_cells
|
|
38
|
+
- mcp__sellable__wait_for_campaign_processing
|
|
39
|
+
- mcp__sellable__get_sender
|
|
32
40
|
---
|
|
33
41
|
|
|
34
42
|
# Refill Sends
|