@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.
Files changed (35) hide show
  1. package/README.md +5 -2
  2. package/dist/index-dev.js +0 -0
  3. package/dist/index.js +0 -0
  4. package/dist/refill-date-window.d.ts +34 -0
  5. package/dist/refill-date-window.js +210 -0
  6. package/dist/refill-run-loop.d.ts +9 -1
  7. package/dist/refill-run-loop.js +435 -85
  8. package/dist/server.js +4 -0
  9. package/dist/tools/evergreen-refill-plan.d.ts +19 -0
  10. package/dist/tools/evergreen-refill-plan.js +19 -0
  11. package/dist/tools/prompts.d.ts +2 -0
  12. package/dist/tools/prompts.js +1 -0
  13. package/dist/tools/refill-executors.d.ts +0 -7
  14. package/dist/tools/refill-executors.js +0 -22
  15. package/dist/tools/refill-sends-evergreen.d.ts +28 -0
  16. package/dist/tools/refill-sends-evergreen.js +47 -0
  17. package/dist/tools/refill-sends-v2.d.ts +19 -0
  18. package/dist/tools/refill-sends-v2.js +32 -1
  19. package/dist/tools/refill-sends.d.ts +0 -12
  20. package/dist/tools/refill-sends.js +37 -58
  21. package/dist/tools/refill-target-plan.js +19 -6
  22. package/dist/tools/registry.d.ts +55 -0
  23. package/dist/tools/registry.js +2 -0
  24. package/dist/tools/scheduler-fill-capacity.js +1 -1
  25. package/dist/tools/scheduler-run.d.ts +32 -0
  26. package/dist/tools/scheduler-run.js +68 -0
  27. package/dist/tools/senders.d.ts +8 -14
  28. package/dist/tools/senders.js +10 -21
  29. package/package.json +1 -1
  30. package/skills/refill-sends/SKILL.md +31 -4
  31. package/skills/refill-sends-v2/SKILL.md +29 -5
  32. package/skills/refill-sends-v2-workflow/SKILL.md +27 -2
  33. package/skills/refill-sends-v2-workflow/core/flow.v1.json +19 -3
  34. package/skills/refill-sends-workflow/SKILL.md +27 -5
  35. package/skills/refill-sends-workflow/core/flow.v1.json +6 -1
package/README.md CHANGED
@@ -74,9 +74,12 @@ sending from:
74
74
 
75
75
  The refill-sends public command wrapper plans and executes approval-gated send
76
76
  refills. It supports `--yolo` and optional sender selectors such as
