opencodekit 0.3.3 → 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.
Files changed (27) hide show
  1. package/dist/index.js +1 -1
  2. package/dist/template/.opencode/agent/vision.md +95 -60
  3. package/dist/template/.opencode/command/accessibility-check.md +66 -0
  4. package/dist/template/.opencode/command/analyze-mockup.md +43 -0
  5. package/dist/template/.opencode/command/design-audit.md +53 -0
  6. package/dist/template/.opencode/command/edit-image.md +40 -0
  7. package/dist/template/.opencode/command/generate-diagram.md +48 -0
  8. package/dist/template/.opencode/command/generate-icon.md +40 -0
  9. package/dist/template/.opencode/command/generate-image.md +27 -0
  10. package/dist/template/.opencode/command/generate-pattern.md +41 -0
  11. package/dist/template/.opencode/command/generate-storyboard.md +41 -0
  12. package/dist/template/.opencode/command/new-feature.md +137 -0
  13. package/dist/template/.opencode/command/research-ui.md +34 -27
  14. package/dist/template/.opencode/command/restore-image.md +39 -0
  15. package/dist/template/.opencode/command/revert-feature.md +127 -0
  16. package/dist/template/.opencode/command/setup-project.md +152 -0
  17. package/dist/template/.opencode/command/ui-review.md +26 -34
  18. package/dist/template/.opencode/memory/project/README.md +28 -0
  19. package/dist/template/.opencode/opencode.json +470 -457
  20. package/dist/template/.opencode/package.json +1 -1
  21. package/dist/template/.opencode/skills/accessibility-audit/SKILL.md +180 -0
  22. package/dist/template/.opencode/skills/design-system-audit/SKILL.md +141 -0
  23. package/dist/template/.opencode/skills/frontend-aesthetics/SKILL.md +40 -65
  24. package/dist/template/.opencode/skills/mockup-to-code/SKILL.md +158 -0
  25. package/dist/template/.opencode/skills/ui-ux-research/SKILL.md +60 -131
  26. package/dist/template/.opencode/skills/visual-analysis/SKILL.md +130 -0
  27. package/package.json +1 -1
