opencodekit 0.13.1 → 0.14.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 (30) hide show
  1. package/README.md +2 -2
  2. package/dist/index.js +16 -4
  3. package/dist/template/.opencode/AGENTS.md +13 -4
  4. package/dist/template/.opencode/README.md +100 -4
  5. package/dist/template/.opencode/command/brainstorm.md +25 -2
  6. package/dist/template/.opencode/command/finish.md +21 -4
  7. package/dist/template/.opencode/command/handoff.md +17 -0
  8. package/dist/template/.opencode/command/implement.md +38 -0
  9. package/dist/template/.opencode/command/plan.md +32 -0
  10. package/dist/template/.opencode/command/research.md +61 -5
  11. package/dist/template/.opencode/command/resume.md +31 -0
  12. package/dist/template/.opencode/command/start.md +31 -0
  13. package/dist/template/.opencode/command/triage.md +16 -1
  14. package/dist/template/.opencode/memory/observations/.gitkeep +0 -0
  15. package/dist/template/.opencode/memory/project/conventions.md +31 -0
  16. package/dist/template/.opencode/memory/vector_db/memories.lance/_transactions/0-8d00d272-cb80-463b-9774-7120a1c994e7.txn +0 -0
  17. package/dist/template/.opencode/memory/vector_db/memories.lance/_transactions/1-a3bea825-dad3-47dd-a6d6-ff41b76ff7b0.txn +0 -0
  18. package/dist/template/.opencode/memory/vector_db/memories.lance/_versions/1.manifest +0 -0
  19. package/dist/template/.opencode/memory/vector_db/memories.lance/_versions/2.manifest +0 -0
  20. package/dist/template/.opencode/memory/vector_db/memories.lance/data/001010101000000101110001f998d04b63936ff83f9a34152d.lance +0 -0
  21. package/dist/template/.opencode/memory/vector_db/memories.lance/data/010000101010000000010010701b3840d38c2b5f275da99978.lance +0 -0
  22. package/dist/template/.opencode/opencode.json +587 -511
  23. package/dist/template/.opencode/package.json +3 -1
  24. package/dist/template/.opencode/plugin/memory.ts +610 -0
  25. package/dist/template/.opencode/tool/memory-embed.ts +183 -0
  26. package/dist/template/.opencode/tool/memory-index.ts +769 -0
  27. package/dist/template/.opencode/tool/memory-search.ts +358 -66
  28. package/dist/template/.opencode/tool/observation.ts +301 -12
  29. package/dist/template/.opencode/tool/repo-map.ts +451 -0
  30. package/package.json +16 -4
