@kyo-so/cli 0.16.6 → 0.16.8
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 +23 -0
- package/README.ja.md +1 -1
- package/README.md +1 -1
- package/README.zh-CN.md +1 -1
- package/dist/bin/kyoso.js +298 -347
- package/dist/cli/pluginRuntimeContract.d.ts +4 -4
- package/dist/core/constants.d.ts +1 -1
- package/dist/index.js +295 -344
- package/package.json +2 -2
|
@@ -10,9 +10,9 @@ export declare const PLUGIN_RUNTIME_COMPATIBILITY_SCHEMA_VERSION = 2;
|
|
|
10
10
|
export declare const MINIMUM_SUPPORTED_CODEX_VERSION = "0.144.0-alpha.4";
|
|
11
11
|
export declare const PLUGIN_RUNTIME_EXPECTED_CONTRACT: {
|
|
12
12
|
readonly distribution: {
|
|
13
|
-
readonly pluginVersion: "0.7.
|
|
13
|
+
readonly pluginVersion: "0.7.15";
|
|
14
14
|
readonly mcpCommand: "npx";
|
|
15
|
-
readonly mcpPackagePin: "@kyo-so/cli@0.16.
|
|
15
|
+
readonly mcpPackagePin: "@kyo-so/cli@0.16.7";
|
|
16
16
|
readonly mcpExecutable: "kyoso";
|
|
17
17
|
};
|
|
18
18
|
readonly marketplace: {
|
|
@@ -131,9 +131,9 @@ export declare const pluginRuntimeContract: {
|
|
|
131
131
|
readonly pluginListTopLevelKeys: readonly ["installed", "available"];
|
|
132
132
|
readonly expectedContract: {
|
|
133
133
|
readonly distribution: {
|
|
134
|
-
readonly pluginVersion: "0.7.
|
|
134
|
+
readonly pluginVersion: "0.7.15";
|
|
135
135
|
readonly mcpCommand: "npx";
|
|
136
|
-
readonly mcpPackagePin: "@kyo-so/cli@0.16.
|
|
136
|
+
readonly mcpPackagePin: "@kyo-so/cli@0.16.7";
|
|
137
137
|
readonly mcpExecutable: "kyoso";
|
|
138
138
|
};
|
|
139
139
|
readonly marketplace: {
|
package/dist/core/constants.d.ts
CHANGED
|
@@ -7,4 +7,4 @@ export declare const JUDGE_MAX_OUTPUT_TOKENS = 4096;
|
|
|
7
7
|
export declare const RAW_OUTPUT_MAX_CHARS = 16384;
|
|
8
8
|
export declare const TRACE_DIR = ".kyoso/traces";
|
|
9
9
|
export declare const KYOSO_CHILD_AGENT = "KYOSO_CHILD_AGENT";
|
|
10
|
-
export declare const KYOSO_VERSION = "0.16.
|
|
10
|
+
export declare const KYOSO_VERSION = "0.16.8";
|