@sellable/mcp 0.1.454 → 0.1.455
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.
|
@@ -6,7 +6,7 @@ async function postRefillTargetPlan(body) {
|
|
|
6
6
|
export const refillTargetPlanToolDefinitions = [
|
|
7
7
|
{
|
|
8
8
|
name: "get_refill_target_plan",
|
|
9
|
-
description: "read-only refill target planner to call before any refill mutation. It computes selected sender-local days, gross scheduled-send target, scheduler-owned scheduled coverage across active enrolled campaigns, ready buffer, remaining scheduled gap, bounded action candidates, and targetRevision drift proof. This tool does not create rows, import leads, prepare messages, approve messages, does not schedule sends, start campaigns, launch, spend InMail credits, or write scheduler fields. Complete targets no-op without approval; incomplete targets must be followed by a bounded approval packet.",
|
|
9
|
+
description: "read-only refill target planner to call before any refill mutation. It infers implicit per-sender send lanes from future scheduled, ready-to-schedule, and recent scheduled evidence before falling back to campaign sequences, then computes selected sender-local days, gross scheduled-send target, scheduler-owned scheduled coverage across active enrolled campaigns, ready buffer, remaining scheduled gap, bounded action candidates, and targetRevision drift proof. This tool does not create rows, import leads, prepare messages, approve messages, does not schedule sends, start campaigns, launch, spend InMail credits, or write scheduler fields. Complete targets no-op without approval; incomplete targets must be followed by a bounded approval packet.",
|
|
10
10
|
inputSchema: {
|
|
11
11
|
type: "object",
|
|
12
12
|
properties: {
|
|
@@ -61,7 +61,7 @@ export const refillTargetPlanToolDefinitions = [
|
|
|
61
61
|
"react_and_comment",
|
|
62
62
|
],
|
|
63
63
|
},
|
|
64
|
-
description: "Optional workflow send column/action types.
|
|
64
|
+
description: "Optional workflow send column/action types. If omitted, the planner infers per-sender lanes from future scheduled, ready-to-schedule, and recent scheduled evidence before falling back to selected active campaign sequences.",
|
|
65
65
|
},
|
|
66
66
|
approvalMode: {
|
|
67
67
|
type: "string",
|
package/package.json
CHANGED
|
@@ -113,12 +113,14 @@ side effects, and stop/rollback condition.
|
|
|
113
113
|
Immediately after loading the internal workflow, call
|
|
114
114
|
`get_refill_target_plan`. The target plan is the canonical first fact receipt:
|
|
115
115
|
selected sender-local days, gross scheduled-send target, scheduler-owned
|
|
116
|
-
scheduled coverage across active enrolled campaigns,
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
116
|
+
scheduled coverage across active enrolled campaigns, inferred per-sender send
|
|
117
|
+
lane/action selections, ready buffer, remaining scheduled gap, remaining
|
|
118
|
+
ready-or-scheduled gap, `targetShapeRevision`, and `stateRevision`. When
|
|
119
|
+
`actionTypes` are omitted, trust the target plan's inferred lane rather than
|
|
120
|
+
asking whether to fill connections, DMs, or InMails. If the target plan is
|
|
121
|
+
complete, report that the selected target is already filled and no-op without
|
|
122
|
+
asking for approval. If the ready buffer covers the target but scheduled
|
|
123
|
+
coverage is still short, run only a bounded read-only scheduler settle/reread loop and report
|
|
122
124
|
`awaiting_scheduler_after_ready_buffer` if it does not settle.
|
|
123
125
|
|
|
124
126
|
If the plain route's managed waterfall targets are stale, for example skipped
|
|
@@ -61,9 +61,14 @@ campaign.
|
|
|
61
61
|
|
|
62
62
|
1. Call `get_refill_target_plan` first. This read-only target plan is the
|
|
63
63
|
canonical opening receipt: selected sender-local days, gross scheduled-send
|
|
64
|
-
target,
|
|
65
|
-
|
|
66
|
-
bounded action candidates,
|
|
64
|
+
target, inferred per-sender send lane/action selections, scheduler-owned
|
|
65
|
+
scheduled coverage across active enrolled campaigns, ready buffer, remaining
|
|
66
|
+
scheduled gap, remaining ready-or-scheduled gap, bounded action candidates,
|
|
67
|
+
`targetShapeRevision`, and `stateRevision`.
|
|
68
|
+
When `actionTypes` are omitted, trust the target plan's inferred lane; do not
|
|
69
|
+
ask the operator whether to fill connections, DMs, or InMails after the plan
|
|
70
|
+
has already inferred that from future scheduled, ready, and recent scheduled
|
|
71
|
+
evidence.
|
|
67
72
|
If `status:"complete"`, report the target, selected dates, scheduled count,
|
|
68
73
|
campaign ids, and no-op proof without asking for approval or mutating.
|
|
69
74
|
If `remainingReadyOrScheduledGap:0` but `remainingScheduledGap>0`, run only a
|