@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.
- package/bin/tcb.js +2 -1
- package/cloudbaserc.json +12 -2
- package/dist/standalone/cli.js +154 -46
- package/lib/commands/account/login.js +2 -6
- package/lib/commands/ai/index.js +2 -2
- package/lib/commands/pull/pull.js +9 -5
- package/lib/help.js +5 -17
- package/lib/utils/ai/banner.js +6 -3
- package/lib/utils/ai/config.js +16 -2
- package/lib/utils/ai/const.js +15 -2
- package/lib/utils/ai/router.js +52 -1
- package/lib/utils/ai/setup.js +45 -2
- package/package.json +2 -2
- package/specs/codebuddy-integration/design.md +152 -0
- package/specs/codebuddy-integration/requirements.md +53 -0
- package/specs/codebuddy-integration/tasks.md +159 -0
- package/types/commands/pull/pull.d.ts +1 -1
- package/types/utils/ai/config.d.ts +7 -3
- package/types/utils/ai/const.d.ts +39 -0
- package/types/utils/ai/router.d.ts +3 -0
- package/types/utils/ai/setup.d.ts +1 -0
|
@@ -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;
|