bopodev 0.1.29 → 0.1.30
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/dist/index.js +4 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1144,7 +1144,7 @@ function parseSeedResult(stdout) {
|
|
|
1144
1144
|
};
|
|
1145
1145
|
}
|
|
1146
1146
|
function parseAgentProvider(value) {
|
|
1147
|
-
if (value === "codex" || value === "claude_code" || value === "gemini_cli" || value === "opencode" || value === "openai_api" || value === "anthropic_api" || value === "shell") {
|
|
1147
|
+
if (value === "codex" || value === "claude_code" || value === "gemini_cli" || value === "opencode" || value === "openai_api" || value === "anthropic_api" || value === "openclaw_gateway" || value === "shell") {
|
|
1148
1148
|
return value;
|
|
1149
1149
|
}
|
|
1150
1150
|
return null;
|
|
@@ -1168,6 +1168,9 @@ function formatAgentProvider(provider) {
|
|
|
1168
1168
|
if (provider === "anthropic_api") {
|
|
1169
1169
|
return "Anthropic API (direct)";
|
|
1170
1170
|
}
|
|
1171
|
+
if (provider === "openclaw_gateway") {
|
|
1172
|
+
return "OpenClaw Gateway";
|
|
1173
|
+
}
|
|
1171
1174
|
return "Shell Runtime";
|
|
1172
1175
|
}
|
|
1173
1176
|
async function fileExists2(path) {
|