@cloudbase/cli 2.8.28 → 2.9.1

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.
@@ -166,6 +166,26 @@ export declare const CURSOR: {
166
166
  type?: "none";
167
167
  }>;
168
168
  };
169
+ export declare const CODEBUDDY: {
170
+ name: string;
171
+ value: string;
172
+ configSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
173
+ type: z.ZodLiteral<"none">;
174
+ }, "strip", z.ZodTypeAny, {
175
+ type?: "none";
176
+ }, {
177
+ type?: "none";
178
+ }>, z.ZodObject<{
179
+ type: z.ZodLiteral<"custom">;
180
+ apiKey: z.ZodOptional<z.ZodString>;
181
+ }, "strip", z.ZodTypeAny, {
182
+ type?: "custom";
183
+ apiKey?: string;
184
+ }, {
185
+ type?: "custom";
186
+ apiKey?: string;
187
+ }>]>;
188
+ };
169
189
  export declare const NONE: {
170
190
  name: string;
171
191
  value: string;
@@ -325,6 +345,25 @@ export declare const AGENTS: readonly [{
325
345
  }, {
326
346
  type?: "none";
327
347
  }>;
348
+ }, {
349
+ name: string;
350
+ value: string;
351
+ configSchema: z.ZodDiscriminatedUnion<"type", [z.ZodObject<{
352
+ type: z.ZodLiteral<"none">;
353
+ }, "strip", z.ZodTypeAny, {
354
+ type?: "none";
355
+ }, {
356
+ type?: "none";
357
+ }>, z.ZodObject<{
358
+ type: z.ZodLiteral<"custom">;
359
+ apiKey: z.ZodOptional<z.ZodString>;
360
+ }, "strip", z.ZodTypeAny, {
361
+ type?: "custom";
362
+ apiKey?: string;
363
+ }, {
364
+ type?: "custom";
365
+ apiKey?: string;
366
+ }>]>;
328
367
  }, {
329
368
  name: string;
330
369
  value: string;
@@ -47,5 +47,8 @@ export declare class AICommandRouter {
47
47
  private modifyMCPTomlFile;
48
48
  private mergeMcpConfig;
49
49
  private objectToToml;
50
+ private executeCodebuddyAgent;
51
+ private executeNoneCodebuddyAgent;
52
+ private ensureCodebuddy;
50
53
  }
51
54
  export {};
@@ -22,4 +22,5 @@ export declare class AISetupWizard {
22
22
  private configureCursorAgent;
23
23
  private ensureGitignore;
24
24
  private selectCloudBaseProvider;
25
+ private configureCodebuddyAgent;
25
26
  }