@sellable/mcp 0.1.511 → 0.1.513
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/dist/api.js +15 -12
- package/dist/refill-journal.d.ts +49 -0
- package/dist/refill-journal.js +134 -0
- package/dist/refill-local-state.d.ts +31 -0
- package/dist/refill-local-state.js +96 -0
- package/dist/server.js +13 -3
- package/dist/tools/evergreen-refill-plan.d.ts +69 -0
- package/dist/tools/evergreen-refill-plan.js +273 -0
- package/dist/tools/leads.d.ts +40 -0
- package/dist/tools/leads.js +86 -31
- package/dist/tools/prompts.d.ts +4 -3
- package/dist/tools/prompts.js +7 -1
- 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 +28 -0
- package/dist/tools/refill-sends-v2.js +49 -0
- package/dist/tools/registry.d.ts +46 -106
- package/dist/tools/registry.js +6 -2
- package/package.json +1 -1
- package/skills/refill-sends-evergreen/SKILL.md +19 -0
- package/skills/refill-sends-evergreen-workflow/SKILL.md +20 -0
- package/skills/refill-sends-evergreen-workflow/core/flow.v1.json +247 -0
- package/skills/refill-sends-v2/SKILL.md +96 -0
- package/skills/refill-sends-v2-workflow/SKILL.md +127 -0
- package/skills/refill-sends-v2-workflow/core/flow.v1.json +266 -0
package/dist/tools/registry.d.ts
CHANGED
|
@@ -236,7 +236,7 @@ export declare const allTools: ({
|
|
|
236
236
|
properties: {
|
|
237
237
|
subskillName: {
|
|
238
238
|
type: string;
|
|
239
|
-
enum: readonly ["building-gtm-tables", "content", "create-ab-test", "create-campaign", "create-campaign-brief", "create-campaign-v2", "create-campaign-v2-tail", "create-campaign-v2-validation", "create-evergreen-campaigns", "create-post", "create-rubric", "engage", "enrich-prospects", "fill-send-horizon", "find-leads", "foundation", "generate-messages", "interview", "load-voice", "refresh-sender-engagement", "refill-sends", "refill-sends-workflow", "research", "research-prospect", "research-sender", "weekly-campaign-summary", "workflow-sequences"];
|
|
239
|
+
enum: readonly ["building-gtm-tables", "content", "create-ab-test", "create-campaign", "create-campaign-brief", "create-campaign-v2", "create-campaign-v2-tail", "create-campaign-v2-validation", "create-evergreen-campaigns", "create-post", "create-rubric", "engage", "enrich-prospects", "fill-send-horizon", "find-leads", "foundation", "generate-messages", "interview", "load-voice", "refresh-sender-engagement", "refill-sends", "refill-sends-evergreen", "refill-sends-evergreen-workflow", "refill-sends-v2", "refill-sends-v2-workflow", "refill-sends-workflow", "research", "research-prospect", "research-sender", "weekly-campaign-summary", "workflow-sequences"];
|
|
240
240
|
description: string;
|
|
241
241
|
};
|
|
242
242
|
offset: {
|
|
@@ -271,7 +271,7 @@ export declare const allTools: ({
|
|
|
271
271
|
properties: {
|
|
272
272
|
subskillName: {
|
|
273
273
|
type: string;
|
|
274
|
-
enum: readonly ["building-gtm-tables", "content", "create-ab-test", "create-campaign", "create-campaign-brief", "create-campaign-v2", "create-campaign-v2-tail", "create-campaign-v2-validation", "create-evergreen-campaigns", "create-post", "create-rubric", "engage", "enrich-prospects", "fill-send-horizon", "find-leads", "foundation", "generate-messages", "interview", "load-voice", "refresh-sender-engagement", "refill-sends", "refill-sends-workflow", "research", "research-prospect", "research-sender", "weekly-campaign-summary", "workflow-sequences"];
|
|
274
|
+
enum: readonly ["building-gtm-tables", "content", "create-ab-test", "create-campaign", "create-campaign-brief", "create-campaign-v2", "create-campaign-v2-tail", "create-campaign-v2-validation", "create-evergreen-campaigns", "create-post", "create-rubric", "engage", "enrich-prospects", "fill-send-horizon", "find-leads", "foundation", "generate-messages", "interview", "load-voice", "refresh-sender-engagement", "refill-sends", "refill-sends-evergreen", "refill-sends-evergreen-workflow", "refill-sends-v2", "refill-sends-v2-workflow", "refill-sends-workflow", "research", "research-prospect", "research-sender", "weekly-campaign-summary", "workflow-sequences"];
|
|
275
275
|
description: string;
|
|
276
276
|
};
|
|
277
277
|
assetPath: {
|
|
@@ -474,39 +474,6 @@ export declare const allTools: ({
|
|
|
474
474
|
required: string[];
|
|
475
475
|
additionalProperties: boolean;
|
|
476
476
|
};
|
|
477
|
-
} | {
|
|
478
|
-
name: string;
|
|
479
|
-
description: string;
|
|
480
|
-
inputSchema: {
|
|
481
|
-
type: string;
|
|
482
|
-
properties: {
|
|
483
|
-
intent: {
|
|
484
|
-
type: string;
|
|
485
|
-
enum: string[];
|
|
486
|
-
description: string;
|
|
487
|
-
};
|
|
488
|
-
campaignId: {
|
|
489
|
-
type: string;
|
|
490
|
-
description: string;
|
|
491
|
-
};
|
|
492
|
-
tableId: {
|
|
493
|
-
type: string;
|
|
494
|
-
description: string;
|
|
495
|
-
};
|
|
496
|
-
limit: {
|
|
497
|
-
type: string;
|
|
498
|
-
minimum: number;
|
|
499
|
-
maximum: number;
|
|
500
|
-
description: string;
|
|
501
|
-
};
|
|
502
|
-
workspaceId: {
|
|
503
|
-
type: string;
|
|
504
|
-
description: string;
|
|
505
|
-
};
|
|
506
|
-
};
|
|
507
|
-
required: string[];
|
|
508
|
-
additionalProperties: boolean;
|
|
509
|
-
};
|
|
510
477
|
} | {
|
|
511
478
|
name: string;
|
|
512
479
|
description: string;
|
|
@@ -618,59 +585,6 @@ export declare const allTools: ({
|
|
|
618
585
|
additionalProperties: boolean;
|
|
619
586
|
required?: undefined;
|
|
620
587
|
};
|
|
621
|
-
} | {
|
|
622
|
-
name: string;
|
|
623
|
-
description: string;
|
|
624
|
-
inputSchema: {
|
|
625
|
-
type: string;
|
|
626
|
-
properties: {
|
|
627
|
-
capacityRequests: {
|
|
628
|
-
type: string;
|
|
629
|
-
minItems: number;
|
|
630
|
-
items: {
|
|
631
|
-
type: string;
|
|
632
|
-
properties: {
|
|
633
|
-
senderId: {
|
|
634
|
-
type: string;
|
|
635
|
-
description: string;
|
|
636
|
-
};
|
|
637
|
-
actionType: {
|
|
638
|
-
type: string;
|
|
639
|
-
enum: string[];
|
|
640
|
-
description: string;
|
|
641
|
-
};
|
|
642
|
-
cellId: {
|
|
643
|
-
type: string;
|
|
644
|
-
description: string;
|
|
645
|
-
};
|
|
646
|
-
columnId: {
|
|
647
|
-
type: string;
|
|
648
|
-
description: string;
|
|
649
|
-
};
|
|
650
|
-
};
|
|
651
|
-
required: string[];
|
|
652
|
-
additionalProperties: boolean;
|
|
653
|
-
};
|
|
654
|
-
description: string;
|
|
655
|
-
};
|
|
656
|
-
targetDate: {
|
|
657
|
-
type: string;
|
|
658
|
-
pattern: string;
|
|
659
|
-
description: string;
|
|
660
|
-
};
|
|
661
|
-
mode: {
|
|
662
|
-
type: string;
|
|
663
|
-
enum: string[];
|
|
664
|
-
description: string;
|
|
665
|
-
};
|
|
666
|
-
workspaceId: {
|
|
667
|
-
type: string;
|
|
668
|
-
description: string;
|
|
669
|
-
};
|
|
670
|
-
};
|
|
671
|
-
required: string[];
|
|
672
|
-
additionalProperties: boolean;
|
|
673
|
-
};
|
|
674
588
|
} | {
|
|
675
589
|
name: string;
|
|
676
590
|
description: string;
|
|
@@ -2381,24 +2295,6 @@ export declare const allTools: ({
|
|
|
2381
2295
|
};
|
|
2382
2296
|
required: string[];
|
|
2383
2297
|
};
|
|
2384
|
-
} | {
|
|
2385
|
-
name: string;
|
|
2386
|
-
description: string;
|
|
2387
|
-
inputSchema: {
|
|
2388
|
-
type: string;
|
|
2389
|
-
properties: {
|
|
2390
|
-
senderId: {
|
|
2391
|
-
type: string;
|
|
2392
|
-
description: string;
|
|
2393
|
-
};
|
|
2394
|
-
workspaceId: {
|
|
2395
|
-
type: string;
|
|
2396
|
-
description: string;
|
|
2397
|
-
};
|
|
2398
|
-
};
|
|
2399
|
-
required: string[];
|
|
2400
|
-
additionalProperties: boolean;
|
|
2401
|
-
};
|
|
2402
2298
|
} | {
|
|
2403
2299
|
name: string;
|
|
2404
2300
|
description: string;
|
|
@@ -3031,6 +2927,7 @@ export declare const allTools: ({
|
|
|
3031
2927
|
previewOnly?: undefined;
|
|
3032
2928
|
companySearchToken?: undefined;
|
|
3033
2929
|
selectedCompanyIds?: undefined;
|
|
2930
|
+
workspaceId?: undefined;
|
|
3034
2931
|
domainFilterId?: undefined;
|
|
3035
2932
|
type?: undefined;
|
|
3036
2933
|
profileUrl?: undefined;
|
|
@@ -3227,6 +3124,7 @@ export declare const allTools: ({
|
|
|
3227
3124
|
previewOnly?: undefined;
|
|
3228
3125
|
companySearchToken?: undefined;
|
|
3229
3126
|
selectedCompanyIds?: undefined;
|
|
3127
|
+
workspaceId?: undefined;
|
|
3230
3128
|
domainFilterId?: undefined;
|
|
3231
3129
|
type?: undefined;
|
|
3232
3130
|
profileUrl?: undefined;
|
|
@@ -3322,6 +3220,7 @@ export declare const allTools: ({
|
|
|
3322
3220
|
previewOnly?: undefined;
|
|
3323
3221
|
companySearchToken?: undefined;
|
|
3324
3222
|
selectedCompanyIds?: undefined;
|
|
3223
|
+
workspaceId?: undefined;
|
|
3325
3224
|
domainFilterId?: undefined;
|
|
3326
3225
|
type?: undefined;
|
|
3327
3226
|
profileUrl?: undefined;
|
|
@@ -3489,6 +3388,7 @@ export declare const allTools: ({
|
|
|
3489
3388
|
previewOnly?: undefined;
|
|
3490
3389
|
companySearchToken?: undefined;
|
|
3491
3390
|
selectedCompanyIds?: undefined;
|
|
3391
|
+
workspaceId?: undefined;
|
|
3492
3392
|
domainFilterId?: undefined;
|
|
3493
3393
|
type?: undefined;
|
|
3494
3394
|
profileUrl?: undefined;
|
|
@@ -3598,6 +3498,7 @@ export declare const allTools: ({
|
|
|
3598
3498
|
previewOnly?: undefined;
|
|
3599
3499
|
companySearchToken?: undefined;
|
|
3600
3500
|
selectedCompanyIds?: undefined;
|
|
3501
|
+
workspaceId?: undefined;
|
|
3601
3502
|
domainFilterId?: undefined;
|
|
3602
3503
|
type?: undefined;
|
|
3603
3504
|
profileUrl?: undefined;
|
|
@@ -3716,6 +3617,7 @@ export declare const allTools: ({
|
|
|
3716
3617
|
previewOnly?: undefined;
|
|
3717
3618
|
companySearchToken?: undefined;
|
|
3718
3619
|
selectedCompanyIds?: undefined;
|
|
3620
|
+
workspaceId?: undefined;
|
|
3719
3621
|
domainFilterId?: undefined;
|
|
3720
3622
|
type?: undefined;
|
|
3721
3623
|
profileUrl?: undefined;
|
|
@@ -3823,6 +3725,7 @@ export declare const allTools: ({
|
|
|
3823
3725
|
previewOnly?: undefined;
|
|
3824
3726
|
companySearchToken?: undefined;
|
|
3825
3727
|
selectedCompanyIds?: undefined;
|
|
3728
|
+
workspaceId?: undefined;
|
|
3826
3729
|
domainFilterId?: undefined;
|
|
3827
3730
|
type?: undefined;
|
|
3828
3731
|
profileUrl?: undefined;
|
|
@@ -3935,6 +3838,7 @@ export declare const allTools: ({
|
|
|
3935
3838
|
previewOnly?: undefined;
|
|
3936
3839
|
companySearchToken?: undefined;
|
|
3937
3840
|
selectedCompanyIds?: undefined;
|
|
3841
|
+
workspaceId?: undefined;
|
|
3938
3842
|
domainFilterId?: undefined;
|
|
3939
3843
|
type?: undefined;
|
|
3940
3844
|
profileUrl?: undefined;
|
|
@@ -4035,6 +3939,7 @@ export declare const allTools: ({
|
|
|
4035
3939
|
previewOnly?: undefined;
|
|
4036
3940
|
companySearchToken?: undefined;
|
|
4037
3941
|
selectedCompanyIds?: undefined;
|
|
3942
|
+
workspaceId?: undefined;
|
|
4038
3943
|
domainFilterId?: undefined;
|
|
4039
3944
|
type?: undefined;
|
|
4040
3945
|
profileUrl?: undefined;
|
|
@@ -4927,6 +4832,7 @@ export declare const allTools: ({
|
|
|
4927
4832
|
exclude?: undefined;
|
|
4928
4833
|
companySearchToken?: undefined;
|
|
4929
4834
|
selectedCompanyIds?: undefined;
|
|
4835
|
+
workspaceId?: undefined;
|
|
4930
4836
|
domainFilterId?: undefined;
|
|
4931
4837
|
type?: undefined;
|
|
4932
4838
|
profileUrl?: undefined;
|
|
@@ -5036,6 +4942,7 @@ export declare const allTools: ({
|
|
|
5036
4942
|
seedDomains?: undefined;
|
|
5037
4943
|
sort?: undefined;
|
|
5038
4944
|
previewOnly?: undefined;
|
|
4945
|
+
workspaceId?: undefined;
|
|
5039
4946
|
domainFilterId?: undefined;
|
|
5040
4947
|
type?: undefined;
|
|
5041
4948
|
profileUrl?: undefined;
|
|
@@ -6022,6 +5929,10 @@ export declare const allTools: ({
|
|
|
6022
5929
|
type: string;
|
|
6023
5930
|
description: string;
|
|
6024
5931
|
};
|
|
5932
|
+
workspaceId: {
|
|
5933
|
+
type: string;
|
|
5934
|
+
description: string;
|
|
5935
|
+
};
|
|
6025
5936
|
searchName: {
|
|
6026
5937
|
type: string;
|
|
6027
5938
|
description: string;
|
|
@@ -6246,6 +6157,7 @@ export declare const allTools: ({
|
|
|
6246
6157
|
previewOnly?: undefined;
|
|
6247
6158
|
companySearchToken?: undefined;
|
|
6248
6159
|
selectedCompanyIds?: undefined;
|
|
6160
|
+
workspaceId?: undefined;
|
|
6249
6161
|
domainFilterId?: undefined;
|
|
6250
6162
|
sourceLeadListId?: undefined;
|
|
6251
6163
|
targetLeadCount?: undefined;
|
|
@@ -6278,6 +6190,10 @@ export declare const allTools: ({
|
|
|
6278
6190
|
type: string;
|
|
6279
6191
|
description: string;
|
|
6280
6192
|
};
|
|
6193
|
+
workspaceId: {
|
|
6194
|
+
type: string;
|
|
6195
|
+
description: string;
|
|
6196
|
+
};
|
|
6281
6197
|
provider: {
|
|
6282
6198
|
type: string;
|
|
6283
6199
|
enum: string[];
|
|
@@ -6421,6 +6337,10 @@ export declare const allTools: ({
|
|
|
6421
6337
|
type: string;
|
|
6422
6338
|
description: string;
|
|
6423
6339
|
};
|
|
6340
|
+
workspaceId: {
|
|
6341
|
+
type: string;
|
|
6342
|
+
description: string;
|
|
6343
|
+
};
|
|
6424
6344
|
tableId: {
|
|
6425
6345
|
type: string;
|
|
6426
6346
|
description: string;
|
|
@@ -6519,6 +6439,10 @@ export declare const allTools: ({
|
|
|
6519
6439
|
type: string;
|
|
6520
6440
|
description: string;
|
|
6521
6441
|
};
|
|
6442
|
+
workspaceId: {
|
|
6443
|
+
type: string;
|
|
6444
|
+
description: string;
|
|
6445
|
+
};
|
|
6522
6446
|
sourceLeadListId: {
|
|
6523
6447
|
type: string;
|
|
6524
6448
|
description: string;
|
|
@@ -6751,6 +6675,7 @@ export declare const allTools: ({
|
|
|
6751
6675
|
previewOnly?: undefined;
|
|
6752
6676
|
companySearchToken?: undefined;
|
|
6753
6677
|
selectedCompanyIds?: undefined;
|
|
6678
|
+
workspaceId?: undefined;
|
|
6754
6679
|
domainFilterId?: undefined;
|
|
6755
6680
|
type?: undefined;
|
|
6756
6681
|
profileUrl?: undefined;
|
|
@@ -6848,6 +6773,7 @@ export declare const allTools: ({
|
|
|
6848
6773
|
previewOnly?: undefined;
|
|
6849
6774
|
companySearchToken?: undefined;
|
|
6850
6775
|
selectedCompanyIds?: undefined;
|
|
6776
|
+
workspaceId?: undefined;
|
|
6851
6777
|
domainFilterId?: undefined;
|
|
6852
6778
|
type?: undefined;
|
|
6853
6779
|
profileUrl?: undefined;
|
|
@@ -7257,6 +7183,20 @@ export declare const allTools: ({
|
|
|
7257
7183
|
};
|
|
7258
7184
|
required: string[];
|
|
7259
7185
|
};
|
|
7186
|
+
} | {
|
|
7187
|
+
name: string;
|
|
7188
|
+
description: string;
|
|
7189
|
+
inputSchema: {
|
|
7190
|
+
type: string;
|
|
7191
|
+
properties: {
|
|
7192
|
+
workspaceId: {
|
|
7193
|
+
type: string;
|
|
7194
|
+
description: string;
|
|
7195
|
+
};
|
|
7196
|
+
};
|
|
7197
|
+
required: string[];
|
|
7198
|
+
additionalProperties: boolean;
|
|
7199
|
+
};
|
|
7260
7200
|
} | {
|
|
7261
7201
|
name: string;
|
|
7262
7202
|
description: string;
|
package/dist/tools/registry.js
CHANGED
|
@@ -5,8 +5,8 @@ import { campaignAbTestToolDefinitions } from "./campaign-ab-test.js";
|
|
|
5
5
|
import { campaignFillRoutingToolDefinitions } from "./campaign-fill-routing.js";
|
|
6
6
|
import { campaignHorizonFillToolDefinitions } from "./campaign-horizon-fill.js";
|
|
7
7
|
import { campaignMessagePreparationToolDefinitions } from "./campaign-message-preparation.js";
|
|
8
|
-
import { campaignRefillStateToolDefinitions } from "./campaign-refill-state.js";
|
|
9
8
|
import { campaignProcessingToolDefinitions } from "./campaign-processing.js";
|
|
9
|
+
import { campaignRefillStateToolDefinitions } from "./campaign-refill-state.js";
|
|
10
10
|
import { campaignToolDefinitions } from "./campaigns.js";
|
|
11
11
|
import { cellToolDefinitions } from "./cells.js";
|
|
12
12
|
import { startCliLoginToolDef, waitForCliLoginToolDef } from "./cli-login.js";
|
|
@@ -23,6 +23,7 @@ import { engageDiscoveryToolDefinitions } from "./engage-discovery.js";
|
|
|
23
23
|
import { engageMemoryToolDefinitions } from "./engage-memory.js";
|
|
24
24
|
import { engageStateToolDefinitions } from "./engage-state.js";
|
|
25
25
|
import { enrichmentToolDefinitions } from "./enrichment.js";
|
|
26
|
+
import { refillPlanV2ToolDefinitions } from "./evergreen-refill-plan.js";
|
|
26
27
|
import { frameworkToolDefinitions } from "./framework.js";
|
|
27
28
|
import { harvestJobToolDefinitions } from "./harvest-jobs.js";
|
|
28
29
|
import { inboxToolDefinitions } from "./inbox.js";
|
|
@@ -33,8 +34,9 @@ import { onDemandToolDefinitions } from "./one-off.js";
|
|
|
33
34
|
import { processingToolDefinitions } from "./processing.js";
|
|
34
35
|
import { promptToolDefinitions } from "./prompts.js";
|
|
35
36
|
import { readinessToolDefinitions } from "./readiness.js";
|
|
36
|
-
import {
|
|
37
|
+
import { refillSendsV2ToolDefinitions } from "./refill-sends-v2.js";
|
|
37
38
|
import { refillSendsToolDefinitions } from "./refill-sends.js";
|
|
39
|
+
import { refillTargetPlanToolDefinitions } from "./refill-target-plan.js";
|
|
38
40
|
import { rowToolDefinitions } from "./rows.js";
|
|
39
41
|
import { rubricToolDefinitions } from "./rubrics.js";
|
|
40
42
|
import { schedulerFillCapacityToolDefinitions } from "./scheduler-fill-capacity.js";
|
|
@@ -52,9 +54,11 @@ export const allTools = [
|
|
|
52
54
|
...campaignAbTestToolDefinitions,
|
|
53
55
|
...campaignFillRoutingToolDefinitions,
|
|
54
56
|
...campaignRefillStateToolDefinitions,
|
|
57
|
+
...refillPlanV2ToolDefinitions,
|
|
55
58
|
...refillTargetPlanToolDefinitions,
|
|
56
59
|
...schedulerFillCapacityToolDefinitions,
|
|
57
60
|
...refillSendsToolDefinitions,
|
|
61
|
+
...refillSendsV2ToolDefinitions,
|
|
58
62
|
...setupEvergreenCampaignsToolDefinitions,
|
|
59
63
|
...campaignHorizonFillToolDefinitions,
|
|
60
64
|
...campaignMessagePreparationToolDefinitions,
|
package/package.json
CHANGED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: refill-sends-evergreen
|
|
3
|
+
description: Deprecated alias for refill-sends-v2.
|
|
4
|
+
visibility: public
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- mcp__sellable__get_subskill_prompt
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Refill Sends Evergreen
|
|
10
|
+
|
|
11
|
+
Superseded by refill-sends-v2. The prompt name now redirects through
|
|
12
|
+
`DEPRECATED_SUBSKILL_PROMPT_REPLACEMENTS`; do not call this deprecated prompt
|
|
13
|
+
directly.
|
|
14
|
+
|
|
15
|
+
Use `refill-sends-v2` instead:
|
|
16
|
+
|
|
17
|
+
```text
|
|
18
|
+
get_subskill_prompt({ subskillName: "refill-sends-v2" })
|
|
19
|
+
```
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: refill-sends-evergreen-workflow
|
|
3
|
+
description: Deprecated alias for refill-sends-v2-workflow.
|
|
4
|
+
visibility: internal
|
|
5
|
+
allowed-tools:
|
|
6
|
+
- mcp__sellable__get_subskill_prompt
|
|
7
|
+
---
|
|
8
|
+
|
|
9
|
+
# Refill Sends Evergreen Workflow
|
|
10
|
+
|
|
11
|
+
Superseded by refill-sends-v2-workflow. The prompt name now redirects through
|
|
12
|
+
`DEPRECATED_SUBSKILL_PROMPT_REPLACEMENTS`; do not call this deprecated prompt or
|
|
13
|
+
its old flow asset directly.
|
|
14
|
+
|
|
15
|
+
Use `refill-sends-v2-workflow` instead:
|
|
16
|
+
|
|
17
|
+
```text
|
|
18
|
+
get_subskill_prompt({ subskillName: "refill-sends-v2-workflow" })
|
|
19
|
+
get_subskill_asset({ subskillName: "refill-sends-v2-workflow", assetPath: "core/flow.v1.json" })
|
|
20
|
+
```
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "v1.0",
|
|
3
|
+
"workflow": "refill-sends-evergreen-workflow",
|
|
4
|
+
"principle": "Plan evergreen waterfall refill as a read-only dry-run with zero mutations.",
|
|
5
|
+
"enumeratedRungs": [
|
|
6
|
+
"start_campaign",
|
|
7
|
+
"approve_messages",
|
|
8
|
+
"wait_for_active_work",
|
|
9
|
+
"enrich_more",
|
|
10
|
+
"reconcile_source_copy",
|
|
11
|
+
"add_leads_same_source",
|
|
12
|
+
"paid_lane_fallback",
|
|
13
|
+
"next_campaign",
|
|
14
|
+
"wait_for_scheduler",
|
|
15
|
+
"done"
|
|
16
|
+
],
|
|
17
|
+
"requiredBootstrap": [
|
|
18
|
+
{
|
|
19
|
+
"tool": "get_auth_status",
|
|
20
|
+
"purpose": "Confirm MCP auth before reading workspace or plan facts."
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
"tool": "get_active_workspace",
|
|
24
|
+
"purpose": "Resolve explicit workspace evidence when the request did not provide workspaceId."
|
|
25
|
+
},
|
|
26
|
+
{
|
|
27
|
+
"tool": "refill_sends_evergreen",
|
|
28
|
+
"requiredValues": {
|
|
29
|
+
"workspaceId": "{workspaceId}"
|
|
30
|
+
},
|
|
31
|
+
"requiredOutput": [
|
|
32
|
+
"readOnly true",
|
|
33
|
+
"approvalContract says Phase 85 is plan-only"
|
|
34
|
+
]
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
"tool": "get_subskill_prompt",
|
|
38
|
+
"requiredValues": {
|
|
39
|
+
"subskillName": "refill-sends-evergreen-workflow"
|
|
40
|
+
},
|
|
41
|
+
"mustReadUntil": {
|
|
42
|
+
"hasMore": false
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"tool": "get_subskill_asset",
|
|
47
|
+
"requiredValues": {
|
|
48
|
+
"subskillName": "refill-sends-evergreen-workflow",
|
|
49
|
+
"assetPath": "core/flow.v1.json"
|
|
50
|
+
},
|
|
51
|
+
"mustReadUntil": {
|
|
52
|
+
"hasMore": false
|
|
53
|
+
},
|
|
54
|
+
"validation": {
|
|
55
|
+
"workflow": "refill-sends-evergreen-workflow",
|
|
56
|
+
"versionPrefix": "v1",
|
|
57
|
+
"requiredTopLevelKeys": [
|
|
58
|
+
"states",
|
|
59
|
+
"gateOrder",
|
|
60
|
+
"enumeratedRungs",
|
|
61
|
+
"verification"
|
|
62
|
+
]
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"tool": "get_evergreen_refill_plan",
|
|
67
|
+
"requiredValues": {
|
|
68
|
+
"workspaceId": "{workspaceId}"
|
|
69
|
+
},
|
|
70
|
+
"requiredOutput": [
|
|
71
|
+
"planRevision",
|
|
72
|
+
"stateRevision",
|
|
73
|
+
"packet",
|
|
74
|
+
"journalPath",
|
|
75
|
+
"sideEffects"
|
|
76
|
+
]
|
|
77
|
+
}
|
|
78
|
+
],
|
|
79
|
+
"gateOrder": ["bootstrap", "plan", "report"],
|
|
80
|
+
"states": [
|
|
81
|
+
{
|
|
82
|
+
"id": "bootstrap",
|
|
83
|
+
"description": "Load the read-only command contract, workflow prompt, flow asset, and workspace facts.",
|
|
84
|
+
"allowedTools": [
|
|
85
|
+
"get_auth_status",
|
|
86
|
+
"get_active_workspace",
|
|
87
|
+
"list_workspaces",
|
|
88
|
+
"get_workspace",
|
|
89
|
+
"refill_sends_evergreen",
|
|
90
|
+
"get_subskill_prompt",
|
|
91
|
+
"get_subskill_asset",
|
|
92
|
+
"get_evergreen_refill_plan"
|
|
93
|
+
],
|
|
94
|
+
"onEnter": [
|
|
95
|
+
{
|
|
96
|
+
"tool": "get_auth_status"
|
|
97
|
+
},
|
|
98
|
+
{
|
|
99
|
+
"tool": "refill_sends_evergreen",
|
|
100
|
+
"requiredFields": ["workspaceId"]
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"tool": "get_subskill_prompt",
|
|
104
|
+
"requiredValues": {
|
|
105
|
+
"subskillName": "refill-sends-evergreen-workflow"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"tool": "get_subskill_asset",
|
|
110
|
+
"requiredValues": {
|
|
111
|
+
"subskillName": "refill-sends-evergreen-workflow",
|
|
112
|
+
"assetPath": "core/flow.v1.json"
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
],
|
|
116
|
+
"transitions": {
|
|
117
|
+
"contract_loaded": "plan"
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
"id": "plan",
|
|
122
|
+
"description": "Call the dry-run evergreen refill planner exactly once for this invocation.",
|
|
123
|
+
"allowedTools": ["get_evergreen_refill_plan"],
|
|
124
|
+
"onEnter": [
|
|
125
|
+
{
|
|
126
|
+
"tool": "get_evergreen_refill_plan",
|
|
127
|
+
"requiredFields": ["workspaceId"],
|
|
128
|
+
"optionalFields": ["senderIds", "runState", "journal", "journalNote"]
|
|
129
|
+
}
|
|
130
|
+
],
|
|
131
|
+
"requiredOutput": [
|
|
132
|
+
"sideEffects all false",
|
|
133
|
+
"planRevision starts with pr1:",
|
|
134
|
+
"journalPath reported",
|
|
135
|
+
"chosen evergreenRung is in enumeratedRungs"
|
|
136
|
+
],
|
|
137
|
+
"allowedRungsSource": "enumeratedRungs",
|
|
138
|
+
"doNotAllow": [
|
|
139
|
+
"add_column",
|
|
140
|
+
"add_on_demand_leads",
|
|
141
|
+
"add_rubric_item",
|
|
142
|
+
"add_teammate",
|
|
143
|
+
"add_to_comment_campaign",
|
|
144
|
+
"add_to_connection_campaign",
|
|
145
|
+
"add_to_inmail_campaign",
|
|
146
|
+
"archive_campaign",
|
|
147
|
+
"attach_recommended_sequence",
|
|
148
|
+
"attach_sequence",
|
|
149
|
+
"bulk_enrich_with_prospeo",
|
|
150
|
+
"cancel_campaign_message_preparation",
|
|
151
|
+
"cancel_lead_import",
|
|
152
|
+
"capture_post_idea",
|
|
153
|
+
"check_rubric",
|
|
154
|
+
"commit_blueprint",
|
|
155
|
+
"confirm_harvest_job_companies",
|
|
156
|
+
"confirm_lead_list",
|
|
157
|
+
"confirm_prospeo_company_accounts",
|
|
158
|
+
"copy_sender_config",
|
|
159
|
+
"create_campaign",
|
|
160
|
+
"create_on_demand_campaign",
|
|
161
|
+
"create_on_demand_table",
|
|
162
|
+
"create_workspace",
|
|
163
|
+
"create_workflow_table",
|
|
164
|
+
"delete_column",
|
|
165
|
+
"delete_rubric_item",
|
|
166
|
+
"duplicate_campaign",
|
|
167
|
+
"enrich_with_prospeo",
|
|
168
|
+
"fill_campaign_horizon",
|
|
169
|
+
"get_or_create_direct_campaign_table",
|
|
170
|
+
"import_leads",
|
|
171
|
+
"load_csv_dnc_entries",
|
|
172
|
+
"load_csv_domains",
|
|
173
|
+
"load_csv_linkedin_leads",
|
|
174
|
+
"mark_post_published",
|
|
175
|
+
"migrate_flat_configs",
|
|
176
|
+
"pause_campaign",
|
|
177
|
+
"pause_direct_campaign",
|
|
178
|
+
"pause_on_demand_campaign",
|
|
179
|
+
"prepare_campaign_ab_test",
|
|
180
|
+
"queue_campaign_cells",
|
|
181
|
+
"queue_cells",
|
|
182
|
+
"record_campaign_review_batch",
|
|
183
|
+
"record_engage_proven_search",
|
|
184
|
+
"refill_sends",
|
|
185
|
+
"refresh_paid_inmail_credits",
|
|
186
|
+
"revise_message_template_and_rerun",
|
|
187
|
+
"save_domain_filters",
|
|
188
|
+
"save_hook_research",
|
|
189
|
+
"save_post_draft",
|
|
190
|
+
"save_rubrics",
|
|
191
|
+
"send_inbox_draft",
|
|
192
|
+
"send_inbox_manual_reply",
|
|
193
|
+
"set_active_workspace",
|
|
194
|
+
"set_campaign_waterfall_order",
|
|
195
|
+
"set_company_info",
|
|
196
|
+
"set_engage_state",
|
|
197
|
+
"set_engage_style_guide",
|
|
198
|
+
"set_headline_icp_criteria",
|
|
199
|
+
"set_sender_routing",
|
|
200
|
+
"setup_evergreen_campaigns",
|
|
201
|
+
"start_campaign",
|
|
202
|
+
"start_campaign_message_preparation",
|
|
203
|
+
"start_direct_campaign",
|
|
204
|
+
"start_on_demand_campaign",
|
|
205
|
+
"update_campaign",
|
|
206
|
+
"update_campaign_brief",
|
|
207
|
+
"update_cell",
|
|
208
|
+
"update_column",
|
|
209
|
+
"update_inbox_draft",
|
|
210
|
+
"update_post_draft",
|
|
211
|
+
"update_published_post_metrics",
|
|
212
|
+
"update_rubric_item",
|
|
213
|
+
"upsert_engage_tracked_person",
|
|
214
|
+
"upsert_rubric"
|
|
215
|
+
],
|
|
216
|
+
"transitions": {
|
|
217
|
+
"packet_returned": "report"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"id": "report",
|
|
222
|
+
"description": "Present packet, itinerary, warnings, blockers, plan revision, and journal path; then stop.",
|
|
223
|
+
"allowedTools": [],
|
|
224
|
+
"onEnter": [
|
|
225
|
+
{
|
|
226
|
+
"action": "present_packet_itinerary_and_journal_path"
|
|
227
|
+
}
|
|
228
|
+
],
|
|
229
|
+
"terminal": true
|
|
230
|
+
}
|
|
231
|
+
],
|
|
232
|
+
"verification": {
|
|
233
|
+
"requiredProof": [
|
|
234
|
+
"sideEffects all false in get_evergreen_refill_plan response",
|
|
235
|
+
"planRevision has pr1: prefix",
|
|
236
|
+
"journalPath reported or journalWriteFailed warning surfaced",
|
|
237
|
+
"chosen evergreenRung belongs to enumeratedRungs",
|
|
238
|
+
"packet reviewed with itinerary and blockers"
|
|
239
|
+
],
|
|
240
|
+
"notCompletionProof": [
|
|
241
|
+
"called get_evergreen_refill_plan alone",
|
|
242
|
+
"action queue exists",
|
|
243
|
+
"ready rows alone",
|
|
244
|
+
"operator wants execution"
|
|
245
|
+
]
|
|
246
|
+
}
|
|
247
|
+
}
|