77
- `--sender "Christian Reyes"`, optional through-date selectors such as
77
+ `--sender "Christian Reyes"`, exact-date selectors such as
78
+ `--target-date 2026-06-30`, optional through-date selectors such as
78
79
  `--until 2026-06-30`, or typed MCP calls to `refill_sends({ yolo, senders,
79
- untilDate })` from:
80
+ horizonSendDays, targetDate, untilDate })`. Date selectors resolve by
81
+ `targetDate > untilDate > horizonSendDays`, where `targetDate` means one exact
82
+ sender-local date and `untilDate` means an inclusive through-date, from:
80
83
 
81
84
  - `mcp/sellable/skills/refill-sends/SKILL.md`
82
85
 
package/dist/index-dev.js CHANGED
File without changes
package/dist/index.js CHANGED
File without changes
@@ -0,0 +1,34 @@
1
+ export type RefillDateWindowSource = "default_scheduler_forward" | "horizon_send_days" | "until_date" | "target_date";
2
+ export type NormalizedRefillDateSelector = {
3
+ source: RefillDateWindowSource;
4
+ targetDate: string | null;
5
+ untilDate: string | null;
6
+ horizonSendDays: number | null;
7
+ };
8
+ export type RefillRunDateWindow = NormalizedRefillDateSelector & {
9
+ version: 1;
10
+ selectedDates: string[];
11
+ senderWindows?: Array<{
12
+ senderId: string | null;
13
+ timeZone: string | null;
14
+ selectedDates: string[];
15
+ }>;
16
+ };
17
+ type DateSelectorInput = {
18
+ targetDate?: unknown;
19
+ untilDate?: unknown;
20
+ horizonSendDays?: unknown;
21
+ };
22
+ export declare function normalizeRefillDateSelector(input: DateSelectorInput): NormalizedRefillDateSelector;
23
+ export declare function refillDateSelectorBody(selector: NormalizedRefillDateSelector): {
24
+ targetDate?: string;
25
+ untilDate?: string;
26
+ horizonSendDays?: number;
27
+ };
28
+ export declare function dateWindowFromSelector(selector: NormalizedRefillDateSelector): RefillRunDateWindow;
29
+ export declare function dateWindowFromPlan(plan: Record<string, unknown>, selector: NormalizedRefillDateSelector): RefillRunDateWindow;
30
+ export declare function dateWindowFromRunState(runState: unknown): RefillRunDateWindow | null;
31
+ export declare function selectorFromDateWindow(window: RefillRunDateWindow): NormalizedRefillDateSelector;
32
+ export declare function dateSelectorMatchesWindow(selector: NormalizedRefillDateSelector, window: RefillRunDateWindow): boolean;
33
+ export declare function schedulerSweepTargetDates(window: RefillRunDateWindow): string[];
34
+ export {};
@@ -0,0 +1,210 @@
1
+ function isRecord(value) {
2
+ return Boolean(value) && typeof value === "object" && !Array.isArray(value);
3
+ }
4
+ function stringValue(value) {
5
+ return typeof value === "string" && value.trim() ? value.trim() : null;
6
+ }
7
+ function numberValue(value) {
8
+ return typeof value === "number" && Number.isFinite(value) ? value : null;
9
+ }
10
+ function arrayValue(value) {
11
+ return Array.isArray(value) ? value : [];
12
+ }
13
+ function isValidDateKey(value) {
14
+ if (!/^\d{4}-\d{2}-\d{2}$/.test(value))
15
+ return false;
16
+ const [year, month, day] = value.split("-").map(Number);
17
+ const date = new Date(Date.UTC(year, month - 1, day));
18
+ return (date.getUTCFullYear() === year &&
19
+ date.getUTCMonth() === month - 1 &&
20
+ date.getUTCDate() === day);
21
+ }
22
+ function normalizeDateKey(value, field) {
23
+ if (value === undefined || value === null || value === "")
24
+ return null;
25
+ if (typeof value !== "string") {
26
+ throw new Error(`${field} must be a string in YYYY-MM-DD format.`);
27
+ }
28
+ const trimmed = value.trim();
29
+ if (!isValidDateKey(trimmed)) {
30
+ throw new Error(`${field} must be a valid YYYY-MM-DD calendar date.`);
31
+ }
32
+ return trimmed;
33
+ }
34
+ function normalizeHorizonSendDays(value) {
35
+ if (value === undefined)
36
+ return null;
37
+ if (typeof value !== "number" ||
38
+ !Number.isInteger(value) ||
39
+ value < 1 ||
40
+ value > 7) {
41
+ throw new Error("horizonSendDays must be an integer between 1 and 7.");
42
+ }
43
+ return value;
44
+ }
45
+ export function normalizeRefillDateSelector(input) {
46
+ const targetDate = normalizeDateKey(input.targetDate, "targetDate");
47
+ const untilDate = normalizeDateKey(input.untilDate, "untilDate");
48
+ const horizonSendDays = normalizeHorizonSendDays(input.horizonSendDays);
49
+ if (targetDate) {
50
+ return {
51
+ source: "target_date",
52
+ targetDate,
53
+ untilDate: null,
54
+ horizonSendDays: null,
55
+ };
56
+ }
57
+ if (untilDate) {
58
+ return {
59
+ source: "until_date",
60
+ targetDate: null,
61
+ untilDate,
62
+ horizonSendDays: null,
63
+ };
64
+ }
65
+ if (horizonSendDays !== null) {
66
+ return {
67
+ source: "horizon_send_days",
68
+ targetDate: null,
69
+ untilDate: null,
70
+ horizonSendDays,
71
+ };
72
+ }
73
+ return {
74
+ source: "default_scheduler_forward",
75
+ targetDate: null,
76
+ untilDate: null,
77
+ horizonSendDays: null,
78
+ };
79
+ }
80
+ export function refillDateSelectorBody(selector) {
81
+ if (selector.source === "target_date" && selector.targetDate) {
82
+ return { targetDate: selector.targetDate };
83
+ }
84
+ if (selector.source === "until_date" && selector.untilDate) {
85
+ return { untilDate: selector.untilDate };
86
+ }
87
+ if (selector.source === "horizon_send_days" &&
88
+ selector.horizonSendDays !== null) {
89
+ return { horizonSendDays: selector.horizonSendDays };
90
+ }
91
+ return {};
92
+ }
93
+ export function dateWindowFromSelector(selector) {
94
+ return {
95
+ version: 1,
96
+ ...selector,
97
+ selectedDates: selector.targetDate ? [selector.targetDate] : [],
98
+ };
99
+ }
100
+ function selectedDatesFromPlan(plan) {
101
+ const packet = isRecord(plan.packet) ? plan.packet : {};
102
+ const target = isRecord(packet.target) ? packet.target : {};
103
+ const window = isRecord(target.window) ? target.window : {};
104
+ const senderWindows = arrayValue(window.senderWindows).filter(isRecord);
105
+ const fromWindows = senderWindows.flatMap((senderWindow) => arrayValue(senderWindow.selectedDates)
106
+ .map((entry) => stringValue(entry))
107
+ .filter((entry) => Boolean(entry)));
108
+ if (fromWindows.length > 0)
109
+ return Array.from(new Set(fromWindows)).sort();
110
+ const senderRefillPlans = arrayValue(target.senderRefillPlans).filter(isRecord);
111
+ return Array.from(new Set(senderRefillPlans.flatMap((senderPlan) => {
112
+ const horizon = isRecord(senderPlan.horizon) ? senderPlan.horizon : {};
113
+ return arrayValue(horizon.selectedDays)
114
+ .filter(isRecord)
115
+ .map((day) => stringValue(day.date))
116
+ .filter((entry) => Boolean(entry));
117
+ }))).sort();
118
+ }
119
+ function senderWindowsFromPlan(plan) {
120
+ const packet = isRecord(plan.packet) ? plan.packet : {};
121
+ const target = isRecord(packet.target) ? packet.target : {};
122
+ const window = isRecord(target.window) ? target.window : {};
123
+ return arrayValue(window.senderWindows)
124
+ .filter(isRecord)
125
+ .map((senderWindow) => ({
126
+ senderId: stringValue(senderWindow.senderId),
127
+ timeZone: stringValue(senderWindow.timeZone),
128
+ selectedDates: arrayValue(senderWindow.selectedDates)
129
+ .map((entry) => stringValue(entry))
130
+ .filter((entry) => Boolean(entry)),
131
+ }));
132
+ }
133
+ export function dateWindowFromPlan(plan, selector) {
134
+ const packet = isRecord(plan.packet) ? plan.packet : {};
135
+ const request = isRecord(packet.request) ? packet.request : {};
136
+ const targetDate = stringValue(request.targetDate) ?? selector.targetDate ?? null;
137
+ const untilDate = stringValue(request.untilDate) ?? selector.untilDate ?? null;
138
+ const horizonSendDays = numberValue(request.horizonSendDays) ?? selector.horizonSendDays ?? null;
139
+ const source = targetDate
140
+ ? "target_date"
141
+ : untilDate
142
+ ? "until_date"
143
+ : horizonSendDays !== null
144
+ ? "horizon_send_days"
145
+ : selector.source;
146
+ const selectedDates = selectedDatesFromPlan(plan);
147
+ return {
148
+ version: 1,
149
+ source,
150
+ targetDate: source === "target_date" ? targetDate : null,
151
+ untilDate: source === "until_date" ? untilDate : null,
152
+ horizonSendDays: source === "horizon_send_days" ? horizonSendDays : null,
153
+ selectedDates: selectedDates.length > 0
154
+ ? selectedDates
155
+ : targetDate
156
+ ? [targetDate]
157
+ : [],
158
+ senderWindows: senderWindowsFromPlan(plan),
159
+ };
160
+ }
161
+ export function dateWindowFromRunState(runState) {
162
+ const state = isRecord(runState) ? runState : {};
163
+ const raw = isRecord(state.dateWindow) ? state.dateWindow : null;
164
+ if (!raw || raw.version !== 1)
165
+ return null;
166
+ const source = raw.source === "target_date" ||
167
+ raw.source === "until_date" ||
168
+ raw.source === "horizon_send_days" ||
169
+ raw.source === "default_scheduler_forward"
170
+ ? raw.source
171
+ : null;
172
+ if (!source)
173
+ return null;
174
+ return {
175
+ version: 1,
176
+ source,
177
+ targetDate: source === "target_date" ? stringValue(raw.targetDate) : null,
178
+ untilDate: source === "until_date" ? stringValue(raw.untilDate) : null,
179
+ horizonSendDays: source === "horizon_send_days"
180
+ ? numberValue(raw.horizonSendDays)
181
+ : null,
182
+ selectedDates: arrayValue(raw.selectedDates)
183
+ .map((entry) => stringValue(entry))
184
+ .filter((entry) => Boolean(entry)),
185
+ };
186
+ }
187
+ export function selectorFromDateWindow(window) {
188
+ return {
189
+ source: window.source,
190
+ targetDate: window.targetDate,
191
+ untilDate: window.untilDate,
192
+ horizonSendDays: window.horizonSendDays,
193
+ };
194
+ }
195
+ export function dateSelectorMatchesWindow(selector, window) {
196
+ return (selector.source === window.source &&
197
+ selector.targetDate === window.targetDate &&
198
+ selector.untilDate === window.untilDate &&
199
+ selector.horizonSendDays === window.horizonSendDays);
200
+ }
201
+ export function schedulerSweepTargetDates(window) {
202
+ if (window.source === "target_date" && window.targetDate) {
203
+ return [window.targetDate];
204
+ }
205
+ if (window.source === "until_date" ||
206
+ window.source === "horizon_send_days") {
207
+ return window.selectedDates;
208
+ }
209
+ return [];
210
+ }
@@ -13,6 +13,9 @@ export interface RefillV2LoopInput {
13
13
  };
14
14
  approvalMode?: "approve" | "mark_ready";
15
15
  dryRun?: boolean;
16
+ targetDate?: string | null;
17
+ untilDate?: string | null;
18
+ horizonSendDays?: number | null;
16
19
  }
17
20
  export interface RefillV2LoopBudgets {
18
21
  maxGateCyclesPerInvocation: number;
@@ -60,6 +63,9 @@ export interface RefillV2LoopDeps {
60
63
  intent?: string;
61
64
  senderIds?: string[];
62
65
  runState?: Record<string, unknown>;
66
+ targetDate?: string;
67
+ untilDate?: string;
68
+ horizonSendDays?: number;
63
69
  journal?: boolean;
64
70
  }) => Promise<Record<string, unknown>>;
65
71
  executors: RefillV2Executors;
@@ -68,7 +74,9 @@ export interface RefillV2LoopDeps {
68
74
  budgets?: Partial<RefillV2LoopBudgets>;
69
75
  now?: () => Date;
70
76
  sleep?: (ms: number) => Promise<void>;
71
- requestSchedulerRun?: (workspaceId: string) => Promise<unknown>;
77
+ requestSchedulerRun?: (workspaceId: string, options?: {
78
+ targetDate?: string;
79
+ }) => Promise<unknown>;
72
80
  }
73
81
  export type RefillV2LoopResult = {
74
82
  status: "dry_run";