@sellable/install 0.1.247 → 0.1.249
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
|
@@ -137,9 +137,16 @@ explicit user selection; it is never the default response to plain fill. When
|
|
|
137
137
|
choosing among active targets, use refill-state scheduled-count evidence to
|
|
138
138
|
continue the campaign that most recently had scheduler-owned sends for the
|
|
139
139
|
relevant sender set; do not treat every active campaign as a refill candidate.
|
|
140
|
+
In `--yolo` fill/refill mode, default to one best recent-send campaign and a
|
|
141
|
+
two-send-day horizon: subtract future scheduler-owned scheduled sends and
|
|
142
|
+
ready-to-schedule rows from healthy sender daily capacity, then prepare only
|
|
143
|
+
that bounded gap.
|
|
140
144
|
When more leads are needed, the refill workflow must recommend same-campaign
|
|
141
145
|
source-ladder replenishment first; do not create warm-post-engager side
|
|
142
|
-
campaigns, on-demand campaigns, or unrelated campaigns.
|
|
146
|
+
campaigns, on-demand campaigns, or unrelated campaigns. If same-source copy hits
|
|
147
|
+
`USER_ADDED_ROWS_LIMIT_EXCEEDED`, split the current source into a bounded
|
|
148
|
+
same-source LinkedIn profile list, confirm that smaller list into the same
|
|
149
|
+
campaign, and operate on the copied review batch first. Surface sender-health
|
|
143
150
|
blockers separately from prepared/approved/scheduled counts.
|
|
144
151
|
|
|
145
152
|
Treat active fills as capacity-fill preparation: calculate the bounded target
|
|
@@ -38,6 +38,7 @@ allowed-tools:
|
|
|
38
38
|
- mcp__sellable__get_table_rows
|
|
39
39
|
- mcp__sellable__get_campaign_table_schema
|
|
40
40
|
- mcp__sellable__select_campaign_cells
|
|
41
|
+
- mcp__sellable__queue_campaign_cells
|
|
41
42
|
- mcp__sellable__wait_for_campaign_processing
|
|
42
43
|
- mcp__sellable__get_sender
|
|
43
44
|
---
|
|
@@ -60,6 +61,34 @@ step using campaign names first, and stop before mutation unless the user has
|
|
|
60
61
|
explicitly approved the exact workspace, campaign/table/source ids, caps/dates,
|
|
61
62
|
approval mode, expected side effects, and stop/rollback condition.
|
|
62
63
|
|
|
64
|
+
For interactive Codex or Claude Code sessions, that approval must use the
|
|
65
|
+
host-native structured question gate, not plain chat:
|
|
66
|
+
|
|
67
|
+
- Codex: use `request_user_input`.
|
|
68
|
+
- Claude Code: use `AskUserQuestion`.
|
|
69
|
+
|
|
70
|
+
The approval question must present the final refill step with exactly two
|
|
71
|
+
choices: `Accept` and `Decline`. Treat `Accept` as permission for only the
|
|
72
|
+
rendered target, caps, mode, and side effects. Treat `Decline` as a hard stop
|
|
73
|
+
with no mutation.
|
|
74
|
+
|
|
75
|
+
If Christian includes `--yolo` in the same refill request, treat that flag as
|
|
76
|
+
auto-accept for the rendered bounded refill packet after the required fresh state
|
|
77
|
+
reread. `--yolo` only covers the exact target, caps, approval mode, and side
|
|
78
|
+
effects in the packet. It does not authorize launch/start, sending, archive or
|
|
79
|
+
delete cleanup, direct scheduler writes, sender reassignment, or any expanded
|
|
80
|
+
target set. Stop and re-plan if the route, ids, caps, blockers, or side-effect
|
|
81
|
+
class drift before mutation.
|
|
82
|
+
|
|
83
|
+
In `--yolo`, the default two-day fill horizon is two send days. The workflow must pick
|
|
84
|
+
the best recent-send campaign first, not every active campaign, and compute the
|
|
85
|
+
bounded gap from healthy sender daily capacity, existing future scheduled sends,
|
|
86
|
+
and rows already ready to schedule. If a same-source copy hits the campaign-table
|
|
87
|
+
row cap, split the current source into a bounded LinkedIn profile source list,
|
|
88
|
+
confirm only that smaller list into the same campaign, and operate on the copied
|
|
89
|
+
review batch. Do not fall back to on-demand campaigns or broad active-campaign
|
|
90
|
+
fills.
|
|
91
|
+
|
|
63
92
|
Public concepts are regular campaign and evergreen campaign. Internal direct
|
|
64
93
|
campaign types are unsupported refill targets. `fill_campaign_horizon` is only a
|
|
65
94
|
legacy evergreen-only lower-level primitive after route and refill-state
|