@kyo-so/cli 0.15.2 → 0.16.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.
@@ -49,9 +49,11 @@ export declare const kyosoReviewRequestSchema: z.ZodObject<{
49
49
  unrestricted: "unrestricted";
50
50
  }>>;
51
51
  maxAgentTimeoutMs: z.ZodOptional<z.ZodNumber>;
52
+ maxAgentTimeoutS: z.ZodOptional<z.ZodNumber>;
52
53
  reviewBudget: z.ZodOptional<z.ZodObject<{
53
54
  maxModelCalls: z.ZodOptional<z.ZodNumber>;
54
55
  maxTotalWallTimeMs: z.ZodOptional<z.ZodNumber>;
56
+ maxTotalWallTimeS: z.ZodOptional<z.ZodNumber>;
55
57
  maxAgentOutputBytes: z.ZodOptional<z.ZodNumber>;
56
58
  maxFindingsPerAgent: z.ZodOptional<z.ZodNumber>;
57
59
  skipOptionalPhasesWhenTokenUsageUnknown: z.ZodOptional<z.ZodBoolean>;
@@ -0,0 +1,22 @@
1
+ export type TimeUnitConstraints = {
2
+ allowZero?: boolean;
3
+ minimumMilliseconds?: number;
4
+ };
5
+ export type ResolvedTimeUnitPair = {
6
+ milliseconds: number;
7
+ source: "milliseconds" | "seconds";
8
+ sourceField: string;
9
+ };
10
+ export declare class TimeUnitValidationError extends Error {
11
+ readonly field: string;
12
+ constructor(field: string, message: string);
13
+ }
14
+ export declare function validateMilliseconds(value: unknown, field: string, constraints?: TimeUnitConstraints): number;
15
+ export declare function secondsToMilliseconds(value: unknown, field: string, constraints?: TimeUnitConstraints): number;
16
+ export declare function resolveTimeUnitPair(input: {
17
+ milliseconds?: unknown;
18
+ seconds?: unknown;
19
+ }, fields: {
20
+ milliseconds: string;
21
+ seconds: string;
22
+ }, constraints?: TimeUnitConstraints): ResolvedTimeUnitPair | undefined;
@@ -17,7 +17,7 @@ defaultMode = "model_only"
17
17
  # Experimental OpenRouter transport retry policy. Omit every field to preserve
18
18
  # the installed Codex runtime defaults; 0 explicitly disables a retry class.
19
19
  # [agents.codex.openRouter]
20
- # streamIdleTimeoutMs = 90000
20
+ # streamIdleTimeoutS = 90
21
21
  # streamMaxRetries = 3
22
22
  # requestMaxRetries = 2
23
23
  #
@@ -29,4 +29,4 @@ defaultMode = "model_only"
29
29
  [agents.claude]
30
30
  # Omit model to use the Claude adapter default.
31
31
  # model = "claude-sonnet-5"
32
- timeoutMs = 300000
32
+ timeoutS = 300
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kyo-so/cli",
3
- "version": "0.15.2",
3
+ "version": "0.16.0",
4
4
  "description": "Kyo-so: MCP-native, ACP-powered multi-agent review gates for AI coding workflows.",
5
5
  "license": "AGPL-3.0-or-later",
6
6
  "repository": {
@@ -53,6 +53,7 @@
53
53
  "plugin:runtime:migrate": "node scripts/plugin-runtime-contract-migrate.mjs",
54
54
  "plugin:runtime:verify": "node scripts/verify-plugin-runtime.mjs",
55
55
  "plugin:promote": "node scripts/plugin-promote.mjs",
56
+ "plugin:promotion:reconcile": "node scripts/plugin-promotion-issues.mjs",
56
57
  "skill:runtime:verify": "node scripts/verify-skill-runtime.mjs",
57
58
  "audit:runtime:verify": "node scripts/verify-audit-runtime.mjs",
58
59
  "audit:budget-report": "node scripts/review-budget-report.mjs",