@kyo-so/cli 0.3.0 → 0.4.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/dist/bin/kyoso.js +4 -4
- package/dist/core/constants.d.ts +1 -1
- package/dist/index.js +3 -3
- package/package.json +9 -1
package/dist/bin/kyoso.js
CHANGED
|
@@ -48,7 +48,7 @@ var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
|
48
48
|
|
|
49
49
|
// node_modules/typescript/lib/typescript.js
|
|
50
50
|
var require_typescript = __commonJS((exports, module) => {
|
|
51
|
-
var __dirname = "/
|
|
51
|
+
var __dirname = "/home/runner/work/kyoso/kyoso/node_modules/typescript/lib", __filename = "/home/runner/work/kyoso/kyoso/node_modules/typescript/lib/typescript.js";
|
|
52
52
|
/*! *****************************************************************************
|
|
53
53
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
54
54
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
@@ -169622,7 +169622,7 @@ var defaultConfig = {
|
|
|
169622
169622
|
enabled: true,
|
|
169623
169623
|
type: "acp",
|
|
169624
169624
|
command: "npx",
|
|
169625
|
-
args: ["-y", "@agentclientprotocol/codex-acp"],
|
|
169625
|
+
args: ["-y", "@agentclientprotocol/codex-acp@1.1.0"],
|
|
169626
169626
|
role: "implementation_reviewer",
|
|
169627
169627
|
timeoutMs: 120000,
|
|
169628
169628
|
env: {
|
|
@@ -169646,7 +169646,7 @@ var defaultConfig = {
|
|
|
169646
169646
|
enabled: true,
|
|
169647
169647
|
type: "acp",
|
|
169648
169648
|
command: "npx",
|
|
169649
|
-
args: ["-y", "@agentclientprotocol/claude-agent-acp"],
|
|
169649
|
+
args: ["-y", "@agentclientprotocol/claude-agent-acp@0.57.0"],
|
|
169650
169650
|
role: "architecture_security_reviewer",
|
|
169651
169651
|
timeoutMs: 240000,
|
|
169652
169652
|
env: {
|
|
@@ -184297,7 +184297,7 @@ var REDACTION = "[KYOSO_REDACTED]";
|
|
|
184297
184297
|
var DEFAULT_AGENT_TIMEOUT_MS = 120000;
|
|
184298
184298
|
var RAW_OUTPUT_MAX_CHARS = 16384;
|
|
184299
184299
|
var KYOSO_CHILD_AGENT = "KYOSO_CHILD_AGENT";
|
|
184300
|
-
var KYOSO_VERSION = "0.
|
|
184300
|
+
var KYOSO_VERSION = "0.4.0";
|
|
184301
184301
|
|
|
184302
184302
|
// src/security/sanitizeText.ts
|
|
184303
184303
|
var SENSITIVE_TEXT_PATTERNS = [
|
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.4.0";
|
package/dist/index.js
CHANGED
|
@@ -47,7 +47,7 @@ var __require = /* @__PURE__ */ createRequire(import.meta.url);
|
|
|
47
47
|
|
|
48
48
|
// node_modules/typescript/lib/typescript.js
|
|
49
49
|
var require_typescript = __commonJS((exports, module) => {
|
|
50
|
-
var __dirname = "/
|
|
50
|
+
var __dirname = "/home/runner/work/kyoso/kyoso/node_modules/typescript/lib", __filename = "/home/runner/work/kyoso/kyoso/node_modules/typescript/lib/typescript.js";
|
|
51
51
|
/*! *****************************************************************************
|
|
52
52
|
Copyright (c) Microsoft Corporation. All rights reserved.
|
|
53
53
|
Licensed under the Apache License, Version 2.0 (the "License"); you may not use
|
|
@@ -183872,7 +183872,7 @@ var defaultConfig = {
|
|
|
183872
183872
|
enabled: true,
|
|
183873
183873
|
type: "acp",
|
|
183874
183874
|
command: "npx",
|
|
183875
|
-
args: ["-y", "@agentclientprotocol/codex-acp"],
|
|
183875
|
+
args: ["-y", "@agentclientprotocol/codex-acp@1.1.0"],
|
|
183876
183876
|
role: "implementation_reviewer",
|
|
183877
183877
|
timeoutMs: 120000,
|
|
183878
183878
|
env: {
|
|
@@ -183896,7 +183896,7 @@ var defaultConfig = {
|
|
|
183896
183896
|
enabled: true,
|
|
183897
183897
|
type: "acp",
|
|
183898
183898
|
command: "npx",
|
|
183899
|
-
args: ["-y", "@agentclientprotocol/claude-agent-acp"],
|
|
183899
|
+
args: ["-y", "@agentclientprotocol/claude-agent-acp@0.57.0"],
|
|
183900
183900
|
role: "architecture_security_reviewer",
|
|
183901
183901
|
timeoutMs: 240000,
|
|
183902
183902
|
env: {
|
package/package.json
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kyo-so/cli",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.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
|
+
"repository": {
|
|
7
|
+
"type": "git",
|
|
8
|
+
"url": "git+https://github.com/hokupod/kyoso.git"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://github.com/hokupod/kyoso#readme",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/hokupod/kyoso/issues"
|
|
13
|
+
},
|
|
6
14
|
"type": "module",
|
|
7
15
|
"engines": {
|
|
8
16
|
"node": ">=20"
|