@kyo-so/cli 0.6.0 → 0.7.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.
@@ -20,6 +20,7 @@ export declare const kyosoConfigSchema: z.ZodObject<{
20
20
  command: z.ZodString;
21
21
  args: z.ZodDefault<z.ZodArray<z.ZodString>>;
22
22
  model: z.ZodOptional<z.ZodString>;
23
+ effort: z.ZodOptional<z.ZodString>;
23
24
  role: z.ZodEnum<{
24
25
  implementation_reviewer: "implementation_reviewer";
25
26
  architecture_security_reviewer: "architecture_security_reviewer";
@@ -41,6 +42,7 @@ export declare const kyosoConfigSchema: z.ZodObject<{
41
42
  command: z.ZodString;
42
43
  args: z.ZodDefault<z.ZodArray<z.ZodString>>;
43
44
  model: z.ZodOptional<z.ZodString>;
45
+ effort: z.ZodOptional<z.ZodString>;
44
46
  role: z.ZodEnum<{
45
47
  implementation_reviewer: "implementation_reviewer";
46
48
  architecture_security_reviewer: "architecture_security_reviewer";
@@ -4,4 +4,4 @@ export declare const DEFAULT_MAX_DIFF_BYTES = 300000;
4
4
  export declare const RAW_OUTPUT_MAX_CHARS = 16384;
5
5
  export declare const TRACE_DIR = ".kyoso/traces";
6
6
  export declare const KYOSO_CHILD_AGENT = "KYOSO_CHILD_AGENT";
7
- export declare const KYOSO_VERSION = "0.6.0";
7
+ export declare const KYOSO_VERSION = "0.7.1";
@@ -123,6 +123,7 @@ export type AgentRunResult = {
123
123
  message: string;
124
124
  detail?: string;
125
125
  };
126
+ warnings?: string[];
126
127
  startedAt: string;
127
128
  completedAt?: string;
128
129
  };