@sellable/install 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/bin/sellable-install.mjs +2 -1
- package/package.json +1 -1
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/bin/sellable-install.mjs
CHANGED
|
@@ -1175,7 +1175,8 @@ function generateCodexAgentToml(agent) {
|
|
|
1175
1175
|
const codex = agent.codex;
|
|
1176
1176
|
return `name = ${quoteToml(agent.name)}
|
|
1177
1177
|
description = ${quoteToml(codex.description)}
|
|
1178
|
-
|
|
1178
|
+
model = ${quoteToml(codex.model || "gpt-5.5")}
|
|
1179
|
+
model_reasoning_effort = ${quoteToml(codex.modelReasoningEffort || "high")}
|
|
1179
1180
|
sandbox_mode = ${quoteToml(codex.sandboxMode || "read-only")}
|
|
1180
1181
|
nickname_candidates = ${tomlArray(codex.nicknameCandidates || [agent.displayName])}
|
|
1181
1182
|
developer_instructions = ${tomlMultilineString(agent.prompt)}
|