@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.
- package/CHANGELOG.md +27 -0
- package/README.ja.md +19 -5
- package/README.md +19 -5
- package/README.zh-CN.md +19 -5
- package/dist/bin/kyoso.js +1081 -459
- package/dist/config/schema.d.ts +2 -0
- package/dist/core/constants.d.ts +1 -1
- package/dist/core/types.d.ts +1 -0
- package/dist/index.js +1085 -463
- package/examples/kyoso.toml +1 -1
- package/package.json +2 -2
package/dist/config/schema.d.ts
CHANGED
|
@@ -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";
|
package/dist/core/constants.d.ts
CHANGED
|
@@ -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.
|
|
7
|
+
export declare const KYOSO_VERSION = "0.7.1";
|