@kodax-ai/kodax 0.7.48 → 0.7.50
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 +1773 -1720
- package/README.md +91 -35
- package/README_CN.md +70 -23
- package/dist/builtin/code-review/SKILL.md +1 -1
- package/dist/chunks/argument-completer-3WX5B42G.js +2 -0
- package/dist/chunks/chunk-5UJQ2GKJ.js +574 -0
- package/dist/chunks/chunk-HR64F32V.js +2 -0
- package/dist/chunks/chunk-MFOMFMSK.js +1056 -0
- package/dist/chunks/{chunk-DEODZG6Q.js → chunk-SK4HOYT2.js} +1 -1
- package/dist/chunks/chunk-UB5IAZHF.js +476 -0
- package/dist/chunks/chunk-XZY4CIDV.js +31 -0
- package/dist/chunks/chunk-YJLRBIEW.js +301 -0
- package/dist/chunks/{compaction-config-YWCHOP2U.js → compaction-config-DDJSQ4OT.js} +1 -1
- package/dist/chunks/{construction-bootstrap-AIWATBWW.js → construction-bootstrap-4QNM2BVM.js} +1 -1
- package/dist/chunks/{dist-IDNOAB4M.js → dist-OJSNNI7P.js} +1 -1
- package/dist/chunks/dist-T256OSDI.js +2 -0
- package/dist/chunks/{utils-OG57XTPC.js → utils-JHIEOX6Z.js} +1 -1
- package/dist/index.d.ts +11 -11
- package/dist/index.js +2 -2
- package/dist/kodax_cli.js +1406 -892
- package/dist/provider-capabilities.json +193 -190
- package/dist/sdk-agent.d.ts +213 -103
- package/dist/sdk-agent.js +1 -1
- package/dist/sdk-coding.d.ts +644 -33
- 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.js +1 -1
- package/dist/sdk-repl.d.ts +36 -13
- package/dist/sdk-repl.js +2 -2
- package/dist/sdk-session.d.ts +32 -5
- 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-DNO2-ycp.d.ts → bash-prefix-extractor.d-B0CIb0N3.d.ts} +137 -23
- package/dist/types-chunks/{file-tracker.d-D7L_SbRm.d.ts → capsule.d-CwBEm6M-.d.ts} +173 -5
- package/dist/types-chunks/{types.d-BCnbYG_A.d.ts → process.d-BbiXD24v.d.ts} +502 -4
- package/dist/types-chunks/{resolver.d-DkgJlEzr.d.ts → resolver.d-CQfaJbht.d.ts} +24 -6
- package/dist/types-chunks/{storage.d-B1Jk6ryM.d.ts → storage.d-J2GqOgaX.d.ts} +4 -1
- 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-Dgy5SVrq.d.ts → utils.d-D_-jrRku.d.ts} +44 -8
- package/package.json +1 -1
- package/dist/chunks/chunk-66B6ZOU7.js +0 -31
- package/dist/chunks/chunk-6Z75SHX3.js +0 -2
- package/dist/chunks/chunk-EP46H5P3.js +0 -415
- package/dist/chunks/chunk-LNJNRREL.js +0 -903
- package/dist/chunks/chunk-UHAP234X.js +0 -567
- package/dist/chunks/dist-4WABQRJU.js +0 -2
- 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
|
+
}
|