@@ -1,459 +1,472 @@
1
1
  {
2
- "$schema": "https://opencode.ai/config.json",
3
- "agent": {
4
- "build": {
5
- "description": "Primary development agent with full codebase access",
6
- "model": "proxypal/gemini-claude-opus-4-5-thinking"
7
- },
8
- "explore": {
9
- "description": "Fast codebase search specialist",
10
- "model": "opencode/grok-code"
11
- },
12
- "general": {
13
- "disable": true
14
- },
15
- "plan": {
16
- "disable": true
17
- },
18
- "planner": {
19
- "description": "Strategic planning agent for architecture and design",
20
- "model": "proxypal/gpt-5.2"
21
- },
22
- "review": {
23
- "description": "Code review, debugging, and security audit specialist",
24
- "model": "proxypal/gpt-5.2"
25
- },
26
- "rush": {
27
- "description": "Fast primary agent for small, well-defined tasks",
28
- "model": "zai-coding-plan/glm-4.6"
29
- },
30
- "scout": {
31
- "description": "External research specialist for library docs and patterns",
32
- "model": "proxypal/gemini-claude-sonnet-4-5"
33
- },
34
- "vision": {
35
- "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
36
- "model": "proxypal/gemini-3-flash-preview"
37
- }
38
- },
39
- "autoupdate": false,
40
- "experimental": {
41
- "batch_tool": true,
42
- "chatMaxRetries": 2,
43
- "primary_tools": ["edit", "write", "bash", "prune"]
44
- },
45
- "formatter": {
46
- "biome": {
47
- "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
48
- "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
49
- },
50
- "java-formatter": {
51
- "command": ["google-java-format", "--replace", "$FILE"],
52
- "environment": {
53
- "JAVA_HOME": "{env:JAVA_HOME}"
54
- },
55
- "extensions": [".java"]
56
- },
57
- "prettier": {
58
- "command": ["npx", "prettier", "--write", "$FILE"],
59
- "extensions": [".html", ".css", ".scss", ".sass", ".md", ".yaml", ".yml"]
60
- }
61
- },
62
- "keybinds": {
63
- "command_list": ";",
64
- "leader": "`",
65
- "session_child_cycle": "ctrl+alt+right",
66
- "session_child_cycle_reverse": "ctrl+alt+left"
67
- },
68
- "mcp": {
69
- "Framelink MCP for Figma": {
70
- "command": [
71
- "npx",
72
- "-y",
73
- "figma-developer-mcp",
74
- "--figma-api-key={env:FIGMA_API_KEY}",
75
- "--stdio"
76
- ],
77
- "enabled": false,
78
- "type": "local"
79
- },
80
- "context7": {
81
- "command": [
82
- "npx",
83
- "-y",
84
- "@upstash/context7-mcp",
85
- "--api-key",
86
- "{env:CONTEXT7_API_KEY}"
87
- ],
88
- "enabled": true,
89
- "type": "local"
90
- },
91
- "gh_grep": {
92
- "enabled": true,
93
- "type": "remote",
94
- "url": "https://mcp.grep.app"
95
- },
96
- "gkg": {
97
- "enabled": true,
98
- "type": "remote",
99
- "url": "http://localhost:27495/mcp"
100
- },
101
- "playwright": {
102
- "command": ["npx", "@playwright/mcp@latest"],
103
- "enabled": false,
104
- "type": "local"
105
- }
106
- },
107
- "model": "proxypal/gemini-claude-opus-4-5-thinking",
108
- "permission": {
109
- "bash": {
110
- "git commit *": "ask",
111
- "git push *": "ask",
112
- "rm *": "ask",
113
- "rm -rf *": "ask"
114
- },
115
- "doom_loop": "ask",
116
- "edit": "allow",
117
- "external_directory": "allow"
118
- },
119
- "plugin": [
120
- "opencode-gemini-auth",
121
- "@tarquinen/opencode-dcp@latest",
122
- "@howaboua/pickle-thinker@0.1.3",
123
- "@franlol/opencode-md-table-formatter@0.0.3"
124
- ],
125
- "provider": {
126
- "github-copilot": {
127
- "models": {
128
- "claude-haiku-4.5": {
129
- "attachment": true,
130
- "options": {
131
- "thinking": {
132
- "budgetTokens": 16000,
133
- "type": "enabled"
134
- }
135
- },
136
- "reasoning": true,
137
- "temperature": true,
138
- "tool_call": true
139
- },
140
- "claude-opus-4.5": {
141
- "attachment": true,
142
- "options": {
143
- "thinking": {
144
- "budgetTokens": 32000,
145
- "type": "enabled"
146
- }
147
- },
148
- "reasoning": true,
149
- "temperature": true,
150
- "tool_call": true
151
- },
152
- "claude-sonnet-4.5": {
153
- "attachment": true,
154
- "options": {
155
- "thinking": {
156
- "budgetTokens": 16000,
157
- "type": "enabled"
158
- }
159
- },
160
- "reasoning": true,
161
- "temperature": true,
162
- "tool_call": true
163
- },
164
- "gpt-5.1": {
165
- "attachment": true,
166
- "options": {
167
- "reasoning": {
168
- "effort": "high"
169
- }
170
- },
171
- "reasoning": true,
172
- "temperature": true,
173
- "tool_call": true
174
- },
175
- "gpt-5.1-codex": {
176
- "attachment": true,
177
- "options": {
178
- "reasoning": {
179
- "effort": "high"
180
- }
181
- },
182
- "reasoning": true,
183
- "temperature": true,
184
- "tool_call": true
185
- }
186
- },
187
- "npm": "@ai-sdk/anthropic"
188
- },
189
- "opencode": {
190
- "models": {
191
- "big-pickle": {
192
- "options": {
193
- "reasoningEffort": "high",
194
- "temperature": 1,
195
- "top_k": 40,
196
- "top_p": 0.95
197
- },
198
- "reasoning": true
199
- }
200
- }
201
- },
202
- "proxypal": {
203
- "models": {
204
- "claude-opus-4-5-20251101": {
205
- "limit": {
206
- "context": 200000,
207
- "output": 64000
208
- },
209
- "name": "Claude Opus 4 5 20251101"
210
- },
211
- "gemini-2.5-computer-use-preview-10-2025": {
212
- "limit": {
213
- "context": 1048576,
214
- "output": 65536
215
- },
216
- "name": "Gemini 2 5 Computer Use Preview 10 2025"
217
- },
218
- "gemini-2.5-flash": {
219
- "limit": {
220
- "context": 1048576,
221
- "output": 65536
222
- },
223
- "name": "Gemini 2 5 Flash"
224
- },
225
- "gemini-2.5-flash-lite": {
226
- "limit": {
227
- "context": 1048576,
228
- "output": 65536
229
- },
230
- "name": "Gemini 2 5 Flash Lite"
231
- },
232
- "gemini-2.5-pro": {
233
- "limit": {
234
- "context": 1048576,
235
- "output": 65536
236
- },
237
- "name": "Gemini 2 5 Pro"
238
- },
239
- "gemini-3-flash-preview": {
240
- "limit": {
241
- "context": 1048576,
242
- "output": 65536
243
- },
244
- "name": "Gemini 3 Flash Preview"
245
- },
246
- "gemini-3-pro-image-preview": {
247
- "limit": {
248
- "context": 1048576,
249
- "output": 65536
250
- },
251
- "name": "Gemini 3 Pro Image Preview"
252
- },
253
- "gemini-3-pro-preview": {
254
- "limit": {
255
- "context": 1048576,
256
- "output": 65536
257
- },
258
- "name": "Gemini 3 Pro Preview"
259
- },
260
- "gemini-claude-opus-4-5-thinking": {
261
- "limit": {
262
- "context": 200000,
263
- "output": 64000
264
- },
265
- "name": "Gemini Claude Opus 4 5 Thinking",
266
- "options": {
267
- "thinking": {
268
- "budgetTokens": 32768,
269
- "type": "enabled"
270
- }
271
- },
272
- "reasoning": true
273
- },
274
- "gemini-claude-sonnet-4-5": {
275
- "limit": {
276
- "context": 200000,
277
- "output": 64000
278
- },
279
- "name": "Gemini Claude Sonnet 4 5"
280
- },
281
- "gemini-claude-sonnet-4-5-thinking": {
282
- "limit": {
283
- "context": 200000,
284
- "output": 64000
285
- },
286
- "name": "Gemini Claude Sonnet 4 5 Thinking",
287
- "options": {
288
- "thinking": {
289
- "budgetTokens": 32768,
290
- "type": "enabled"
291
- }
292
- },
293
- "reasoning": true
294
- },
295
- "gpt-5": {
296
- "limit": {
297
- "context": 128000,
298
- "output": 16384
299
- },
300
- "name": "Gpt 5",
301
- "options": {
302
- "reasoning": {
303
- "effort": "medium"
304
- }
305
- },
306
- "reasoning": true
307
- },
308
- "gpt-5-codex": {
309
- "limit": {
310
- "context": 128000,
311
- "output": 16384
312
- },
313
- "name": "Gpt 5 Codex",
314
- "options": {
315
- "reasoning": {
316
- "effort": "medium"
317
- }
318
- },
319
- "reasoning": true
320
- },
321
- "gpt-5-codex-mini": {
322
- "limit": {
323
- "context": 128000,
324
- "output": 16384
325
- },
326
- "name": "Gpt 5 Codex Mini",
327
- "options": {
328
- "reasoning": {
329
- "effort": "medium"
330
- }
331
- },
332
- "reasoning": true
333
- },
334
- "gpt-5.1": {
335
- "limit": {
336
- "context": 128000,
337
- "output": 16384
338
- },
339
- "name": "Gpt 5 1",
340
- "options": {
341
- "reasoning": {
342
- "effort": "medium"
343
- }
344
- },
345
- "reasoning": true
346
- },
347
- "gpt-5.1-codex": {
348
- "limit": {
349
- "context": 128000,
350
- "output": 16384
351
- },
352
- "name": "Gpt 5 1 Codex",
353
- "options": {
354
- "reasoning": {
355
- "effort": "medium"
356
- }
357
- },
358
- "reasoning": true
359
- },
360
- "gpt-5.1-codex-max": {
361
- "limit": {
362
- "context": 128000,
363
- "output": 16384
364
- },
365
- "name": "Gpt 5 1 Codex Max",
366
- "options": {
367
- "reasoning": {
368
- "effort": "medium"
369
- }
370
- },
371
- "reasoning": true
372
- },
373
- "gpt-5.1-codex-mini": {
374
- "limit": {
375
- "context": 128000,
376
- "output": 16384
377
- },
378
- "name": "Gpt 5 1 Codex Mini",
379
- "options": {
380
- "reasoning": {
381
- "effort": "medium"
382
- }
383
- },
384
- "reasoning": true
385
- },
386
- "gpt-5.2": {
387
- "limit": {
388
- "context": 128000,
389
- "output": 16384
390
- },
391
- "name": "Gpt 5 2",
392
- "options": {
393
- "reasoning": {
394
- "effort": "medium"
395
- }
396
- },
397
- "reasoning": true
398
- },
399
- "gpt-oss-120b-medium": {
400
- "limit": {
401
- "context": 128000,
402
- "output": 16384
403
- },
404
- "name": "Gpt Oss 120b Medium"
405
- }
406
- },
407
- "name": "ProxyPal",
408
- "npm": "@ai-sdk/anthropic",
409
- "options": {
410
- "apiKey": "proxypal-local",
411
- "baseURL": "http://127.0.0.1:8317/v1"
412
- }
413
- },
414
- "zai-coding-plan": {
415
- "models": {
416
- "glm-4.6": {
417
- "attachment": true,
418
- "options": {
419
- "reasoningEffort": "high",
420
- "temperature": 1,
421
- "thinking": {
422
- "type": "enabled"
423
- },
424
- "top_k": 40,
425
- "top_p": 0.95
426
- },
427
- "reasoning": true,
428
- "temperature": true,
429
- "tool_call": true
430
- }
431
- }
432
- }
433
- },
434
- "share": "manual",
435
- "small_model": "opencode/gpt-5-nano",
436
- "theme": "system",
437
- "tools": {
438
- "context7*": true,
439
- "gh_grep*": true,
440
- "gkg*": true
441
- },
442
- "tui": {
443
- "diff_style": "auto",
444
- "scroll_acceleration": {
445
- "enabled": true
446
- },
447
- "scroll_speed": 3
448
- },
449
- "watcher": {
450
- "ignore": [
451
- "node_modules/**",
452
- ".git/**",
453
- "dist/**",
454
- "build/**",
455
- "*.log",
456
- ".DS_Store"
457
- ]
458
- }
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "agent": {
4
+ "build": {
5
+ "description": "Primary development agent with full codebase access",
6
+ "model": "proxypal/gemini-claude-opus-4-5-thinking"
7
+ },
8
+ "explore": {
9
+ "description": "Fast codebase search specialist",
10
+ "model": "proxypal/gemini-3-flash-preview"
11
+ },
12
+ "general": {
13
+ "disable": true
14
+ },
15
+ "plan": {
16
+ "disable": true
17
+ },
18
+ "planner": {
19
+ "description": "Strategic planning agent for architecture and design",
20
+ "model": "proxypal/gpt-5.2"
21
+ },
22
+ "review": {
23
+ "description": "Code review, debugging, and security audit specialist",
24
+ "model": "proxypal/gemini-claude-opus-4-5-thinking"
25
+ },
26
+ "rush": {
27
+ "description": "Fast primary agent for small, well-defined tasks",
28
+ "model": "zai-coding-plan/glm-4.6"
29
+ },
30
+ "scout": {
31
+ "description": "External research specialist for library docs and patterns",
32
+ "model": "proxypal/gemini-claude-sonnet-4-5"
33
+ },
34
+ "vision": {
35
+ "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
36
+ "model": "proxypal/gemini-3-pro-preview"
37
+ }
38
+ },
39
+ "autoupdate": false,
40
+ "experimental": {
41
+ "batch_tool": true,
42
+ "chatMaxRetries": 2,
43
+ "primary_tools": ["edit", "write", "bash", "prune"]
44
+ },
45
+ "formatter": {
46
+ "biome": {
47
+ "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
48
+ "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
49
+ },
50
+ "java-formatter": {
51
+ "command": ["google-java-format", "--replace", "$FILE"],
52
+ "environment": {
53
+ "JAVA_HOME": "{env:JAVA_HOME}"
54
+ },
55
+ "extensions": [".java"]
56
+ },
57
+ "prettier": {
58
+ "command": ["npx", "prettier", "--write", "$FILE"],
59
+ "extensions": [".html", ".css", ".scss", ".sass", ".md", ".yaml", ".yml"]
60
+ }
61
+ },
62
+ "keybinds": {
63
+ "command_list": ";",
64
+ "leader": "`",
65
+ "session_child_cycle": "ctrl+alt+right",
66
+ "session_child_cycle_reverse": "ctrl+alt+left"
67
+ },
68
+ "mcp": {
69
+ "Framelink MCP for Figma": {
70
+ "command": [
71
+ "npx",
72
+ "-y",
73
+ "figma-developer-mcp",
74
+ "--figma-api-key={env:FIGMA_API_KEY}",
75
+ "--stdio"
76
+ ],
77
+ "enabled": false,
78
+ "type": "local"
79
+ },
80
+ "context7": {
81
+ "command": [
82
+ "npx",
83
+ "-y",
84
+ "@upstash/context7-mcp",
85
+ "--api-key",
86
+ "{env:CONTEXT7_API_KEY}"
87
+ ],
88
+ "enabled": true,
89
+ "type": "local"
90
+ },
91
+ "gh_grep": {
92
+ "enabled": true,
93
+ "type": "remote",
94
+ "url": "https://mcp.grep.app"
95
+ },
96
+ "gkg": {
97
+ "enabled": true,
98
+ "type": "remote",
99
+ "url": "http://localhost:27495/mcp"
100
+ },
101
+ "playwright": {
102
+ "command": ["npx", "@playwright/mcp@latest"],
103
+ "enabled": false,
104
+ "type": "local"
105
+ }
106
+ },
107
+ "model": "proxypal/gemini-claude-opus-4-5-thinking",
108
+ "permission": {
109
+ "bash": {
110
+ "git commit *": "ask",
111
+ "git push *": "ask",
112
+ "rm *": "ask",
113
+ "rm -rf *": "ask"
114
+ },
115
+ "doom_loop": "ask",
116
+ "edit": "allow",
117
+ "external_directory": "allow"
118
+ },
119
+ "plugin": [
120
+ "opencode-gemini-auth",
121
+ "@tarquinen/opencode-dcp@latest",
122
+ "@howaboua/pickle-thinker@0.1.3",
123
+ "@franlol/opencode-md-table-formatter@0.0.3"
124
+ ],
125
+ "provider": {
126
+ "github-copilot": {
127
+ "models": {
128
+ "claude-haiku-4.5": {
129
+ "attachment": true,
130
+ "options": {
131
+ "thinking": {
132
+ "budgetTokens": 16000,
133
+ "type": "enabled"
134
+ }
135
+ },
136
+ "reasoning": true,
137
+ "temperature": true,
138
+ "tool_call": true
139
+ },
140
+ "claude-opus-4.5": {
141
+ "attachment": true,
142
+ "options": {
143
+ "thinking": {
144
+ "budgetTokens": 32000,
145
+ "type": "enabled"
146
+ }
147
+ },
148
+ "reasoning": true,
149
+ "temperature": true,
150
+ "tool_call": true
151
+ },
152
+ "claude-sonnet-4.5": {
153
+ "attachment": true,
154
+ "options": {
155
+ "thinking": {
156
+ "budgetTokens": 16000,
157
+ "type": "enabled"
158
+ }
159
+ },
160
+ "reasoning": true,
161
+ "temperature": true,
162
+ "tool_call": true
163
+ },
164
+ "gpt-5.1": {
165
+ "attachment": true,
166
+ "options": {
167
+ "reasoning": {
168
+ "effort": "high"
169
+ }
170
+ },
171
+ "reasoning": true,
172
+ "temperature": true,
173
+ "tool_call": true
174
+ },
175
+ "gpt-5.1-codex": {
176
+ "attachment": true,
177
+ "options": {
178
+ "reasoning": {
179
+ "effort": "high"
180
+ }
181
+ },
182
+ "reasoning": true,
183
+ "temperature": true,
184
+ "tool_call": true
185
+ }
186
+ },
187
+ "npm": "@ai-sdk/anthropic"
188
+ },
189
+ "opencode": {
190
+ "models": {
191
+ "big-pickle": {
192
+ "options": {
193
+ "reasoningEffort": "high",
194
+ "temperature": 1,
195
+ "top_k": 40,
196
+ "top_p": 0.95
197
+ },
198
+ "reasoning": true
199
+ }
200
+ }
201
+ },
202
+ "proxypal": {
203
+ "models": {
204
+ "claude-opus-4-5-20251101": {
205
+ "limit": {
206
+ "context": 200000,
207
+ "output": 64000
208
+ },
209
+ "name": "Claude Opus 4 5 20251101"
210
+ },
211
+ "gemini-2.5-computer-use-preview-10-2025": {
212
+ "limit": {
213
+ "context": 1048576,
214
+ "output": 65536
215
+ },
216
+ "name": "Gemini 2 5 Computer Use Preview 10 2025"
217
+ },
218
+ "gemini-2.5-flash": {
219
+ "limit": {
220
+ "context": 1048576,
221
+ "output": 65536
222
+ },
223
+ "name": "Gemini 2 5 Flash"
224
+ },
225
+ "gemini-2.5-flash-lite": {
226
+ "limit": {
227
+ "context": 1048576,
228
+ "output": 65536
229
+ },
230
+ "name": "Gemini 2 5 Flash Lite"
231
+ },
232
+ "gemini-2.5-pro": {
233
+ "limit": {
234
+ "context": 1048576,
235
+ "output": 65536
236
+ },
237
+ "name": "Gemini 2 5 Pro"
238
+ },
239
+ "gemini-3-flash-preview": {
240
+ "limit": {
241
+ "context": 1048576,
242
+ "output": 65536
243
+ },
244
+ "name": "Gemini 3 Flash Preview"
245
+ },
246
+ "gemini-3-pro-image-preview": {
247
+ "limit": {
248
+ "context": 1048576,
249
+ "output": 65536
250
+ },
251
+ "name": "Gemini 3 Pro Image Preview"
252
+ },
253
+ "gemini-3-pro-preview": {
254
+ "limit": {
255
+ "context": 1048576,
256
+ "output": 65536
257
+ },
258
+ "name": "Gemini 3 Pro Preview"
259
+ },
260
+ "gemini-claude-opus-4-5-thinking": {
261
+ "limit": {
262
+ "context": 200000,
263
+ "output": 64000
264
+ },
265
+ "name": "Gemini Claude Opus 4 5 Thinking",
266
+ "options": {
267
+ "thinking": {
268
+ "budgetTokens": 32768,
269
+ "type": "enabled"
270
+ }
271
+ },
272
+ "reasoning": true
273
+ },
274
+ "gemini-claude-sonnet-4-5": {
275
+ "limit": {
276
+ "context": 200000,
277
+ "output": 64000
278
+ },
279
+ "name": "Gemini Claude Sonnet 4 5"
280
+ },
281
+ "gemini-claude-sonnet-4-5-thinking": {
282
+ "limit": {
283
+ "context": 200000,
284
+ "output": 64000
285
+ },
286
+ "name": "Gemini Claude Sonnet 4 5 Thinking",
287
+ "options": {
288
+ "thinking": {
289
+ "budgetTokens": 32768,
290
+ "type": "enabled"
291
+ }
292
+ },
293
+ "reasoning": true
294
+ },
295
+ "gpt-5": {
296
+ "limit": {
297
+ "context": 128000,
298
+ "output": 16384
299
+ },
300
+ "name": "Gpt 5",
301
+ "options": {
302
+ "reasoning": {
303
+ "effort": "medium"
304
+ }
305
+ },
306
+ "reasoning": true
307
+ },
308
+ "gpt-5-codex": {
309
+ "limit": {
310
+ "context": 128000,
311
+ "output": 16384
312
+ },
313
+ "name": "Gpt 5 Codex",
314
+ "options": {
315
+ "reasoning": {
316
+ "effort": "medium"
317
+ }
318
+ },
319
+ "reasoning": true
320
+ },
321
+ "gpt-5-codex-mini": {
322
+ "limit": {
323
+ "context": 128000,
324
+ "output": 16384
325
+ },
326
+ "name": "Gpt 5 Codex Mini",
327
+ "options": {
328
+ "reasoning": {
329
+ "effort": "medium"
330
+ }
331
+ },
332
+ "reasoning": true
333
+ },
334
+ "gpt-5.1": {
335
+ "limit": {
336
+ "context": 128000,
337
+ "output": 16384
338
+ },
339
+ "name": "Gpt 5 1",
340
+ "options": {
341
+ "reasoning": {
342
+ "effort": "medium"
343
+ }
344
+ },
345
+ "reasoning": true
346
+ },
347
+ "gpt-5.1-codex": {
348
+ "limit": {
349
+ "context": 128000,
350
+ "output": 16384
351
+ },
352
+ "name": "Gpt 5 1 Codex",
353
+ "options": {
354
+ "reasoning": {
355
+ "effort": "medium"
356
+ }
357
+ },
358
+ "reasoning": true
359
+ },
360
+ "gpt-5.1-codex-max": {
361
+ "limit": {
362
+ "context": 128000,
363
+ "output": 16384
364
+ },
365
+ "name": "Gpt 5 1 Codex Max",
366
+ "options": {
367
+ "reasoning": {
368
+ "effort": "medium"
369
+ }
370
+ },
371
+ "reasoning": true
372
+ },
373
+ "gpt-5.1-codex-mini": {
374
+ "limit": {
375
+ "context": 128000,
376
+ "output": 16384
377
+ },
378
+ "name": "Gpt 5 1 Codex Mini",
379
+ "options": {
380
+ "reasoning": {
381
+ "effort": "medium"
382
+ }
383
+ },
384
+ "reasoning": true
385
+ },
386
+ "gpt-5.2": {
387
+ "limit": {
388
+ "context": 128000,
389
+ "output": 16384
390
+ },
391
+ "name": "Gpt 5 2",
392
+ "options": {
393
+ "reasoning": {
394
+ "effort": "medium"
395
+ }
396
+ },
397
+ "reasoning": true
398
+ },
399
+ "gpt-5.2-codex": {
400
+ "limit": {
401
+ "context": 128000,
402
+ "output": 16384
403
+ },
404
+ "name": "Gpt 5 2 Codex",
405
+ "options": {
406
+ "reasoning": {
407
+ "effort": "medium"
408
+ }
409
+ },
410
+ "reasoning": true
411
+ },
412
+ "gpt-oss-120b-medium": {
413
+ "limit": {
414
+ "context": 128000,
415
+ "output": 16384
416
+ },
417
+ "name": "Gpt Oss 120b Medium"
418
+ }
419
+ },
420
+ "name": "ProxyPal",
421
+ "npm": "@ai-sdk/anthropic",
422
+ "options": {
423
+ "apiKey": "proxypal-local",
424
+ "baseURL": "http://127.0.0.1:8317/v1"
425
+ }
426
+ },
427
+ "zai-coding-plan": {
428
+ "models": {
429
+ "glm-4.6": {
430
+ "attachment": true,
431
+ "options": {
432
+ "reasoningEffort": "high",
433
+ "temperature": 1,
434
+ "thinking": {
435
+ "type": "enabled"
436
+ },
437
+ "top_k": 40,
438
+ "top_p": 0.95
439
+ },
440
+ "reasoning": true,
441
+ "temperature": true,
442
+ "tool_call": true
443
+ }
444
+ }
445
+ }
446
+ },
447
+ "share": "manual",
448
+ "small_model": "opencode/gpt-5-nano",
449
+ "theme": "system",
450
+ "tools": {
451
+ "context7*": true,
452
+ "gh_grep*": true,
453
+ "gkg*": true
454
+ },
455
+ "tui": {
456
+ "diff_style": "auto",
457
+ "scroll_acceleration": {
458
+ "enabled": true
459
+ },
460
+ "scroll_speed": 3
461
+ },
462
+ "watcher": {
463
+ "ignore": [
464
+ "node_modules/**",
465
+ ".git/**",
466
+ "dist/**",
467
+ "build/**",
468
+ "*.log",
469
+ ".DS_Store"
470
+ ]
471
+ }
459
472
  }