@sellable/install 0.1.209 → 0.1.210
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/bin/sellable-install.mjs
CHANGED
|
@@ -814,11 +814,17 @@ person/company this campaign is for, then I’ll turn that into a campaign brief
|
|
|
814
814
|
before anything is created.
|
|
815
815
|
\`\`\`
|
|
816
816
|
|
|
817
|
-
Exception: if \`bootstrap_create_campaign.modelQuality.status === "warn"
|
|
818
|
-
|
|
817
|
+
Exception: if \`bootstrap_create_campaign.modelQuality.status === "warn"\` and
|
|
818
|
+
\`bootstrap_create_campaign.modelQuality.metadataStale !== true\`, the first
|
|
819
|
+
visible campaign message must be the model-quality warning from
|
|
819
820
|
\`modelQuality.message\`. Ask the user to switch to the configured minimum model
|
|
820
821
|
or explicitly continue anyway before identity setup, research, lead filtering,
|
|
821
|
-
message generation, or launch review.
|
|
822
|
+
message generation, or launch review. If \`metadataStale === true\`, continue
|
|
823
|
+
normally and do not ask the user to switch.
|
|
824
|
+
|
|
825
|
+
If \`bootstrap_create_campaign.modelQuality.metadataStale === true\`, continue
|
|
826
|
+
normally. Do not ask the user to switch models; this is an accepted Codex host
|
|
827
|
+
metadata mismatch.
|
|
822
828
|
|
|
823
829
|
If a linked/local skill file is stale or missing, silently use the installed
|
|
824
830
|
\`sellable@sellable\` plugin copy. Do not tell the user about the stale link,
|
|
@@ -1260,8 +1266,10 @@ updates.
|
|
|
1260
1266
|
5. Call \`mcp__sellable__bootstrap_create_campaign({ flowVersion: "v2", campaignId?, host?, model?, reasoningEffort? })\`.
|
|
1261
1267
|
Pass the current host, model, and reasoning when the host exposes them.
|
|
1262
1268
|
6. If \`safeToProceed !== true\`, stop and show \`blockingErrors\` + \`nextStep\`.
|
|
1263
|
-
7. If \`modelQuality.status === "warn"
|
|
1264
|
-
setup/research and wait for the user
|
|
1269
|
+
7. If \`modelQuality.status === "warn"\` and \`modelQuality.metadataStale !== true\`,
|
|
1270
|
+
show \`modelQuality.message\` before any setup/research and wait for the user
|
|
1271
|
+
to switch or explicitly continue. If \`metadataStale === true\`, continue
|
|
1272
|
+
normally and do not tell the user to switch.
|
|
1265
1273
|
|
|
1266
1274
|
## Execute Workflow
|
|
1267
1275
|
|
package/package.json
CHANGED
|
@@ -179,11 +179,17 @@ person/company this campaign is for, then I’ll turn that into a campaign brief
|
|
|
179
179
|
before we move into lead sourcing.
|
|
180
180
|
```
|
|
181
181
|
|
|
182
|
-
Exception: if `bootstrap_create_campaign.modelQuality.status === "warn"
|
|
183
|
-
|
|
182
|
+
Exception: if `bootstrap_create_campaign.modelQuality.status === "warn"` and
|
|
183
|
+
`bootstrap_create_campaign.modelQuality.metadataStale !== true`, the first
|
|
184
|
+
visible campaign message must be the model-quality warning from
|
|
184
185
|
`modelQuality.message`. Ask the user to switch to the configured minimum model
|
|
185
186
|
or explicitly continue anyway before identity setup, research, lead filtering,
|
|
186
|
-
message generation, or launch review.
|
|
187
|
+
message generation, or launch review. If `metadataStale === true`, continue
|
|
188
|
+
normally and do not ask the user to switch.
|
|
189
|
+
|
|
190
|
+
If `bootstrap_create_campaign.modelQuality.metadataStale === true`, continue
|
|
191
|
+
normally. Do not ask the user to switch models; this is an accepted Codex host
|
|
192
|
+
metadata mismatch.
|
|
187
193
|
|
|
188
194
|
If a linked/local skill file is stale or missing, silently use the installed
|
|
189
195
|
`sellable@sellable` plugin copy. Do not tell the user about the stale link,
|
|
@@ -935,8 +941,10 @@ updates.
|
|
|
935
941
|
6. Call `mcp__sellable__bootstrap_create_campaign({ flowVersion: "v2", campaignId?, host?, model?, reasoningEffort? })`.
|
|
936
942
|
Pass the current host, model, and reasoning when the host exposes them.
|
|
937
943
|
7. If `safeToProceed !== true`, stop and show `blockingErrors` + `nextStep`.
|
|
938
|
-
8. If `modelQuality.status === "warn"
|
|
939
|
-
setup/research and wait for the user
|
|
944
|
+
8. If `modelQuality.status === "warn"` and `modelQuality.metadataStale !== true`,
|
|
945
|
+
show `modelQuality.message` before any setup/research and wait for the user
|
|
946
|
+
to switch or explicitly continue. If `metadataStale === true`, continue
|
|
947
|
+
normally and do not tell the user to switch.
|
|
940
948
|
|
|
941
949
|
## Execute Workflow
|
|
942
950
|
|