@kyo-so/cli 0.5.0 → 0.7.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.
@@ -0,0 +1,2 @@
1
+ [agents.codex]
2
+ enabled = false
@@ -0,0 +1,2 @@
1
+ [agents.claude]
2
+ enabled = false
@@ -0,0 +1,11 @@
1
+ [network]
2
+ defaultMode = "model_only"
3
+
4
+ [agents.codex]
5
+ # Omit model to use the user's Codex default from ~/.codex/config.toml.
6
+ # model = "gpt-5.5"
7
+
8
+ [agents.claude]
9
+ # Omit model to use the Claude adapter default.
10
+ # model = "claude-sonnet-5"
11
+ timeoutMs = 300000
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kyo-so/cli",
3
- "version": "0.5.0",
3
+ "version": "0.7.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": {
@@ -49,6 +49,7 @@
49
49
  "dependencies": {
50
50
  "@agentclientprotocol/sdk": "1.1.0",
51
51
  "@modelcontextprotocol/server": "2.0.0-beta.2",
52
+ "smol-toml": "1.7.0",
52
53
  "typescript": "6.0.3",
53
54
  "zod": "4.4.3"
54
55
  },
@@ -1,9 +0,0 @@
1
- import { defineConfig } from "@kyo-so/cli";
2
-
3
- export default defineConfig({
4
- agents: {
5
- codex: {
6
- enabled: false,
7
- },
8
- },
9
- });
@@ -1,9 +0,0 @@
1
- import { defineConfig } from "@kyo-so/cli";
2
-
3
- export default defineConfig({
4
- agents: {
5
- claude: {
6
- enabled: false,
7
- },
8
- },
9
- });
@@ -1,22 +0,0 @@
1
- import { defineConfig } from "@kyo-so/cli";
2
-
3
- export default defineConfig({
4
- network: {
5
- defaultMode: "model_only",
6
- allowUnrestricted: true,
7
- },
8
- agents: {
9
- codex: {
10
- // Omit model to use the user's Codex default from ~/.codex/config.toml.
11
- // model: "gpt-5.5",
12
- },
13
- claude: {
14
- // Omit model to use the Claude adapter default.
15
- // model: "claude-sonnet-5",
16
- timeoutMs: 240_000,
17
- auth: {
18
- preferApiKey: false,
19
- },
20
- },
21
- },
22
- });