bopodev 0.1.13 → 0.1.14

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2026 BopoDev contributors
3
+ Copyright (c) 2026 Bopo
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
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
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bopodev",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "bin": {