@sellable/mcp 0.1.71 → 0.1.72

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.
@@ -24,7 +24,8 @@
24
24
  },
25
25
  "codex": {
26
26
  "description": "Sellable lead-source scout for LinkedIn post engagement and active conversation signals.",
27
- "modelReasoningEffort": "medium",
27
+ "model": "gpt-5.5",
28
+ "modelReasoningEffort": "high",
28
29
  "sandboxMode": "read-only",
29
30
  "nicknameCandidates": [
30
31
  "LinkedIn Engagement Scout",
@@ -71,7 +72,8 @@
71
72
  },
72
73
  "codex": {
73
74
  "description": "Sellable lead-source scout for Sales Navigator role, company, and activity filters.",
74
- "modelReasoningEffort": "medium",
75
+ "model": "gpt-5.5",
76
+ "modelReasoningEffort": "high",
75
77
  "sandboxMode": "read-only",
76
78
  "nicknameCandidates": [
77
79
  "Sales Nav Scout",
@@ -118,7 +120,8 @@
118
120
  },
119
121
  "codex": {
120
122
  "description": "Sellable lead-source scout for Prospeo account/domain and broad contact expansion.",
121
- "modelReasoningEffort": "medium",
123
+ "model": "gpt-5.5",
124
+ "modelReasoningEffort": "high",
122
125
  "sandboxMode": "read-only",
123
126
  "nicknameCandidates": [
124
127
  "Prospeo Contact Scout",
package/dist/index-dev.js CHANGED
File without changes
package/dist/index.js CHANGED
File without changes
@@ -71,6 +71,8 @@ export interface SourceScoutRegistryResponse {
71
71
  codex: {
72
72
  filename: string;
73
73
  description: string;
74
+ model: string;
75
+ modelReasoningEffort: string;
74
76
  };
75
77
  claude: {
76
78
  filename: string;
@@ -211,6 +211,8 @@ export function getSourceScoutRegistry() {
211
211
  codex: {
212
212
  filename: String(agent.codex?.filename || `${agent.name}.toml`),
213
213
  description: String(agent.codex?.description || ""),
214
+ model: String(agent.codex?.model || "gpt-5.5"),
215
+ modelReasoningEffort: String(agent.codex?.modelReasoningEffort || "high"),
214
216
  },
215
217
  claude: {
216
218
  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.71",
3
+ "version": "0.1.72",
4
4
  "type": "module",
5
5
  "description": "Sellable MCP server for Claude Code and Codex campaign workflows",
6
6
  "main": "dist/index.js",
@@ -0,0 +1,9 @@
1
+ {
2
+ "parallelMode": "wide",
3
+ "agentCount": 6,
4
+ "maxToolCallsPerAgent": 2,
5
+ "senderMaxAgents": 2,
6
+ "senderMaxToolCallsPerAgent": 3,
7
+ "progressMode": true,
8
+ "debugMode": true
9
+ }