@corbat-tech/coco 1.8.0 → 2.0.0

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.d.ts CHANGED
@@ -501,7 +501,14 @@ declare const CocoConfigSchema: z.ZodObject<{
501
501
  gemini: "gemini";
502
502
  kimi: "kimi";
503
503
  lmstudio: "lmstudio";
504
+ deepseek: "deepseek";
505
+ mistral: "mistral";
506
+ codex: "codex";
504
507
  ollama: "ollama";
508
+ groq: "groq";
509
+ openrouter: "openrouter";
510
+ together: "together";
511
+ huggingface: "huggingface";
505
512
  }>>;
506
513
  apiKey: z.ZodOptional<z.ZodString>;
507
514
  model: z.ZodDefault<z.ZodString>;
@@ -608,6 +615,14 @@ declare const CocoConfigSchema: z.ZodObject<{
608
615
  ciCheckTimeoutMs: z.ZodDefault<z.ZodNumber>;
609
616
  ciCheckPollMs: z.ZodDefault<z.ZodNumber>;
610
617
  }, z.core.$strip>>;
618
+ skills: z.ZodOptional<z.ZodObject<{
619
+ enabled: z.ZodDefault<z.ZodBoolean>;
620
+ globalDir: z.ZodOptional<z.ZodString>;
621
+ projectDir: z.ZodOptional<z.ZodString>;
622
+ autoActivate: z.ZodDefault<z.ZodBoolean>;
623
+ maxActiveSkills: z.ZodDefault<z.ZodNumber>;
624
+ disabled: z.ZodDefault<z.ZodArray<z.ZodString>>;
625
+ }, z.core.$strip>>;
611
626
  }, z.core.$strip>;
612
627
  type CocoConfig = z.infer<typeof CocoConfigSchema>;
613
628
 
@@ -3056,7 +3071,7 @@ declare class TaskError extends CocoError {
3056
3071
  /**
3057
3072
  * Supported provider types
3058
3073
  */
3059
- type ProviderType = "anthropic" | "openai" | "codex" | "gemini" | "kimi" | "lmstudio" | "ollama";
3074
+ type ProviderType = "anthropic" | "openai" | "codex" | "gemini" | "kimi" | "lmstudio" | "ollama" | "groq" | "openrouter" | "mistral" | "deepseek" | "together" | "huggingface";
3060
3075
  /**
3061
3076
  * Create a provider by type
3062
3077
  */