@kodax-ai/kodax 0.7.47 → 0.7.49
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 +1741 -1702
- package/README.md +80 -27
- package/README_CN.md +60 -15
- package/dist/builtin/code-review/SKILL.md +1 -1
- package/dist/chunks/argument-completer-GDG5OHN7.js +2 -0
- package/dist/chunks/{chunk-VGRG2F6H.js → chunk-67SWUEEN.js} +424 -276
- package/dist/chunks/chunk-C5PKZX5Z.js +291 -0
- package/dist/chunks/chunk-ISGHUKRY.js +428 -0
- package/dist/chunks/chunk-JTHMWRXM.js +566 -0
- package/dist/chunks/chunk-TYZAH3YP.js +2 -0
- package/dist/chunks/chunk-YACQ4OST.js +31 -0
- package/dist/chunks/{chunk-2SMCCP44.js → chunk-YW4RQV7U.js} +1 -1
- package/dist/chunks/{compaction-config-YU7SI6L6.js → compaction-config-BQBYOWX2.js} +1 -1
- package/dist/chunks/{construction-bootstrap-6UN3OY7X.js → construction-bootstrap-5TFGMSWQ.js} +1 -1
- package/dist/chunks/{dist-IDNOAB4M.js → dist-BL7IBQHD.js} +1 -1
- package/dist/chunks/dist-D7HOETCE.js +2 -0
- package/dist/chunks/{utils-3ISOUEFC.js → utils-XWDT3W5X.js} +1 -1
- package/dist/index.d.ts +13 -13
- package/dist/index.js +5 -5
- package/dist/kodax_cli.js +1337 -888
- package/dist/provider-capabilities.json +193 -190
- package/dist/sdk-agent.d.ts +207 -105
- package/dist/sdk-agent.js +1 -1
- package/dist/sdk-coding.d.ts +569 -37
- package/dist/sdk-coding.js +1 -1
- package/dist/sdk-llm.d.ts +5 -5
- package/dist/sdk-llm.js +1 -1
- package/dist/sdk-mcp.d.ts +3 -3
- package/dist/sdk-mcp.js +1 -1
- package/dist/sdk-repl.d.ts +16 -15
- package/dist/sdk-repl.js +1 -1
- package/dist/sdk-session.d.ts +6 -3
- package/dist/sdk-session.js +1 -1
- package/dist/sdk-skills.js +1 -1
- package/dist/types-chunks/{base.d-BdJKSPO2.d.ts → base.d-C4jYVjJh.d.ts} +2 -1
- package/dist/types-chunks/{bash-prefix-extractor.d-D6hL0Cuv.d.ts → bash-prefix-extractor.d-CI_xcPhn.d.ts} +70 -35
- package/dist/types-chunks/{file-tracker.d-BNTIvsdb.d.ts → capsule.d-DaPuhyyK.d.ts} +170 -5
- package/dist/types-chunks/{config.d-BfJUXxC0.d.ts → config.d-CJy1WENT.d.ts} +17 -7
- package/dist/types-chunks/manager.d-DLmDhX3i.d.ts +696 -0
- package/dist/types-chunks/{resolver.d-DkgJlEzr.d.ts → resolver.d-B_wm409c.d.ts} +2 -2
- package/dist/types-chunks/{storage.d-B1Jk6ryM.d.ts → storage.d-J2GqOgaX.d.ts} +4 -1
- package/dist/types-chunks/{types.d-D2RNa5Y7.d.ts → types.d-BR9oNWup.d.ts} +429 -4
- package/dist/types-chunks/{types.d-B_MIIApc.d.ts → types.d-BnjX2Gn4.d.ts} +6 -1
- package/dist/types-chunks/{types.d-Cf-GCzac.d.ts → types.d-rPRl2LSB.d.ts} +4 -0
- package/dist/types-chunks/{utils.d-umRKgMAu.d.ts → utils.d-BJ_-y8gC.d.ts} +42 -8
- package/package.json +1 -1
- package/dist/chunks/chunk-66B6ZOU7.js +0 -31
- package/dist/chunks/chunk-KRHAO2T3.js +0 -567
- package/dist/chunks/chunk-QZFZIGPF.js +0 -2
- package/dist/chunks/chunk-VX6HN3JP.js +0 -415
- package/dist/chunks/dist-DS2KIZQG.js +0 -2
- package/dist/types-chunks/manager.d-U3UEwY1P.d.ts +0 -385
- package/dist/types-chunks/types.d-C5mHR87z.d.ts +0 -119
|
@@ -1,190 +1,193 @@
|
|
|
1
|
-
{
|
|
2
|
-
"version": 1,
|
|
3
|
-
"updatedAt": "2026-06-
|
|
4
|
-
"providers": {
|
|
5
|
-
"anthropic": {
|
|
6
|
-
"apiKeyEnv": "ANTHROPIC_API_KEY",
|
|
7
|
-
"model": "claude-sonnet-4-6",
|
|
8
|
-
"models": [
|
|
9
|
-
{ "id": "claude-opus-4-6", "displayName": "Opus 4.6", "thinkingBudgetCap": 28000 },
|
|
10
|
-
{ "id": "claude-haiku-4-5", "displayName": "Haiku 4.5", "thinkingBudgetCap": 10000 }
|
|
11
|
-
],
|
|
12
|
-
"reasoningCapability": "native-budget",
|
|
13
|
-
"capabilityProfile": "image-input-native",
|
|
14
|
-
"supportsThinking": true,
|
|
15
|
-
"contextWindow": 200000,
|
|
16
|
-
"maxOutputTokens": 64000,
|
|
17
|
-
"thinkingBudgetCap": 28000,
|
|
18
|
-
"verifyStrategy": "count-tokens"
|
|
19
|
-
},
|
|
20
|
-
"openai": {
|
|
21
|
-
"apiKeyEnv": "OPENAI_API_KEY",
|
|
22
|
-
"model": "gpt-5.3-codex",
|
|
23
|
-
"models": [
|
|
24
|
-
{ "id": "gpt-5.4", "displayName": "GPT-5.4" },
|
|
25
|
-
{ "id": "gpt-5.3-codex-spark", "displayName": "GPT-5.3 Codex Spark" }
|
|
26
|
-
],
|
|
27
|
-
"reasoningCapability": "native-effort",
|
|
28
|
-
"capabilityProfile": "image-input-native",
|
|
29
|
-
"supportsThinking": true,
|
|
30
|
-
"contextWindow": 400000,
|
|
31
|
-
"maxOutputTokens": 32768,
|
|
32
|
-
"verifyStrategy": "models-list"
|
|
33
|
-
},
|
|
34
|
-
"deepseek": {
|
|
35
|
-
"apiKeyEnv": "DEEPSEEK_API_KEY",
|
|
36
|
-
"model": "deepseek-v4-flash",
|
|
37
|
-
"models": [
|
|
38
|
-
{ "id": "deepseek-v4-pro", "displayName": "DeepSeek V4 Pro" }
|
|
39
|
-
],
|
|
40
|
-
"reasoningCapability": "native-effort",
|
|
41
|
-
"capabilityProfile": "image-input-native",
|
|
42
|
-
"supportsThinking": true,
|
|
43
|
-
"contextWindow": 1000000,
|
|
44
|
-
"maxOutputTokens": 64000,
|
|
45
|
-
"verifyStrategy": "models-list"
|
|
46
|
-
},
|
|
47
|
-
"kimi": {
|
|
48
|
-
"apiKeyEnv": "KIMI_API_KEY",
|
|
49
|
-
"model": "kimi-k2.6",
|
|
50
|
-
"models": [
|
|
51
|
-
{ "id": "k2.
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
"
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
"
|
|
63
|
-
"
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
"
|
|
73
|
-
"
|
|
74
|
-
"
|
|
75
|
-
"
|
|
76
|
-
"
|
|
77
|
-
"
|
|
78
|
-
"
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
"
|
|
83
|
-
"
|
|
84
|
-
|
|
85
|
-
{ "id": "glm-5
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
"
|
|
90
|
-
"
|
|
91
|
-
"
|
|
92
|
-
"
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
"
|
|
105
|
-
"
|
|
106
|
-
"
|
|
107
|
-
"
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
"
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
"
|
|
120
|
-
"
|
|
121
|
-
"
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
"
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
"
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
"
|
|
133
|
-
"
|
|
134
|
-
"
|
|
135
|
-
"
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
"
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
"
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
"
|
|
147
|
-
"
|
|
148
|
-
"
|
|
149
|
-
"
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
"
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
{ "id": "
|
|
159
|
-
{ "id": "
|
|
160
|
-
{ "id": "
|
|
161
|
-
{ "id": "
|
|
162
|
-
{ "id": "
|
|
163
|
-
{ "id": "
|
|
164
|
-
{ "id": "
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
"
|
|
170
|
-
"
|
|
171
|
-
"
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
"
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
"
|
|
178
|
-
"
|
|
179
|
-
"
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
"
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
"
|
|
186
|
-
"
|
|
187
|
-
"
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"updatedAt": "2026-06-14",
|
|
4
|
+
"providers": {
|
|
5
|
+
"anthropic": {
|
|
6
|
+
"apiKeyEnv": "ANTHROPIC_API_KEY",
|
|
7
|
+
"model": "claude-sonnet-4-6",
|
|
8
|
+
"models": [
|
|
9
|
+
{ "id": "claude-opus-4-6", "displayName": "Opus 4.6", "thinkingBudgetCap": 28000 },
|
|
10
|
+
{ "id": "claude-haiku-4-5", "displayName": "Haiku 4.5", "thinkingBudgetCap": 10000 }
|
|
11
|
+
],
|
|
12
|
+
"reasoningCapability": "native-budget",
|
|
13
|
+
"capabilityProfile": "image-input-native",
|
|
14
|
+
"supportsThinking": true,
|
|
15
|
+
"contextWindow": 200000,
|
|
16
|
+
"maxOutputTokens": 64000,
|
|
17
|
+
"thinkingBudgetCap": 28000,
|
|
18
|
+
"verifyStrategy": "count-tokens"
|
|
19
|
+
},
|
|
20
|
+
"openai": {
|
|
21
|
+
"apiKeyEnv": "OPENAI_API_KEY",
|
|
22
|
+
"model": "gpt-5.3-codex",
|
|
23
|
+
"models": [
|
|
24
|
+
{ "id": "gpt-5.4", "displayName": "GPT-5.4" },
|
|
25
|
+
{ "id": "gpt-5.3-codex-spark", "displayName": "GPT-5.3 Codex Spark" }
|
|
26
|
+
],
|
|
27
|
+
"reasoningCapability": "native-effort",
|
|
28
|
+
"capabilityProfile": "image-input-native",
|
|
29
|
+
"supportsThinking": true,
|
|
30
|
+
"contextWindow": 400000,
|
|
31
|
+
"maxOutputTokens": 32768,
|
|
32
|
+
"verifyStrategy": "models-list"
|
|
33
|
+
},
|
|
34
|
+
"deepseek": {
|
|
35
|
+
"apiKeyEnv": "DEEPSEEK_API_KEY",
|
|
36
|
+
"model": "deepseek-v4-flash",
|
|
37
|
+
"models": [
|
|
38
|
+
{ "id": "deepseek-v4-pro", "displayName": "DeepSeek V4 Pro" }
|
|
39
|
+
],
|
|
40
|
+
"reasoningCapability": "native-effort",
|
|
41
|
+
"capabilityProfile": "image-input-native",
|
|
42
|
+
"supportsThinking": true,
|
|
43
|
+
"contextWindow": 1000000,
|
|
44
|
+
"maxOutputTokens": 64000,
|
|
45
|
+
"verifyStrategy": "models-list"
|
|
46
|
+
},
|
|
47
|
+
"kimi": {
|
|
48
|
+
"apiKeyEnv": "KIMI_API_KEY",
|
|
49
|
+
"model": "kimi-k2.6",
|
|
50
|
+
"models": [
|
|
51
|
+
{ "id": "kimi-k2.7-code", "displayName": "Kimi K2.7 Code", "contextWindow": 256000 },
|
|
52
|
+
{ "id": "k2.5", "displayName": "K2.5" }
|
|
53
|
+
],
|
|
54
|
+
"reasoningCapability": "native-effort",
|
|
55
|
+
"capabilityProfile": "image-input-native",
|
|
56
|
+
"supportsThinking": true,
|
|
57
|
+
"contextWindow": 256000,
|
|
58
|
+
"maxOutputTokens": 32768,
|
|
59
|
+
"verifyStrategy": "models-list"
|
|
60
|
+
},
|
|
61
|
+
"kimi-code": {
|
|
62
|
+
"apiKeyEnv": "KIMI_CODE_API_KEY",
|
|
63
|
+
"model": "kimi-for-coding",
|
|
64
|
+
"reasoningCapability": "native-budget",
|
|
65
|
+
"capabilityProfile": "image-input-native",
|
|
66
|
+
"supportsThinking": true,
|
|
67
|
+
"contextWindow": 256000,
|
|
68
|
+
"maxOutputTokens": 32000,
|
|
69
|
+
"verifyStrategy": "count-tokens"
|
|
70
|
+
},
|
|
71
|
+
"qwen": {
|
|
72
|
+
"apiKeyEnv": "QWEN_API_KEY",
|
|
73
|
+
"model": "qwen3.5-plus",
|
|
74
|
+
"reasoningCapability": "native-budget",
|
|
75
|
+
"capabilityProfile": "image-input-native",
|
|
76
|
+
"supportsThinking": true,
|
|
77
|
+
"contextWindow": 256000,
|
|
78
|
+
"maxOutputTokens": 32768,
|
|
79
|
+
"verifyStrategy": "models-list"
|
|
80
|
+
},
|
|
81
|
+
"zhipu": {
|
|
82
|
+
"apiKeyEnv": "ZHIPU_API_KEY",
|
|
83
|
+
"model": "glm-5",
|
|
84
|
+
"models": [
|
|
85
|
+
{ "id": "glm-5.2", "displayName": "GLM-5.2", "contextWindow": 1000000, "maxOutputTokens": 131072 },
|
|
86
|
+
{ "id": "glm-5.1", "displayName": "GLM-5.1" },
|
|
87
|
+
{ "id": "glm-5-turbo", "displayName": "GLM-5 Turbo" }
|
|
88
|
+
],
|
|
89
|
+
"reasoningCapability": "native-budget",
|
|
90
|
+
"capabilityProfile": "image-input-native",
|
|
91
|
+
"supportsThinking": true,
|
|
92
|
+
"contextWindow": 200000,
|
|
93
|
+
"maxOutputTokens": 32768,
|
|
94
|
+
"verifyStrategy": "minimal-message"
|
|
95
|
+
},
|
|
96
|
+
"zhipu-coding": {
|
|
97
|
+
"apiKeyEnv": "ZHIPU_CODING_API_KEY",
|
|
98
|
+
"model": "glm-5",
|
|
99
|
+
"models": [
|
|
100
|
+
{ "id": "glm-5.2", "displayName": "GLM-5.2", "contextWindow": 1000000, "maxOutputTokens": 131072 },
|
|
101
|
+
{ "id": "glm-5.1", "displayName": "GLM-5.1" },
|
|
102
|
+
{ "id": "glm-5-turbo", "displayName": "GLM-5 Turbo" }
|
|
103
|
+
],
|
|
104
|
+
"reasoningCapability": "native-budget",
|
|
105
|
+
"capabilityProfile": "image-input-native",
|
|
106
|
+
"supportsThinking": true,
|
|
107
|
+
"contextWindow": 200000,
|
|
108
|
+
"maxOutputTokens": 16000,
|
|
109
|
+
"thinkingBudgetCap": 16000,
|
|
110
|
+
"verifyStrategy": "count-tokens"
|
|
111
|
+
},
|
|
112
|
+
"minimax-coding": {
|
|
113
|
+
"apiKeyEnv": "MINIMAX_CODING_API_KEY",
|
|
114
|
+
"model": "MiniMax-M2.7",
|
|
115
|
+
"models": [
|
|
116
|
+
{ "id": "MiniMax-M3", "displayName": "MiniMax M3 (Frontier Coding, 1M ctx)", "contextWindow": 1000000 },
|
|
117
|
+
{ "id": "MiniMax-M2.7-highspeed", "displayName": "MiniMax M2.7 Highspeed (higher-tier plan)" }
|
|
118
|
+
],
|
|
119
|
+
"reasoningCapability": "native-budget",
|
|
120
|
+
"capabilityProfile": "image-input-native",
|
|
121
|
+
"supportsThinking": true,
|
|
122
|
+
"contextWindow": 204800,
|
|
123
|
+
"maxOutputTokens": 32000,
|
|
124
|
+
"verifyStrategy": "count-tokens"
|
|
125
|
+
},
|
|
126
|
+
"mimo-coding": {
|
|
127
|
+
"apiKeyEnv": "MIMO_CODING_API_KEY",
|
|
128
|
+
"model": "mimo-v2.5-pro",
|
|
129
|
+
"models": [
|
|
130
|
+
{ "id": "mimo-v2.5", "displayName": "MiMo V2.5" }
|
|
131
|
+
],
|
|
132
|
+
"reasoningCapability": "native-budget",
|
|
133
|
+
"capabilityProfile": "image-input-native",
|
|
134
|
+
"supportsThinking": true,
|
|
135
|
+
"contextWindow": 1000000,
|
|
136
|
+
"maxOutputTokens": 32000,
|
|
137
|
+
"thinkingBudgetCap": 16000,
|
|
138
|
+
"verifyStrategy": "minimal-message"
|
|
139
|
+
},
|
|
140
|
+
"mimo": {
|
|
141
|
+
"apiKeyEnv": "MIMO_API_KEY",
|
|
142
|
+
"model": "mimo-v2.5-pro",
|
|
143
|
+
"models": [
|
|
144
|
+
{ "id": "mimo-v2.5", "displayName": "MiMo V2.5" }
|
|
145
|
+
],
|
|
146
|
+
"reasoningCapability": "native-budget",
|
|
147
|
+
"capabilityProfile": "image-input-native",
|
|
148
|
+
"supportsThinking": true,
|
|
149
|
+
"contextWindow": 1000000,
|
|
150
|
+
"maxOutputTokens": 32000,
|
|
151
|
+
"thinkingBudgetCap": 16000,
|
|
152
|
+
"verifyStrategy": "minimal-message"
|
|
153
|
+
},
|
|
154
|
+
"ark-coding": {
|
|
155
|
+
"apiKeyEnv": "ARK_CODING_API_KEY",
|
|
156
|
+
"model": "glm-5.1",
|
|
157
|
+
"models": [
|
|
158
|
+
{ "id": "glm-4.7", "displayName": "GLM-4.7" },
|
|
159
|
+
{ "id": "kimi-k2.6", "displayName": "Kimi K2.6", "contextWindow": 256000 },
|
|
160
|
+
{ "id": "MiniMax-M3", "displayName": "MiniMax M3 (Frontier Coding, 1M ctx)", "contextWindow": 1000000 },
|
|
161
|
+
{ "id": "MiniMax-M2.7", "displayName": "MiniMax M2.7", "contextWindow": 204800 },
|
|
162
|
+
{ "id": "deepseek-v3.2", "displayName": "DeepSeek V3.2", "contextWindow": 128000 },
|
|
163
|
+
{ "id": "deepseek-v4-pro", "displayName": "DeepSeek V4 Pro", "contextWindow": 1000000 },
|
|
164
|
+
{ "id": "deepseek-v4-flash", "displayName": "DeepSeek V4 Flash", "contextWindow": 1000000 },
|
|
165
|
+
{ "id": "doubao-seed-2.0-code", "displayName": "Doubao Seed 2.0 Code", "contextWindow": 256000 },
|
|
166
|
+
{ "id": "doubao-seed-2.0-pro", "displayName": "Doubao Seed 2.0 Pro", "contextWindow": 256000 },
|
|
167
|
+
{ "id": "doubao-seed-2.0-lite", "displayName": "Doubao Seed 2.0 Lite", "contextWindow": 256000 }
|
|
168
|
+
],
|
|
169
|
+
"reasoningCapability": "native-budget",
|
|
170
|
+
"capabilityProfile": "image-input-native",
|
|
171
|
+
"supportsThinking": true,
|
|
172
|
+
"contextWindow": 200000,
|
|
173
|
+
"maxOutputTokens": 32000,
|
|
174
|
+
"verifyStrategy": "count-tokens"
|
|
175
|
+
},
|
|
176
|
+
"gemini-cli": {
|
|
177
|
+
"apiKeyEnv": "GEMINI_API_KEY",
|
|
178
|
+
"cliBridge": true,
|
|
179
|
+
"reasoningCapability": "prompt-only",
|
|
180
|
+
"capabilityProfile": "image-input-cli-bridge",
|
|
181
|
+
"supportsThinking": false,
|
|
182
|
+
"verifyStrategy": "unsupported"
|
|
183
|
+
},
|
|
184
|
+
"codex-cli": {
|
|
185
|
+
"apiKeyEnv": "OPENAI_API_KEY",
|
|
186
|
+
"cliBridge": true,
|
|
187
|
+
"reasoningCapability": "prompt-only",
|
|
188
|
+
"capabilityProfile": "cli-bridge",
|
|
189
|
+
"supportsThinking": false,
|
|
190
|
+
"verifyStrategy": "unsupported"
|
|
191
|
+
}
|
|
192
|
+
}
|
|
193
|
+
}
|