@kyo-so/cli 0.7.0 → 0.8.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/.agents/skills/kyoso-review/SKILL.md +13 -4
- package/CHANGELOG.md +24 -0
- package/README.ja.md +12 -2
- package/README.md +12 -2
- package/README.zh-CN.md +12 -2
- package/dist/bin/kyoso.js +1181 -474
- package/dist/config/configOverrides.d.ts +2 -0
- package/dist/config/projectScope.d.ts +2 -0
- package/dist/core/constants.d.ts +1 -1
- package/dist/core/runReview.d.ts +1 -0
- package/dist/index.js +1181 -481
- package/package.json +2 -2
|
@@ -6,6 +6,8 @@ type Violation = {
|
|
|
6
6
|
path: string;
|
|
7
7
|
reason?: string;
|
|
8
8
|
};
|
|
9
|
+
export declare const kyosoConfigOverridePaths: readonly ["agents.codex.enabled", "agents.codex.model", "agents.codex.effort", "agents.codex.role", "agents.codex.timeoutMs", "agents.claude.enabled", "agents.claude.model", "agents.claude.effort", "agents.claude.role", "agents.claude.timeoutMs", "verification.enabled", "verification.maxFindings", "verification.timeoutMs", "judge.mode", "judge.provider", "judge.timeoutMs"];
|
|
10
|
+
export declare function isAllowedConfigOverridePath(path: string[]): boolean;
|
|
9
11
|
export declare function mergeProjectTomlConfig(baseConfig: unknown, projectConfig: unknown, options: ProjectScopeOptions): unknown;
|
|
10
12
|
export declare function collectProjectScopeViolations(config: unknown): Violation[];
|
|
11
13
|
export declare function flattenLeaves(value: unknown, path?: string[]): Array<{
|
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.8.0";
|
package/dist/core/runReview.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ import type { AcpAgentManager } from "../acp/AcpAgentManager.js";
|
|
|
4
4
|
import type { KyosoResult, KyosoReviewRequest, NetworkMode, ReviewTool } from "./types.js";
|
|
5
5
|
export type RunReviewOptions = LoadConfigOptions & {
|
|
6
6
|
config?: KyosoConfig;
|
|
7
|
+
configOverrides?: string[];
|
|
7
8
|
configHash?: string;
|
|
8
9
|
agentManager?: AcpAgentManager;
|
|
9
10
|
env?: NodeJS.ProcessEnv;
|