@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.
- package/agents/registry.json +6 -3
- package/dist/index-dev.js +0 -0
- package/dist/index.js +0 -0
- package/dist/tools/prompts.d.ts +2 -0
- package/dist/tools/prompts.js +2 -0
- package/package.json +1 -1
- package/skills/research/config.json +9 -0
package/agents/registry.json
CHANGED
|
@@ -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
|
-
"
|
|
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
|
-
"
|
|
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
|
-
"
|
|
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
|
package/dist/tools/prompts.d.ts
CHANGED
package/dist/tools/prompts.js
CHANGED
|
@@ -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