bopodev 0.1.13 → 0.1.15
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/LICENSE +1 -1
- package/dist/index.js +5 -1
- package/package.json +1 -1
package/LICENSE
CHANGED
package/dist/index.js
CHANGED
|
@@ -309,6 +309,7 @@ var DEFAULT_ENV_TEMPLATE = "NEXT_PUBLIC_API_URL=http://localhost:4020\n";
|
|
|
309
309
|
var CLI_ONBOARD_VISIBLE_PROVIDERS = [
|
|
310
310
|
{ value: "codex", label: "Codex" },
|
|
311
311
|
{ value: "claude_code", label: "Claude Code" },
|
|
312
|
+
{ value: "gemini_cli", label: "Gemini" },
|
|
312
313
|
{ value: "opencode", label: "OpenCode" }
|
|
313
314
|
];
|
|
314
315
|
var defaultDeps = {
|
|
@@ -564,7 +565,7 @@ function parseSeedResult(stdout) {
|
|
|
564
565
|
};
|
|
565
566
|
}
|
|
566
567
|
function parseAgentProvider(value) {
|
|
567
|
-
if (value === "codex" || value === "claude_code" || value === "opencode" || value === "openai_api" || value === "anthropic_api" || value === "shell") {
|
|
568
|
+
if (value === "codex" || value === "claude_code" || value === "gemini_cli" || value === "opencode" || value === "openai_api" || value === "anthropic_api" || value === "shell") {
|
|
568
569
|
return value;
|
|
569
570
|
}
|
|
570
571
|
return null;
|
|
@@ -576,6 +577,9 @@ function formatAgentProvider(provider) {
|
|
|
576
577
|
if (provider === "claude_code") {
|
|
577
578
|
return "Claude Code";
|
|
578
579
|
}
|
|
580
|
+
if (provider === "gemini_cli") {
|
|
581
|
+
return "Gemini";
|
|
582
|
+
}
|
|
579
583
|
if (provider === "opencode") {
|
|
580
584
|
return "OpenCode";
|
|
581
585
|
}
|