@kyo-so/cli 0.13.0 → 0.13.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 +15 -0
- package/dist/bin/kyoso.js +11717 -11326
- package/dist/cli/pluginRuntimeContract.d.ts +4 -4
- package/dist/core/constants.d.ts +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
|
@@ -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.7.0";
|
|
14
14
|
readonly mcpCommand: "npx";
|
|
15
|
-
readonly mcpPackagePin: "@kyo-so/cli@0.
|
|
15
|
+
readonly mcpPackagePin: "@kyo-so/cli@0.13.0";
|
|
16
16
|
};
|
|
17
17
|
readonly marketplace: {
|
|
18
18
|
readonly name: "kyoso";
|
|
@@ -130,9 +130,9 @@ export declare const pluginRuntimeContract: {
|
|
|
130
130
|
readonly pluginListTopLevelKeys: readonly ["installed", "available"];
|
|
131
131
|
readonly expectedContract: {
|
|
132
132
|
readonly distribution: {
|
|
133
|
-
readonly pluginVersion: "0.
|
|
133
|
+
readonly pluginVersion: "0.7.0";
|
|
134
134
|
readonly mcpCommand: "npx";
|
|
135
|
-
readonly mcpPackagePin: "@kyo-so/cli@0.
|
|
135
|
+
readonly mcpPackagePin: "@kyo-so/cli@0.13.0";
|
|
136
136
|
};
|
|
137
137
|
readonly marketplace: {
|
|
138
138
|
readonly name: "kyoso";
|
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.13.
|
|
10
|
+
export declare const KYOSO_VERSION = "0.13.1";
|
package/dist/index.js
CHANGED
|
@@ -184185,7 +184185,7 @@ var defaultConfig = {
|
|
|
184185
184185
|
enabled: true,
|
|
184186
184186
|
type: "acp",
|
|
184187
184187
|
command: "npx",
|
|
184188
|
-
args: ["-y", "@agentclientprotocol/claude-agent-acp@0.
|
|
184188
|
+
args: ["-y", "@agentclientprotocol/claude-agent-acp@0.59.0"],
|
|
184189
184189
|
role: "architecture_security_reviewer",
|
|
184190
184190
|
timeoutMs: DEFAULT_AGENT_TIMEOUT_MS,
|
|
184191
184191
|
env: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kyo-so/cli",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.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": {
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
61
|
"@agentclientprotocol/sdk": "1.2.1",
|
|
62
|
-
"@modelcontextprotocol/server": "2.0.0-beta.
|
|
62
|
+
"@modelcontextprotocol/server": "2.0.0-beta.4",
|
|
63
63
|
"smol-toml": "1.7.0",
|
|
64
64
|
"typescript": "6.0.3",
|
|
65
65
|
"zod": "4.4.3"
|