@sellable/mcp 0.1.423 → 0.1.425

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.
@@ -21,15 +21,14 @@ const DEFAULT_MODEL_QUALITY_CONFIG = {
21
21
  minimumModel: "GPT 5.5",
22
22
  familyKeywords: ["gpt"],
23
23
  minimumVersion: "5.5",
24
- minimumReasoningEffort: "high",
24
+ minimumReasoningEffort: "xhigh",
25
25
  acceptedReasoningEfforts: [
26
- "high",
27
26
  "extra high",
28
27
  "extra-high",
29
28
  "xhigh",
30
29
  "extra_high",
31
30
  ],
32
- recommendedReasoningEffort: "high or better",
31
+ recommendedReasoningEffort: "xhigh",
33
32
  },
34
33
  },
35
34
  warningCopy: {
@@ -303,7 +303,7 @@ export function getPostFindLeadsScoutRegistry() {
303
303
  filename: String(agent.codex?.filename || `${agent.name}.toml`),
304
304
  description: String(agent.codex?.description || ""),
305
305
  model: String(agent.codex?.model || "gpt-5.5"),
306
- modelReasoningEffort: String(agent.codex?.modelReasoningEffort || "high"),
306
+ modelReasoningEffort: String(agent.codex?.modelReasoningEffort || "xhigh"),
307
307
  },
308
308
  claude: {
309
309
  filename: String(agent.claude?.filename || `${agent.name}.md`),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sellable/mcp",
3
- "version": "0.1.423",
3
+ "version": "0.1.425",
4
4
  "type": "module",
5
5
  "description": "Sellable MCP server for Claude Code and Codex campaign workflows",
6
6
  "main": "dist/index.js",