@kyo-so/cli 0.9.0 → 0.9.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 +30 -0
- package/README.ja.md +56 -19
- package/README.md +56 -19
- package/README.zh-CN.md +56 -19
- package/dist/bin/kyoso.js +1585 -1216
- package/dist/cli/pluginRuntimeContract.d.ts +4 -4
- package/dist/core/constants.d.ts +1 -1
- package/dist/index.js +2 -2
- package/package.json +3 -3
|
@@ -10,9 +10,9 @@ export declare const PLUGIN_RUNTIME_COMPATIBILITY_SCHEMA_VERSION = 1;
|
|
|
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.
|
|
13
|
+
readonly pluginVersion: "0.3.0";
|
|
14
14
|
readonly mcpCommand: "npx";
|
|
15
|
-
readonly mcpPackagePin: "@kyo-so/cli@0.
|
|
15
|
+
readonly mcpPackagePin: "@kyo-so/cli@0.9.0";
|
|
16
16
|
};
|
|
17
17
|
readonly marketplace: {
|
|
18
18
|
readonly name: "kyoso";
|
|
@@ -129,9 +129,9 @@ export declare const pluginRuntimeContract: {
|
|
|
129
129
|
readonly pluginListTopLevelKeys: readonly ["installed", "available"];
|
|
130
130
|
readonly expectedContract: {
|
|
131
131
|
readonly distribution: {
|
|
132
|
-
readonly pluginVersion: "0.
|
|
132
|
+
readonly pluginVersion: "0.3.0";
|
|
133
133
|
readonly mcpCommand: "npx";
|
|
134
|
-
readonly mcpPackagePin: "@kyo-so/cli@0.
|
|
134
|
+
readonly mcpPackagePin: "@kyo-so/cli@0.9.0";
|
|
135
135
|
};
|
|
136
136
|
readonly marketplace: {
|
|
137
137
|
readonly name: "kyoso";
|
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.9.
|
|
7
|
+
export declare const KYOSO_VERSION = "0.9.1";
|
package/dist/index.js
CHANGED
|
@@ -183953,7 +183953,7 @@ var defaultConfig = {
|
|
|
183953
183953
|
enabled: true,
|
|
183954
183954
|
type: "acp",
|
|
183955
183955
|
command: "npx",
|
|
183956
|
-
args: ["-y", "@agentclientprotocol/codex-acp@1.1.
|
|
183956
|
+
args: ["-y", "@agentclientprotocol/codex-acp@1.1.2"],
|
|
183957
183957
|
role: "implementation_reviewer",
|
|
183958
183958
|
timeoutMs: 120000,
|
|
183959
183959
|
env: {
|
|
@@ -183977,7 +183977,7 @@ var defaultConfig = {
|
|
|
183977
183977
|
enabled: true,
|
|
183978
183978
|
type: "acp",
|
|
183979
183979
|
command: "npx",
|
|
183980
|
-
args: ["-y", "@agentclientprotocol/claude-agent-acp@0.
|
|
183980
|
+
args: ["-y", "@agentclientprotocol/claude-agent-acp@0.58.1"],
|
|
183981
183981
|
role: "architecture_security_reviewer",
|
|
183982
183982
|
timeoutMs: 300000,
|
|
183983
183983
|
env: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kyo-so/cli",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
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": {
|
|
@@ -55,13 +55,13 @@
|
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"@agentclientprotocol/sdk": "1.2.1",
|
|
58
|
-
"@modelcontextprotocol/server": "2.0.0-beta.
|
|
58
|
+
"@modelcontextprotocol/server": "2.0.0-beta.3",
|
|
59
59
|
"smol-toml": "1.7.0",
|
|
60
60
|
"typescript": "6.0.3",
|
|
61
61
|
"zod": "4.4.3"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
64
|
"@types/bun": "1.3.14",
|
|
65
|
-
"prettier": "3.9.
|
|
65
|
+
"prettier": "3.9.5"
|
|
66
66
|
}
|
|
67
67
|
}
|