@@ -1,513 +1,589 @@
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
- "compaction": {
9
- "description": "Session summarizer for context continuity across compactions"
10
- },
11
- "explore": {
12
- "description": "Fast codebase search specialist",
13
- "model": "opencode/grok-code"
14
- },
15
- "general": {
16
- "disable": true
17
- },
18
- "plan": {
19
- "disable": true
20
- },
21
- "planner": {
22
- "description": "Strategic planning agent for architecture and design",
23
- "model": "proxypal/gpt-5.1"
24
- },
25
- "review": {
26
- "description": "Code review, debugging, and security audit specialist",
27
- "model": "proxypal/gemini-claude-opus-4-5-thinking"
28
- },
29
- "rush": {
30
- "description": "Fast primary agent for small, well-defined tasks",
31
- "model": "zai-coding-plan/glm-4.7"
32
- },
33
- "scout": {
34
- "description": "External research specialist for library docs and patterns",
35
- "model": "proxypal/gemini-claude-sonnet-4-5"
36
- },
37
- "vision": {
38
- "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
39
- "model": "proxypal/gemini-3-pro-preview"
40
- }
41
- },
42
- "autoupdate": false,
43
- "compaction": {
44
- "auto": true,
45
- "prune": true
46
- },
47
- "experimental": {
48
- "batch_tool": true,
49
- "chatMaxRetries": 2,
50
- "continue_loop_on_deny": false,
51
- "lsp": true,
52
- "primary_tools": ["edit", "write", "bash"]
53
- },
54
- "formatter": {
55
- "biome": {
56
- "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
57
- "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
58
- },
59
- "cargo-fmt": {
60
- "command": ["cargo", "fmt", "--", "$FILE"],
61
- "extensions": [".rs"]
62
- },
63
- "java-formatter": {
64
- "command": ["google-java-format", "--replace", "$FILE"],
65
- "environment": {
66
- "JAVA_HOME": "{env:JAVA_HOME}"
67
- },
68
- "extensions": [".java"]
69
- },
70
- "prettier": {
71
- "command": ["npx", "prettier", "--write", "$FILE"],
72
- "extensions": [".html", ".css", ".scss", ".sass", ".md", ".yaml", ".yml"]
73
- }
74
- },
75
- "instructions": [".opencode/memory/user.md", ".opencode/memory/project/*.md"],
76
- "keybinds": {
77
- "command_list": ";",
78
- "leader": "`",
79
- "session_child_cycle": "ctrl+alt+right",
80
- "session_child_cycle_reverse": "ctrl+alt+left",
81
- "session_compact": "ctrl+k"
82
- },
83
- "mcp": {
84
- "context7": {
85
- "command": [
86
- "npx",
87
- "-y",
88
- "@upstash/context7-mcp",
89
- "--api-key",
90
- "{env:CONTEXT7_API_KEY}"
91
- ],
92
- "enabled": true,
93
- "type": "local"
94
- },
95
- "gh_grep": {
96
- "enabled": true,
97
- "type": "remote",
98
- "url": "https://mcp.grep.app"
99
- }
100
- },
101
- "model": "github-copilot/claude-haiku-4.5",
102
- "permission": {
103
- "bash": {
104
- "*": "allow",
105
- "cat *": "allow",
106
- "git branch *": "allow",
107
- "git commit *": "ask",
108
- "git diff *": "allow",
109
- "git log *": "allow",
110
- "git push *": "ask",
111
- "git rebase *": "ask",
112
- "git reset *": "ask",
113
- "git status *": "allow",
114
- "ls *": "allow",
115
- "npm *": "allow",
116
- "npx *": "allow",
117
- "rm *": "deny",
118
- "rm -rf *": "deny",
119
- "sudo *": "deny"
120
- },
121
- "doom_loop": "ask",
122
- "edit": "allow",
123
- "external_directory": "ask",
124
- "read": {
125
- "*": "allow",
126
- "*.env": "deny",
127
- "*.env.*": "deny",
128
- "*.env.example": "allow"
129
- }
130
- },
131
- "plugin": [
132
- "@tarquinen/opencode-dcp@latest",
133
- "@franlol/opencode-md-table-formatter@0.0.3"
134
- ],
135
- "provider": {
136
- "github-copilot": {
137
- "models": {
138
- "claude-haiku-4.5": {
139
- "attachment": true,
140
- "options": {
141
- "thinking": {
142
- "budgetTokens": 16000,
143
- "type": "enabled"
144
- }
145
- },
146
- "reasoning": true,
147
- "temperature": true,
148
- "tool_call": true
149
- },
150
- "claude-opus-4.5": {
151
- "attachment": true,
152
- "options": {
153
- "thinking": {
154
- "budgetTokens": 32000,
155
- "type": "enabled"
156
- }
157
- },
158
- "reasoning": true,
159
- "temperature": true,
160
- "tool_call": true
161
- },
162
- "claude-sonnet-4.5": {
163
- "attachment": true,
164
- "options": {
165
- "thinking": {
166
- "budgetTokens": 16000,
167
- "type": "enabled"
168
- }
169
- },
170
- "reasoning": true,
171
- "temperature": true,
172
- "tool_call": true
173
- },
174
- "gpt-5.1": {
175
- "attachment": true,
176
- "options": {
177
- "reasoning": {
178
- "effort": "high"
179
- }
180
- },
181
- "reasoning": true,
182
- "temperature": true,
183
- "tool_call": true
184
- },
185
- "gpt-5.1-codex": {
186
- "attachment": true,
187
- "options": {
188
- "reasoning": {
189
- "effort": "high"
190
- }
191
- },
192
- "reasoning": true,
193
- "temperature": true,
194
- "tool_call": true
195
- }
196
- },
197
- "npm": "@ai-sdk/anthropic"
198
- },
199
- "opencode": {
200
- "models": {
201
- "big-pickle": {
202
- "options": {
203
- "reasoningEffort": "high",
204
- "temperature": 1,
205
- "top_k": 40,
206
- "top_p": 0.95
207
- },
208
- "reasoning": true
209
- }
210
- }
211
- },
212
- "proxypal": {
213
- "models": {
214
- "gemini-2.5-computer-use-preview-10-2025": {
215
- "limit": {
216
- "context": 880964,
217
- "output": 65536
218
- },
219
- "name": "Gemini 2 5 Computer Use Preview 10 2025"
220
- },
221
- "gemini-2.5-flash": {
222
- "limit": {
223
- "context": 880964,
224
- "output": 65536
225
- },
226
- "name": "Gemini 2 5 Flash"
227
- },
228
- "gemini-2.5-flash-lite": {
229
- "limit": {
230
- "context": 880964,
231
- "output": 65536
232
- },
233
- "name": "Gemini 2 5 Flash Lite"
234
- },
235
- "gemini-2.5-pro": {
236
- "limit": {
237
- "context": 880964,
238
- "output": 65536
239
- },
240
- "name": "Gemini 2 5 Pro"
241
- },
242
- "gemini-3-flash-preview": {
243
- "limit": {
244
- "context": 880964,
245
- "output": 65536
246
- },
247
- "name": "Gemini 3 Flash Preview",
248
- "options": {
249
- "generationConfig": {
250
- "thinkingConfig": {
251
- "thinkingLevel": "HIGH",
252
- "includeThoughts": true
253
- }
254
- }
255
- }
256
- },
257
- "gemini-3-pro-image-preview": {
258
- "limit": {
259
- "context": 880964,
260
- "output": 65536
261
- },
262
- "name": "Gemini 3 Pro Image Preview"
263
- },
264
- "gemini-3-pro-preview": {
265
- "limit": {
266
- "context": 880964,
267
- "output": 65536
268
- },
269
- "name": "Gemini 3 Pro Preview",
270
- "options": {
271
- "generationConfig": {
272
- "thinkingConfig": {
273
- "thinkingLevel": "HIGH",
274
- "includeThoughts": true
275
- }
276
- }
277
- }
278
- },
279
- "gemini-claude-opus-4-5-thinking": {
280
- "limit": {
281
- "context": 168000,
282
- "output": 64000
283
- },
284
- "name": "Gemini Claude Opus 4 5 Thinking",
285
- "options": {
286
- "thinking": {
287
- "budgetTokens": 32768,
288
- "type": "enabled"
289
- }
290
- },
291
- "reasoning": true
292
- },
293
- "gemini-claude-sonnet-4-5": {
294
- "limit": {
295
- "context": 168000,
296
- "output": 64000
297
- },
298
- "name": "Gemini Claude Sonnet 4 5"
299
- },
300
- "gemini-claude-sonnet-4-5-thinking": {
301
- "limit": {
302
- "context": 168000,
303
- "output": 64000
304
- },
305
- "name": "Gemini Claude Sonnet 4 5 Thinking",
306
- "options": {
307
- "thinking": {
308
- "budgetTokens": 32768,
309
- "type": "enabled"
310
- }
311
- },
312
- "reasoning": true
313
- },
314
- "glm-4.5": {
315
- "limit": {
316
- "context": 107520,
317
- "output": 16384
318
- },
319
- "name": "Glm 4 5"
320
- },
321
- "glm-4.5-air": {
322
- "limit": {
323
- "context": 107520,
324
- "output": 16384
325
- },
326
- "name": "Glm 4 5 Air"
327
- },
328
- "glm-4.6": {
329
- "limit": {
330
- "context": 107520,
331
- "output": 16384
332
- },
333
- "name": "Glm 4 6"
334
- },
335
- "glm-4.7": {
336
- "limit": {
337
- "context": 107520,
338
- "output": 16384
339
- },
340
- "name": "Glm 4 7"
341
- },
342
- "gpt-5": {
343
- "limit": {
344
- "context": 336000,
345
- "output": 32768
346
- },
347
- "name": "Gpt 5",
348
- "options": {
349
- "reasoningEffort": "medium"
350
- },
351
- "reasoning": true
352
- },
353
- "gpt-5-codex": {
354
- "limit": {
355
- "context": 336000,
356
- "output": 32768
357
- },
358
- "name": "Gpt 5 Codex",
359
- "options": {
360
- "reasoningEffort": "medium"
361
- },
362
- "reasoning": true
363
- },
364
- "gpt-5-codex-mini": {
365
- "limit": {
366
- "context": 336000,
367
- "output": 32768
368
- },
369
- "name": "Gpt 5 Codex Mini",
370
- "options": {
371
- "reasoningEffort": "medium"
372
- },
373
- "reasoning": true
374
- },
375
- "gpt-5.1": {
376
- "limit": {
377
- "context": 336000,
378
- "output": 32768
379
- },
380
- "name": "Gpt 5 1",
381
- "options": {
382
- "reasoningEffort": "medium"
383
- },
384
- "reasoning": true
385
- },
386
- "gpt-5.1-codex": {
387
- "limit": {
388
- "context": 336000,
389
- "output": 32768
390
- },
391
- "name": "Gpt 5 1 Codex",
392
- "options": {
393
- "reasoningEffort": "medium"
394
- },
395
- "reasoning": true
396
- },
397
- "gpt-5.1-codex-max": {
398
- "limit": {
399
- "context": 336000,
400
- "output": 32768
401
- },
402
- "name": "Gpt 5 1 Codex Max",
403
- "options": {
404
- "reasoningEffort": "medium"
405
- },
406
- "reasoning": true
407
- },
408
- "gpt-5.1-codex-mini": {
409
- "limit": {
410
- "context": 336000,
411
- "output": 32768
412
- },
413
- "name": "Gpt 5 1 Codex Mini",
414
- "options": {
415
- "reasoningEffort": "medium"
416
- },
417
- "reasoning": true
418
- },
419
- "gpt-5.2": {
420
- "limit": {
421
- "context": 336000,
422
- "output": 32768
423
- },
424
- "name": "Gpt 5 2",
425
- "options": {
426
- "reasoningEffort": "medium"
427
- },
428
- "reasoning": true
429
- },
430
- "gpt-5.2-codex": {
431
- "limit": {
432
- "context": 336000,
433
- "output": 32768
434
- },
435
- "name": "Gpt 5 2 Codex",
436
- "options": {
437
- "reasoningEffort": "medium"
438
- },
439
- "reasoning": true
440
- },
441
- "gpt-oss-120b-medium": {
442
- "limit": {
443
- "context": 107520,
444
- "output": 16384
445
- },
446
- "name": "Gpt Oss 120b Medium"
447
- }
448
- },
449
- "name": "ProxyPal",
450
- "npm": "@ai-sdk/anthropic",
451
- "options": {
452
- "apiKey": "proxypal-local",
453
- "baseURL": "http://127.0.0.1:8317/v1",
454
- "includeUsage": true
455
- }
456
- },
457
- "zai-coding-plan": {
458
- "models": {
459
- "glm-4.6": {
460
- "limit": {
461
- "context": 128000,
462
- "output": 16384
463
- },
464
- "options": {
465
- "temperature": 1,
466
- "thinking": {
467
- "type": "enabled"
468
- }
469
- },
470
- "reasoning": true,
471
- "temperature": true,
472
- "tool_call": true
473
- },
474
- "glm-4.7": {
475
- "id": "glm-4.7",
476
- "interleaved": true,
477
- "limit": {
478
- "context": 200000,
479
- "output": 128000
480
- },
481
- "name": "GLM-4.7",
482
- "options": {
483
- "temperature": 1,
484
- "thinking": {
485
- "type": "enabled"
486
- }
487
- },
488
- "reasoning": true
489
- }
490
- },
491
- "name": "Z.AI Coding Plan"
492
- }
493
- },
494
- "share": "manual",
495
- "small_model": "opencode/gpt-5-nano",
496
- "tui": {
497
- "diff_style": "auto",
498
- "scroll_acceleration": {
499
- "enabled": true
500
- },
501
- "scroll_speed": 3
502
- },
503
- "watcher": {
504
- "ignore": [
505
- "node_modules/**",
506
- ".git/**",
507
- "dist/**",
508
- "build/**",
509
- "*.log",
510
- ".DS_Store"
511
- ]
512
- }
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
+ "compaction": {
9
+ "description": "Session summarizer for context continuity across compactions"
10
+ },
11
+ "explore": {
12
+ "description": "Fast codebase search specialist",
13
+ "model": "opencode/grok-code"
14
+ },
15
+ "general": {
16
+ "disable": true
17
+ },
18
+ "plan": {
19
+ "disable": true
20
+ },
21
+ "planner": {
22
+ "description": "Strategic planning agent for architecture and design",
23
+ "model": "proxypal/gpt-5.1"
24
+ },
25
+ "review": {
26
+ "description": "Code review, debugging, and security audit specialist",
27
+ "model": "proxypal/gemini-claude-opus-4-5-thinking"
28
+ },
29
+ "rush": {
30
+ "description": "Fast primary agent for small, well-defined tasks",
31
+ "model": "zai-coding-plan/glm-4.7"
32
+ },
33
+ "scout": {
34
+ "description": "External research specialist for library docs and patterns",
35
+ "model": "proxypal/gemini-claude-sonnet-4-5"
36
+ },
37
+ "vision": {
38
+ "description": "Visual content specialist for multimodal analysis and UI/UX guidance",
39
+ "model": "proxypal/gemini-3-pro-preview"
40
+ }
41
+ },
42
+ "autoupdate": false,
43
+ "compaction": {
44
+ "auto": true,
45
+ "prune": true
46
+ },
47
+ "experimental": {
48
+ "batch_tool": true,
49
+ "chatMaxRetries": 2,
50
+ "continue_loop_on_deny": false,
51
+ "lsp": true,
52
+ "primary_tools": [
53
+ "edit",
54
+ "write",
55
+ "bash"
56
+ ]
57
+ },
58
+ "formatter": {
59
+ "biome": {
60
+ "command": [
61
+ "npx",
62
+ "@biomejs/biome",
63
+ "check",
64
+ "--write",
65
+ "$FILE"
66
+ ],
67
+ "extensions": [
68
+ ".js",
69
+ ".jsx",
70
+ ".ts",
71
+ ".tsx",
72
+ ".json",
73
+ ".jsonc"
74
+ ]
75
+ },
76
+ "cargo-fmt": {
77
+ "command": [
78
+ "cargo",
79
+ "fmt",
80
+ "--",
81
+ "$FILE"
82
+ ],
83
+ "extensions": [
84
+ ".rs"
85
+ ]
86
+ },
87
+ "java-formatter": {
88
+ "command": [
89
+ "google-java-format",
90
+ "--replace",
91
+ "$FILE"
92
+ ],
93
+ "environment": {
94
+ "JAVA_HOME": "{env:JAVA_HOME}"
95
+ },
96
+ "extensions": [
97
+ ".java"
98
+ ]
99
+ },
100
+ "prettier": {
101
+ "command": [
102
+ "npx",
103
+ "prettier",
104
+ "--write",
105
+ "$FILE"
106
+ ],
107
+ "extensions": [
108
+ ".html",
109
+ ".css",
110
+ ".scss",
111
+ ".sass",
112
+ ".md",
113
+ ".yaml",
114
+ ".yml"
115
+ ]
116
+ }
117
+ },
118
+ "instructions": [
119
+ ".opencode/memory/user.md",
120
+ ".opencode/memory/project/*.md"
121
+ ],
122
+ "keybinds": {
123
+ "command_list": ";",
124
+ "leader": "`",
125
+ "session_child_cycle": "ctrl+alt+right",
126
+ "session_child_cycle_reverse": "ctrl+alt+left",
127
+ "session_compact": "ctrl+k"
128
+ },
129
+ "mcp": {
130
+ "context7": {
131
+ "command": [
132
+ "npx",
133
+ "-y",
134
+ "@upstash/context7-mcp",
135
+ "--api-key",
136
+ "{env:CONTEXT7_API_KEY}"
137
+ ],
138
+ "enabled": true,
139
+ "type": "local"
140
+ },
141
+ "gh_grep": {
142
+ "enabled": true,
143
+ "type": "remote",
144
+ "url": "https://mcp.grep.app"
145
+ }
146
+ },
147
+ "model": "github-copilot/claude-haiku-4.5",
148
+ "permission": {
149
+ "bash": {
150
+ "*": "allow",
151
+ "cat *": "allow",
152
+ "git branch *": "allow",
153
+ "git commit *": "ask",
154
+ "git diff *": "allow",
155
+ "git log *": "allow",
156
+ "git push *": "ask",
157
+ "git rebase *": "ask",
158
+ "git reset *": "ask",
159
+ "git status *": "allow",
160
+ "ls *": "allow",
161
+ "npm *": "allow",
162
+ "npx *": "allow",
163
+ "rm *": "deny",
164
+ "rm -rf *": "deny",
165
+ "sudo *": "deny"
166
+ },
167
+ "doom_loop": "ask",
168
+ "edit": "allow",
169
+ "external_directory": "ask",
170
+ "read": {
171
+ "*": "allow",
172
+ "*.env": "deny",
173
+ "*.env.*": "deny",
174
+ "*.env.example": "allow"
175
+ }
176
+ },
177
+ "plugin": [
178
+ "@tarquinen/opencode-dcp@latest",
179
+ "@franlol/opencode-md-table-formatter@0.0.3"
180
+ ],
181
+ "provider": {
182
+ "github-copilot": {
183
+ "models": {
184
+ "claude-haiku-4.5": {
185
+ "attachment": true,
186
+ "options": {
187
+ "thinking": {
188
+ "budgetTokens": 16000,
189
+ "type": "enabled"
190
+ }
191
+ },
192
+ "reasoning": true,
193
+ "temperature": true,
194
+ "tool_call": true
195
+ },
196
+ "claude-opus-4.5": {
197
+ "attachment": true,
198
+ "options": {
199
+ "thinking": {
200
+ "budgetTokens": 32000,
201
+ "type": "enabled"
202
+ }
203
+ },
204
+ "reasoning": true,
205
+ "temperature": true,
206
+ "tool_call": true
207
+ },
208
+ "claude-sonnet-4.5": {
209
+ "attachment": true,
210
+ "options": {
211
+ "thinking": {
212
+ "budgetTokens": 16000,
213
+ "type": "enabled"
214
+ }
215
+ },
216
+ "reasoning": true,
217
+ "temperature": true,
218
+ "tool_call": true
219
+ },
220
+ "gpt-5.1": {
221
+ "attachment": true,
222
+ "options": {
223
+ "reasoning": {
224
+ "effort": "high"
225
+ }
226
+ },
227
+ "reasoning": true,
228
+ "temperature": true,
229
+ "tool_call": true
230
+ },
231
+ "gpt-5.1-codex": {
232
+ "attachment": true,
233
+ "options": {
234
+ "reasoning": {
235
+ "effort": "high"
236
+ }
237
+ },
238
+ "reasoning": true,
239
+ "temperature": true,
240
+ "tool_call": true
241
+ }
242
+ },
243
+ "npm": "@ai-sdk/anthropic"
244
+ },
245
+ "opencode": {
246
+ "models": {
247
+ "big-pickle": {
248
+ "options": {
249
+ "reasoningEffort": "high",
250
+ "temperature": 1,
251
+ "top_k": 40,
252
+ "top_p": 0.95
253
+ },
254
+ "reasoning": true
255
+ }
256
+ }
257
+ },
258
+ "proxypal": {
259
+ "models": {
260
+ "gemini-2.5-computer-use-preview-10-2025": {
261
+ "limit": {
262
+ "context": 880964,
263
+ "output": 65536
264
+ },
265
+ "name": "Gemini 2 5 Computer Use Preview 10 2025"
266
+ },
267
+ "gemini-2.5-flash": {
268
+ "limit": {
269
+ "context": 880964,
270
+ "output": 65536
271
+ },
272
+ "name": "Gemini 2 5 Flash"
273
+ },
274
+ "gemini-2.5-flash-lite": {
275
+ "limit": {
276
+ "context": 880964,
277
+ "output": 65536
278
+ },
279
+ "name": "Gemini 2 5 Flash Lite"
280
+ },
281
+ "gemini-2.5-pro": {
282
+ "limit": {
283
+ "context": 880964,
284
+ "output": 65536
285
+ },
286
+ "name": "Gemini 2 5 Pro"
287
+ },
288
+ "gemini-3-flash-preview": {
289
+ "limit": {
290
+ "context": 880964,
291
+ "output": 65536
292
+ },
293
+ "name": "Gemini 3 Flash Preview",
294
+ "options": {
295
+ "generationConfig": {
296
+ "thinkingConfig": {
297
+ "thinkingLevel": "HIGH",
298
+ "includeThoughts": true
299
+ }
300
+ }
301
+ }
302
+ },
303
+ "gemini-3-pro-image-preview": {
304
+ "limit": {
305
+ "context": 880964,
306
+ "output": 65536
307
+ },
308
+ "name": "Gemini 3 Pro Image Preview"
309
+ },
310
+ "gemini-3-pro-preview": {
311
+ "limit": {
312
+ "context": 880964,
313
+ "output": 65536
314
+ },
315
+ "name": "Gemini 3 Pro Preview",
316
+ "options": {
317
+ "generationConfig": {
318
+ "thinkingConfig": {
319
+ "thinkingLevel": "HIGH",
320
+ "includeThoughts": true
321
+ }
322
+ }
323
+ }
324
+ },
325
+ "gemini-claude-opus-4-5-thinking": {
326
+ "limit": {
327
+ "context": 168000,
328
+ "output": 64000
329
+ },
330
+ "name": "Gemini Claude Opus 4 5 Thinking",
331
+ "options": {
332
+ "thinking": {
333
+ "budgetTokens": 32768,
334
+ "type": "enabled"
335
+ }
336
+ },
337
+ "reasoning": true,
338
+ "modalities": {
339
+ "input": [
340
+ "text",
341
+ "image",
342
+ "pdf"
343
+ ],
344
+ "output": [
345
+ "text"
346
+ ]
347
+ }
348
+ },
349
+ "gemini-claude-sonnet-4-5": {
350
+ "limit": {
351
+ "context": 168000,
352
+ "output": 64000
353
+ },
354
+ "name": "Gemini Claude Sonnet 4 5",
355
+ "modalities": {
356
+ "input": [
357
+ "text",
358
+ "image",
359
+ "pdf"
360
+ ],
361
+ "output": [
362
+ "text"
363
+ ]
364
+ }
365
+ },
366
+ "gemini-claude-sonnet-4-5-thinking": {
367
+ "limit": {
368
+ "context": 168000,
369
+ "output": 64000
370
+ },
371
+ "name": "Gemini Claude Sonnet 4 5 Thinking",
372
+ "options": {
373
+ "thinking": {
374
+ "budgetTokens": 32768,
375
+ "type": "enabled"
376
+ }
377
+ },
378
+ "reasoning": true,
379
+ "modalities": {
380
+ "input": [
381
+ "text",
382
+ "image",
383
+ "pdf"
384
+ ],
385
+ "output": [
386
+ "text"
387
+ ]
388
+ }
389
+ },
390
+ "glm-4.5": {
391
+ "limit": {
392
+ "context": 107520,
393
+ "output": 16384
394
+ },
395
+ "name": "Glm 4 5"
396
+ },
397
+ "glm-4.5-air": {
398
+ "limit": {
399
+ "context": 107520,
400
+ "output": 16384
401
+ },
402
+ "name": "Glm 4 5 Air"
403
+ },
404
+ "glm-4.6": {
405
+ "limit": {
406
+ "context": 107520,
407
+ "output": 16384
408
+ },
409
+ "name": "Glm 4 6"
410
+ },
411
+ "glm-4.7": {
412
+ "limit": {
413
+ "context": 107520,
414
+ "output": 16384
415
+ },
416
+ "name": "Glm 4 7"
417
+ },
418
+ "gpt-5": {
419
+ "limit": {
420
+ "context": 336000,
421
+ "output": 32768
422
+ },
423
+ "name": "Gpt 5",
424
+ "options": {
425
+ "reasoningEffort": "medium"
426
+ },
427
+ "reasoning": true
428
+ },
429
+ "gpt-5-codex": {
430
+ "limit": {
431
+ "context": 336000,
432
+ "output": 32768
433
+ },
434
+ "name": "Gpt 5 Codex",
435
+ "options": {
436
+ "reasoningEffort": "medium"
437
+ },
438
+ "reasoning": true
439
+ },
440
+ "gpt-5-codex-mini": {
441
+ "limit": {
442
+ "context": 336000,
443
+ "output": 32768
444
+ },
445
+ "name": "Gpt 5 Codex Mini",
446
+ "options": {
447
+ "reasoningEffort": "medium"
448
+ },
449
+ "reasoning": true
450
+ },
451
+ "gpt-5.1": {
452
+ "limit": {
453
+ "context": 336000,
454
+ "output": 32768
455
+ },
456
+ "name": "Gpt 5 1",
457
+ "options": {
458
+ "reasoningEffort": "medium"
459
+ },
460
+ "reasoning": true
461
+ },
462
+ "gpt-5.1-codex": {
463
+ "limit": {
464
+ "context": 336000,
465
+ "output": 32768
466
+ },
467
+ "name": "Gpt 5 1 Codex",
468
+ "options": {
469
+ "reasoningEffort": "medium"
470
+ },
471
+ "reasoning": true
472
+ },
473
+ "gpt-5.1-codex-max": {
474
+ "limit": {
475
+ "context": 336000,
476
+ "output": 32768
477
+ },
478
+ "name": "Gpt 5 1 Codex Max",
479
+ "options": {
480
+ "reasoningEffort": "medium"
481
+ },
482
+ "reasoning": true
483
+ },
484
+ "gpt-5.1-codex-mini": {
485
+ "limit": {
486
+ "context": 336000,
487
+ "output": 32768
488
+ },
489
+ "name": "Gpt 5 1 Codex Mini",
490
+ "options": {
491
+ "reasoningEffort": "medium"
492
+ },
493
+ "reasoning": true
494
+ },
495
+ "gpt-5.2": {
496
+ "limit": {
497
+ "context": 336000,
498
+ "output": 32768
499
+ },
500
+ "name": "Gpt 5 2",
501
+ "options": {
502
+ "reasoningEffort": "medium"
503
+ },
504
+ "reasoning": true
505
+ },
506
+ "gpt-5.2-codex": {
507
+ "limit": {
508
+ "context": 336000,
509
+ "output": 32768
510
+ },
511
+ "name": "Gpt 5 2 Codex",
512
+ "options": {
513
+ "reasoningEffort": "medium"
514
+ },
515
+ "reasoning": true
516
+ },
517
+ "gpt-oss-120b-medium": {
518
+ "limit": {
519
+ "context": 107520,
520
+ "output": 16384
521
+ },
522
+ "name": "Gpt Oss 120b Medium"
523
+ }
524
+ },
525
+ "name": "ProxyPal",
526
+ "npm": "@ai-sdk/anthropic",
527
+ "options": {
528
+ "apiKey": "proxypal-local",
529
+ "baseURL": "http://127.0.0.1:8317/v1",
530
+ "includeUsage": true
531
+ }
532
+ },
533
+ "zai-coding-plan": {
534
+ "models": {
535
+ "glm-4.6": {
536
+ "limit": {
537
+ "context": 128000,
538
+ "output": 16384
539
+ },
540
+ "options": {
541
+ "temperature": 1,
542
+ "thinking": {
543
+ "type": "enabled"
544
+ }
545
+ },
546
+ "reasoning": true,
547
+ "temperature": true,
548
+ "tool_call": true
549
+ },
550
+ "glm-4.7": {
551
+ "id": "glm-4.7",
552
+ "interleaved": true,
553
+ "limit": {
554
+ "context": 200000,
555
+ "output": 128000
556
+ },
557
+ "name": "GLM-4.7",
558
+ "options": {
559
+ "temperature": 1,
560
+ "thinking": {
561
+ "type": "enabled"
562
+ }
563
+ },
564
+ "reasoning": true
565
+ }
566
+ },
567
+ "name": "Z.AI Coding Plan"
568
+ }
569
+ },
570
+ "share": "manual",
571
+ "small_model": "opencode/gpt-5-nano",
572
+ "tui": {
573
+ "diff_style": "auto",
574
+ "scroll_acceleration": {
575
+ "enabled": true
576
+ },
577
+ "scroll_speed": 3
578
+ },
579
+ "watcher": {
580
+ "ignore": [
581
+ "node_modules/**",
582
+ ".git/**",
583
+ "dist/**",
584
+ "build/**",
585
+ "*.log",
586
+ ".DS_Store"
587
+ ]
588
+ }
513
589
  }