@sellable/mcp 0.1.535 → 0.1.536
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/README.md +5 -2
- package/dist/index-dev.js +0 -0
- package/dist/index.js +0 -0
- package/dist/refill-date-window.d.ts +34 -0
- package/dist/refill-date-window.js +210 -0
- package/dist/refill-run-loop.d.ts +9 -1
- package/dist/refill-run-loop.js +435 -85
- package/dist/server.js +4 -0
- package/dist/tools/evergreen-refill-plan.d.ts +19 -0
- package/dist/tools/evergreen-refill-plan.js +19 -0
- package/dist/tools/prompts.d.ts +2 -0
- package/dist/tools/prompts.js +1 -0
- package/dist/tools/refill-executors.d.ts +0 -7
- package/dist/tools/refill-executors.js +0 -22
- package/dist/tools/refill-sends-evergreen.d.ts +28 -0
- package/dist/tools/refill-sends-evergreen.js +47 -0
- package/dist/tools/refill-sends-v2.d.ts +19 -0
- package/dist/tools/refill-sends-v2.js +32 -1
- package/dist/tools/refill-sends.d.ts +0 -12
- package/dist/tools/refill-sends.js +37 -58
- package/dist/tools/refill-target-plan.js +19 -6
- package/dist/tools/registry.d.ts +55 -0
- package/dist/tools/registry.js +2 -0
- package/dist/tools/scheduler-fill-capacity.js +1 -1
- package/dist/tools/scheduler-run.d.ts +32 -0
- package/dist/tools/scheduler-run.js +68 -0
- package/dist/tools/senders.d.ts +8 -14
- package/dist/tools/senders.js +10 -21
- package/package.json +1 -1
- package/skills/refill-sends/SKILL.md +31 -4
- package/skills/refill-sends-v2/SKILL.md +29 -5
- package/skills/refill-sends-v2-workflow/SKILL.md +27 -2
- package/skills/refill-sends-v2-workflow/core/flow.v1.json +19 -3
- package/skills/refill-sends-workflow/SKILL.md +27 -5
- package/skills/refill-sends-workflow/core/flow.v1.json +6 -1
|
@@ -191,7 +191,8 @@
|
|
|
191
191
|
"description": "Read-only scheduler polling after rows are ready and paid-credit facts are fresh.",
|
|
192
192
|
"allowedTools": [
|
|
193
193
|
"get_refill_target_plan",
|
|
194
|
-
"get_scheduler_fill_capacity"
|
|
194
|
+
"get_scheduler_fill_capacity",
|
|
195
|
+
"run_scheduler_sweep"
|
|
195
196
|
],
|
|
196
197
|
"entryConditions": [
|
|
197
198
|
"remainingReadyOrProjectedGap == 0",
|
|
@@ -201,6 +202,10 @@
|
|
|
201
202
|
],
|
|
202
203
|
"rules": [
|
|
203
204
|
"Poll every 60-120 seconds or on the host continuation interval.",
|
|
205
|
+
"Use run_scheduler_sweep({ workspaceId, targetDate }) for exact-date scheduler pickup; for untilDate or horizonSendDays requests, sweep each planner-selected targetDate with the explicit workspaceId. It places cells only inside existing gates and never sends.",
|
|
206
|
+
"cellsConsidered is allocation-attempt count; inspect campaignScopeSummary before assuming the selected refill campaign/table was included or ready-but-blocked.",
|
|
207
|
+
"Read prefiltered, skipped, and deferred separately: prefiltered ready closed-InMail cells with stale paid-credit facts require refresh_paid_inmail_credits_then_rerun once, then rerun/status.",
|
|
208
|
+
"wait_for_capacity_or_window means report loaded/capped/waiting and do not source or prep more rows; no_ready_cells_continue_refill_prep means return to the refill/prep ladder.",
|
|
204
209
|
"Stop waiting when projected coverage fills the target.",
|
|
205
210
|
"Leave wait if a concrete non-scheduler blocker appears.",
|
|
206
211
|
"Do not mark complete or blocked only because awaiting_scheduler_after_ready_buffer persists."
|