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