@sellable/mcp 0.1.474 → 0.1.475
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.
|
@@ -214,6 +214,7 @@ export function refillSendsCommand(input = {}) {
|
|
|
214
214
|
"Fresh reread get_campaign_refill_state immediately before any import, prep, approval, or horizon-fill mutation.",
|
|
215
215
|
"Maintain a target-window saturation ledger per selected sender from get_refill_target_plan: selected days, gross capacity, actual sent counts, future scheduler-owned scheduled counts, projected counts, ready-to-schedule buffer, remaining projected gap, paid InMail threshold feasibility, targetShapeRevision, stateRevision, and next MCP primitive.",
|
|
216
216
|
"In --yolo, this tool automatically maintains a run-local refreshedPaidInmailSenderIds set: when the first target plan returns refresh_paid_inmail_credits candidates for selected paid-InMail lanes, it refreshes each exact sender at most once, reruns get_refill_target_plan, and returns the post-refresh targetPlan before any prep/import/approval/start action is chosen.",
|
|
217
|
+
"Do not present paid-credit refresh as the next operator action after refill_sends returns autoPaidInmailRefresh and the post-refresh targetPlan.",
|
|
217
218
|
"If paid InMail feasibility remains below threshold after that automatic refresh, report the exact sender/campaign/table/column threshold action or connection fallback; --yolo must not lower paid InMail thresholds or create campaigns.",
|
|
218
219
|
"In --yolo or after one Accept, continue through every safe selected sender/campaign action covered by the rendered target packet; sent/scheduled-count progress changes stateRevision and should continue while targetShapeRevision is stable.",
|
|
219
220
|
"Do not complete a fill/schedule request until a final get_refill_target_plan or refill-state reread proves projected coverage (sent + scheduled) fills the scheduler-forward target window. Treat awaiting_scheduler_after_ready_buffer as loaded, awaiting scheduler when ready buffer covers the gap; do not import/prep more rows in that state, and keep polling unless Christian stops/statuses the run or a concrete non-scheduler blocker such as paid_inmail_below_threshold appears.",
|
package/package.json
CHANGED
|
@@ -195,7 +195,9 @@ report. Treat `awaiting_scheduler_after_ready_buffer` as an in-progress wait
|
|
|
195
195
|
state, not a close-out condition.
|
|
196
196
|
If paid InMail credit facts are stale or missing and the first target plan
|
|
197
197
|
contains `refresh_paid_inmail_credits`, do not present that as the operator's
|
|
198
|
-
next action in `--yolo`.
|
|
198
|
+
next action in `--yolo`. Do not present paid-credit refresh as the next operator
|
|
199
|
+
action after `refill_sends` returns `autoPaidInmailRefresh` and the
|
|
200
|
+
post-refresh `targetPlan`. Trust `refill_sends.autoPaidInmailRefresh`: it should
|
|
199
201
|
show the exact sender ids refreshed once, sender-credit-cache write receipts,
|
|
200
202
|
and a returned post-refresh `targetPlan`. Continue from that post-refresh packet.
|
|
201
203
|
If paid InMail is below threshold after the fresh credit read, report the exact
|
|
@@ -141,10 +141,12 @@ in-progress wait state, not a reason to mark the goal complete or blocked.
|
|
|
141
141
|
close-out condition.
|
|
142
142
|
If paid InMail credit facts are stale or missing and the first target plan
|
|
143
143
|
contains `refresh_paid_inmail_credits`, do not present that as the operator's
|
|
144
|
-
next action in `--yolo`.
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
144
|
+
next action in `--yolo`. Do not present paid-credit refresh as the next
|
|
145
|
+
operator action after `refill_sends` returns `autoPaidInmailRefresh` and the
|
|
146
|
+
post-refresh `targetPlan`. Trust `refill_sends.autoPaidInmailRefresh`: it
|
|
147
|
+
should show the exact sender ids refreshed once, sender-credit-cache write
|
|
148
|
+
receipts, and a returned post-refresh `targetPlan`. Continue from that
|
|
149
|
+
post-refresh packet. If paid InMail is below threshold after the fresh credit read, report
|
|
148
150
|
the exact campaign/table/column threshold action or
|
|
149
151
|
connection fallback; `--yolo` does not lower paid-InMail thresholds or create campaigns.
|
|
150
152
|
2. Call `resolve_campaign_fill_route`. Use `intent:"plain"` for generic
|