opencodekit 0.2.5 → 0.2.6

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/dist/index.js CHANGED
@@ -750,7 +750,7 @@ var cac = (name = "") => new CAC(name);
750
750
  // package.json
751
751
  var package_default = {
752
752
  name: "opencodekit",
753
- version: "0.2.5",
753
+ version: "0.2.6",
754
754
  description: "CLI tool for bootstrapping and managing OpenCodeKit projects",
755
755
  type: "module",
756
756
  repository: {
@@ -1,34 +1,43 @@
1
1
  {
2
- // Enable or disable the plugin
3
- "enabled": true,
4
- // Enable debug logging to ~/.config/opencode/logs/dcp/
5
- "debug": false,
6
- // Override model for analysis (format: "provider/model", e.g. "anthropic/claude-haiku-4-5")
7
- // "model": "anthropic/claude-haiku-4-5",
8
- // Show toast notifications when model selection fails
9
- "showModelErrorToasts": true,
10
- // Only run AI analysis with session model or configured model (disables fallback models)
11
- "strictModelSelection": true,
12
- // AI analysis strategies (deduplication runs automatically on every request)
13
- "strategies": {
14
- // Strategies to run when session goes idle
15
- "onIdle": [""],
16
- // Strategies to run when AI calls prune tool
17
- "onTool": ["ai-analysis"],
18
- },
19
- // Summary display: "off", "minimal", or "detailed"
20
- // Note: "detailed" may cause issues with extended thinking models
21
- "pruning_summary": "off",
22
- // How often to nudge the AI to prune (every N tool results, 0 = disabled)
23
- "nudge_freq": 10,
24
- // Tools that are never pruned (plugin defaults)
25
- "protectedTools": [
26
- "task",
27
- "todowrite",
28
- "todoread",
29
- "prune",
30
- "batch",
31
- "write",
32
- "edit",
33
- ],
2
+ // Enable or disable the plugin
3
+ "enabled": true,
4
+ // Enable debug logging to ~/.config/opencode/logs/dcp/
5
+ "debug": false,
6
+ // Show toast when plugin updates are available
7
+ "showUpdateToasts": true,
8
+ // Summary display: "off", "minimal", or "detailed"
9
+ // Note: "detailed" may cause issues with extended thinking models
10
+ "pruningSummary": "off",
11
+ "strategies": {
12
+ // Deduplication runs automatically on every request
13
+ "deduplication": {
14
+ "enabled": true,
15
+ "protectedTools": []
16
+ },
17
+ // Exposes prune tool to the LLM for manual context management
18
+ "pruneTool": {
19
+ "enabled": true,
20
+ "protectedTools": [
21
+ "task",
22
+ "todowrite",
23
+ "todoread",
24
+ "prune",
25
+ "batch",
26
+ "write",
27
+ "edit"
28
+ ],
29
+ // Nudge the AI to prune periodically
30
+ "nudge": {
31
+ "enabled": true,
32
+ "frequency": 10
33
+ }
34
+ },
35
+ // LLM-based semantic analysis on idle (legacy, resource intensive)
36
+ "onIdle": {
37
+ "enabled": false,
38
+ "showModelErrorToasts": true,
39
+ "strictModelSelection": false,
40
+ "protectedTools": []
41
+ }
42
+ }
34
43
  }
@@ -1,432 +1,432 @@
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
- "designer": {
9
- "description": "UI/UX design specialist for mockup analysis and aesthetic guidance",
10
- "model": "proxypal/gemini-3-pro-preview"
11
- },
12
- "explore": {
13
- "description": "Fast codebase search specialist"
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.2"
24
- },
25
- "review": {
26
- "description": "Code review, debugging, and security audit specialist",
27
- "model": "proxypal/gemini-2.5-flash-lite"
28
- },
29
- "rush": {
30
- "description": "Fast primary agent for small, well-defined tasks",
31
- "model": "zai-coding-plan/glm-4.6"
32
- },
33
- "scout": {
34
- "description": "External research specialist for library docs and patterns",
35
- "model": "proxypal/gemini-claude-sonnet-4-5"
36
- }
37
- },
38
- "autoupdate": false,
39
- "experimental": {
40
- "batch_tool": true,
41
- "chatMaxRetries": 2,
42
- "primary_tools": ["edit", "write", "bash", "prune"]
43
- },
44
- "formatter": {
45
- "biome": {
46
- "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
47
- "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
48
- },
49
- "java-formatter": {
50
- "command": ["google-java-format", "--replace", "$FILE"],
51
- "environment": {
52
- "JAVA_HOME": "{env:JAVA_HOME}"
53
- },
54
- "extensions": [".java"]
55
- },
56
- "prettier": {
57
- "command": ["npx", "prettier", "--write", "$FILE"],
58
- "extensions": [".html", ".css", ".scss", ".sass", ".md", ".yaml", ".yml"]
59
- }
60
- },
61
- "keybinds": {
62
- "command_list": ";",
63
- "leader": "`",
64
- "session_child_cycle": "ctrl+alt+right",
65
- "session_child_cycle_reverse": "ctrl+alt+left"
66
- },
67
- "mcp": {
68
- "Framelink MCP for Figma": {
69
- "command": [
70
- "npx",
71
- "-y",
72
- "figma-developer-mcp",
73
- "--figma-api-key={env:FIGMA_API_KEY}",
74
- "--stdio"
75
- ],
76
- "enabled": false,
77
- "type": "local"
78
- },
79
- "augment-context-engine": {
80
- "command": ["auggie", "--mcp"],
81
- "enabled": false,
82
- "type": "local"
83
- },
84
- "context7": {
85
- "enabled": true,
86
- "headers": {
87
- "CONTEXT7_API_KEY": "{env:CONTEXT7_API_KEY}"
88
- },
89
- "timeout": 10000,
90
- "type": "remote",
91
- "url": "https://mcp.context7.com/mcp"
92
- },
93
- "gh_grep": {
94
- "enabled": true,
95
- "type": "remote",
96
- "url": "https://mcp.grep.app"
97
- },
98
- "gkg": {
99
- "enabled": true,
100
- "type": "remote",
101
- "url": "http://localhost:27495/mcp"
102
- },
103
- "playwright": {
104
- "command": ["npx", "@playwright/mcp@latest"],
105
- "enabled": false,
106
- "type": "local"
107
- }
108
- },
109
- "model": "proxypal/gemini-claude-opus-4-5-thinking",
110
- "permission": {
111
- "bash": {
112
- "git commit *": "ask",
113
- "git push *": "ask",
114
- "rm *": "ask",
115
- "rm -rf *": "ask"
116
- },
117
- "doom_loop": "ask",
118
- "edit": "allow",
119
- "external_directory": "allow"
120
- },
121
- "plugin": [
122
- "opencode-gemini-auth",
123
- "./plugin/superpowers.ts",
124
- "./plugin/notification.ts",
125
- "@tarquinen/opencode-dcp@latest",
126
- "@howaboua/pickle-thinker@0.1.3"
127
- ],
128
- "provider": {
129
- "github-copilot": {
130
- "models": {
131
- "claude-haiku-4.5": {
132
- "attachment": true,
133
- "options": {
134
- "thinking": {
135
- "budgetTokens": 16000,
136
- "type": "enabled"
137
- }
138
- },
139
- "reasoning": true,
140
- "temperature": true,
141
- "tool_call": true
142
- },
143
- "claude-opus-4.5": {
144
- "attachment": true,
145
- "options": {
146
- "thinking": {
147
- "budgetTokens": 32000,
148
- "type": "enabled"
149
- }
150
- },
151
- "reasoning": true,
152
- "temperature": true,
153
- "tool_call": true
154
- },
155
- "claude-sonnet-4.5": {
156
- "attachment": true,
157
- "options": {
158
- "thinking": {
159
- "budgetTokens": 16000,
160
- "type": "enabled"
161
- }
162
- },
163
- "reasoning": true,
164
- "temperature": true,
165
- "tool_call": true
166
- },
167
- "gpt-5.1": {
168
- "attachment": true,
169
- "options": {
170
- "reasoning": {
171
- "effort": "high"
172
- }
173
- },
174
- "reasoning": true,
175
- "temperature": true,
176
- "tool_call": true
177
- },
178
- "gpt-5.1-codex": {
179
- "attachment": true,
180
- "options": {
181
- "reasoning": {
182
- "effort": "high"
183
- }
184
- },
185
- "reasoning": true,
186
- "temperature": true,
187
- "tool_call": true
188
- }
189
- },
190
- "npm": "@ai-sdk/anthropic"
191
- },
192
- "proxypal": {
193
- "models": {
194
- "claude-opus-4-5-20251101": {
195
- "limit": {
196
- "context": 200000,
197
- "output": 64000
198
- },
199
- "name": "Claude Opus 4 5 20251101"
200
- },
201
- "gemini-2.5-computer-use-preview-10-2025": {
202
- "limit": {
203
- "context": 1048576,
204
- "output": 65536
205
- },
206
- "name": "Gemini 2 5 Computer Use Preview 10 2025"
207
- },
208
- "gemini-2.5-flash": {
209
- "limit": {
210
- "context": 1048576,
211
- "output": 65536
212
- },
213
- "name": "Gemini 2 5 Flash"
214
- },
215
- "gemini-2.5-flash-lite": {
216
- "limit": {
217
- "context": 1048576,
218
- "output": 65536
219
- },
220
- "name": "Gemini 2 5 Flash Lite"
221
- },
222
- "gemini-3-pro-image-preview": {
223
- "limit": {
224
- "context": 1048576,
225
- "output": 65536
226
- },
227
- "name": "Gemini 3 Pro Image Preview"
228
- },
229
- "gemini-3-pro-preview": {
230
- "limit": {
231
- "context": 1048576,
232
- "output": 65536
233
- },
234
- "name": "Gemini 3 Pro Preview"
235
- },
236
- "gemini-claude-opus-4-5-thinking": {
237
- "limit": {
238
- "context": 200000,
239
- "output": 64000
240
- },
241
- "name": "Gemini Claude Opus 4 5 Thinking",
242
- "options": {
243
- "thinking": {
244
- "budgetTokens": 32768,
245
- "type": "enabled"
246
- }
247
- },
248
- "reasoning": true
249
- },
250
- "gemini-claude-sonnet-4-5": {
251
- "limit": {
252
- "context": 200000,
253
- "output": 64000
254
- },
255
- "name": "Gemini Claude Sonnet 4 5"
256
- },
257
- "gemini-claude-sonnet-4-5-thinking": {
258
- "limit": {
259
- "context": 200000,
260
- "output": 64000
261
- },
262
- "name": "Gemini Claude Sonnet 4 5 Thinking",
263
- "options": {
264
- "thinking": {
265
- "budgetTokens": 32768,
266
- "type": "enabled"
267
- }
268
- },
269
- "reasoning": true
270
- },
271
- "gpt-5": {
272
- "limit": {
273
- "context": 128000,
274
- "output": 16384
275
- },
276
- "name": "Gpt 5",
277
- "options": {
278
- "reasoning": {
279
- "effort": "medium"
280
- }
281
- },
282
- "reasoning": true
283
- },
284
- "gpt-5-codex": {
285
- "limit": {
286
- "context": 128000,
287
- "output": 16384
288
- },
289
- "name": "Gpt 5 Codex",
290
- "options": {
291
- "reasoning": {
292
- "effort": "medium"
293
- }
294
- },
295
- "reasoning": true
296
- },
297
- "gpt-5-codex-mini": {
298
- "limit": {
299
- "context": 128000,
300
- "output": 16384
301
- },
302
- "name": "Gpt 5 Codex Mini",
303
- "options": {
304
- "reasoning": {
305
- "effort": "medium"
306
- }
307
- },
308
- "reasoning": true
309
- },
310
- "gpt-5.1": {
311
- "limit": {
312
- "context": 128000,
313
- "output": 16384
314
- },
315
- "name": "Gpt 5 1",
316
- "options": {
317
- "reasoning": {
318
- "effort": "medium"
319
- }
320
- },
321
- "reasoning": true
322
- },
323
- "gpt-5.1-codex": {
324
- "limit": {
325
- "context": 128000,
326
- "output": 16384
327
- },
328
- "name": "Gpt 5 1 Codex",
329
- "options": {
330
- "reasoning": {
331
- "effort": "medium"
332
- }
333
- },
334
- "reasoning": true
335
- },
336
- "gpt-5.1-codex-max": {
337
- "limit": {
338
- "context": 128000,
339
- "output": 16384
340
- },
341
- "name": "Gpt 5 1 Codex Max",
342
- "options": {
343
- "reasoning": {
344
- "effort": "medium"
345
- }
346
- },
347
- "reasoning": true
348
- },
349
- "gpt-5.1-codex-mini": {
350
- "limit": {
351
- "context": 128000,
352
- "output": 16384
353
- },
354
- "name": "Gpt 5 1 Codex Mini",
355
- "options": {
356
- "reasoning": {
357
- "effort": "medium"
358
- }
359
- },
360
- "reasoning": true
361
- },
362
- "gpt-5.2": {
363
- "limit": {
364
- "context": 128000,
365
- "output": 16384
366
- },
367
- "name": "Gpt 5 2",
368
- "options": {
369
- "reasoning": {
370
- "effort": "medium"
371
- }
372
- },
373
- "reasoning": true
374
- },
375
- "gpt-oss-120b-medium": {
376
- "limit": {
377
- "context": 128000,
378
- "output": 16384
379
- },
380
- "name": "Gpt Oss 120b Medium"
381
- }
382
- },
383
- "name": "ProxyPal",
384
- "npm": "@ai-sdk/anthropic",
385
- "options": {
386
- "apiKey": "proxypal-local",
387
- "baseURL": "http://127.0.0.1:8317/v1"
388
- }
389
- },
390
- "zai-coding-plan": {
391
- "models": {
392
- "glm-4.6": {
393
- "attachment": true,
394
- "options": {
395
- "thinking": {
396
- "type": "enabled"
397
- }
398
- },
399
- "reasoning": true,
400
- "temperature": true,
401
- "tool_call": true
402
- }
403
- }
404
- }
405
- },
406
- "share": "manual",
407
- "small_model": "opencode/gpt-5-nano",
408
- "theme": "system",
409
- "tools": {
410
- "context7*": true,
411
- "gh_grep*": true,
412
- "gkg*": true
413
- },
414
- "tui": {
415
- "diff_style": "auto",
416
- "scroll_acceleration": {
417
- "enabled": true
418
- },
419
- "scroll_speed": 3
420
- },
421
- "watcher": {
422
- "ignore": [
423
- "node_modules/**",
424
- ".git/**",
425
- "dist/**",
426
- "build/**",
427
- "*.log",
428
- ".DS_Store"
429
- ]
430
- }
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
+ "designer": {
9
+ "description": "UI/UX design specialist for mockup analysis and aesthetic guidance",
10
+ "model": "proxypal/gemini-3-pro-preview"
11
+ },
12
+ "explore": {
13
+ "description": "Fast codebase search specialist"
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.2"
24
+ },
25
+ "review": {
26
+ "description": "Code review, debugging, and security audit specialist",
27
+ "model": "proxypal/gemini-2.5-flash-lite"
28
+ },
29
+ "rush": {
30
+ "description": "Fast primary agent for small, well-defined tasks",
31
+ "model": "zai-coding-plan/glm-4.6"
32
+ },
33
+ "scout": {
34
+ "description": "External research specialist for library docs and patterns",
35
+ "model": "proxypal/gemini-claude-sonnet-4-5"
36
+ }
37
+ },
38
+ "autoupdate": false,
39
+ "experimental": {
40
+ "batch_tool": true,
41
+ "chatMaxRetries": 2,
42
+ "continue_loop_on_deny": true,
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
+ "augment-context-engine": {
81
+ "command": ["auggie", "--mcp"],
82
+ "enabled": false,
83
+ "type": "local"
84
+ },
85
+ "context7": {
86
+ "enabled": true,
87
+ "headers": {
88
+ "CONTEXT7_API_KEY": "{env:CONTEXT7_API_KEY}"
89
+ },
90
+ "timeout": 10000,
91
+ "type": "remote",
92
+ "url": "https://mcp.context7.com/mcp"
93
+ },
94
+ "gh_grep": {
95
+ "enabled": true,
96
+ "type": "remote",
97
+ "url": "https://mcp.grep.app"
98
+ },
99
+ "gkg": {
100
+ "enabled": true,
101
+ "type": "remote",
102
+ "url": "http://localhost:27495/mcp"
103
+ },
104
+ "playwright": {
105
+ "command": ["npx", "@playwright/mcp@latest"],
106
+ "enabled": false,
107
+ "type": "local"
108
+ }
109
+ },
110
+ "model": "proxypal/gemini-claude-opus-4-5-thinking",
111
+ "permission": {
112
+ "bash": {
113
+ "git commit *": "ask",
114
+ "git push *": "ask",
115
+ "rm *": "ask",
116
+ "rm -rf *": "ask"
117
+ },
118
+ "doom_loop": "ask",
119
+ "edit": "allow",
120
+ "external_directory": "allow"
121
+ },
122
+ "plugin": [
123
+ "opencode-gemini-auth",
124
+ "./plugin/superpowers.ts",
125
+ "./plugin/notification.ts",
126
+ "@tarquinen/opencode-dcp@latest",
127
+ "@howaboua/pickle-thinker@0.1.3"
128
+ ],
129
+ "provider": {
130
+ "github-copilot": {
131
+ "models": {
132
+ "claude-haiku-4.5": {
133
+ "attachment": true,
134
+ "options": {
135
+ "thinking": {
136
+ "budgetTokens": 16000,
137
+ "type": "enabled"
138
+ }
139
+ },
140
+ "reasoning": true,
141
+ "temperature": true,
142
+ "tool_call": true
143
+ },
144
+ "claude-opus-4.5": {
145
+ "attachment": true,
146
+ "options": {
147
+ "thinking": {
148
+ "budgetTokens": 32000,
149
+ "type": "enabled"
150
+ }
151
+ },
152
+ "reasoning": true,
153
+ "temperature": true,
154
+ "tool_call": true
155
+ },
156
+ "claude-sonnet-4.5": {
157
+ "attachment": true,
158
+ "options": {
159
+ "thinking": {
160
+ "budgetTokens": 16000,
161
+ "type": "enabled"
162
+ }
163
+ },
164
+ "reasoning": true,
165
+ "temperature": true,
166
+ "tool_call": true
167
+ },
168
+ "gpt-5.1": {
169
+ "attachment": true,
170
+ "options": {
171
+ "reasoning": {
172
+ "effort": "high"
173
+ }
174
+ },
175
+ "reasoning": true,
176
+ "temperature": true,
177
+ "tool_call": true
178
+ },
179
+ "gpt-5.1-codex": {
180
+ "attachment": true,
181
+ "options": {
182
+ "reasoning": {
183
+ "effort": "high"
184
+ }
185
+ },
186
+ "reasoning": true,
187
+ "temperature": true,
188
+ "tool_call": true
189
+ }
190
+ },
191
+ "npm": "@ai-sdk/anthropic"
192
+ },
193
+ "proxypal": {
194
+ "models": {
195
+ "claude-opus-4-5-20251101": {
196
+ "limit": {
197
+ "context": 200000,
198
+ "output": 64000
199
+ },
200
+ "name": "Claude Opus 4 5 20251101"
201
+ },
202
+ "gemini-2.5-computer-use-preview-10-2025": {
203
+ "limit": {
204
+ "context": 1048576,
205
+ "output": 65536
206
+ },
207
+ "name": "Gemini 2 5 Computer Use Preview 10 2025"
208
+ },
209
+ "gemini-2.5-flash": {
210
+ "limit": {
211
+ "context": 1048576,
212
+ "output": 65536
213
+ },
214
+ "name": "Gemini 2 5 Flash"
215
+ },
216
+ "gemini-2.5-flash-lite": {
217
+ "limit": {
218
+ "context": 1048576,
219
+ "output": 65536
220
+ },
221
+ "name": "Gemini 2 5 Flash Lite"
222
+ },
223
+ "gemini-3-pro-image-preview": {
224
+ "limit": {
225
+ "context": 1048576,
226
+ "output": 65536
227
+ },
228
+ "name": "Gemini 3 Pro Image Preview"
229
+ },
230
+ "gemini-3-pro-preview": {
231
+ "limit": {
232
+ "context": 1048576,
233
+ "output": 65536
234
+ },
235
+ "name": "Gemini 3 Pro Preview"
236
+ },
237
+ "gemini-claude-opus-4-5-thinking": {
238
+ "limit": {
239
+ "context": 200000,
240
+ "output": 64000
241
+ },
242
+ "name": "Gemini Claude Opus 4 5 Thinking",
243
+ "options": {
244
+ "thinking": {
245
+ "budgetTokens": 32768,
246
+ "type": "enabled"
247
+ }
248
+ },
249
+ "reasoning": true
250
+ },
251
+ "gemini-claude-sonnet-4-5": {
252
+ "limit": {
253
+ "context": 200000,
254
+ "output": 64000
255
+ },
256
+ "name": "Gemini Claude Sonnet 4 5"
257
+ },
258
+ "gemini-claude-sonnet-4-5-thinking": {
259
+ "limit": {
260
+ "context": 200000,
261
+ "output": 64000
262
+ },
263
+ "name": "Gemini Claude Sonnet 4 5 Thinking",
264
+ "options": {
265
+ "thinking": {
266
+ "budgetTokens": 32768,
267
+ "type": "enabled"
268
+ }
269
+ },
270
+ "reasoning": true
271
+ },
272
+ "gpt-5": {
273
+ "limit": {
274
+ "context": 128000,
275
+ "output": 16384
276
+ },
277
+ "name": "Gpt 5",
278
+ "options": {
279
+ "reasoning": {
280
+ "effort": "medium"
281
+ }
282
+ },
283
+ "reasoning": true
284
+ },
285
+ "gpt-5-codex": {
286
+ "limit": {
287
+ "context": 128000,
288
+ "output": 16384
289
+ },
290
+ "name": "Gpt 5 Codex",
291
+ "options": {
292
+ "reasoning": {
293
+ "effort": "medium"
294
+ }
295
+ },
296
+ "reasoning": true
297
+ },
298
+ "gpt-5-codex-mini": {
299
+ "limit": {
300
+ "context": 128000,
301
+ "output": 16384
302
+ },
303
+ "name": "Gpt 5 Codex Mini",
304
+ "options": {
305
+ "reasoning": {
306
+ "effort": "medium"
307
+ }
308
+ },
309
+ "reasoning": true
310
+ },
311
+ "gpt-5.1": {
312
+ "limit": {
313
+ "context": 128000,
314
+ "output": 16384
315
+ },
316
+ "name": "Gpt 5 1",
317
+ "options": {
318
+ "reasoning": {
319
+ "effort": "medium"
320
+ }
321
+ },
322
+ "reasoning": true
323
+ },
324
+ "gpt-5.1-codex": {
325
+ "limit": {
326
+ "context": 128000,
327
+ "output": 16384
328
+ },
329
+ "name": "Gpt 5 1 Codex",
330
+ "options": {
331
+ "reasoning": {
332
+ "effort": "medium"
333
+ }
334
+ },
335
+ "reasoning": true
336
+ },
337
+ "gpt-5.1-codex-max": {
338
+ "limit": {
339
+ "context": 128000,
340
+ "output": 16384
341
+ },
342
+ "name": "Gpt 5 1 Codex Max",
343
+ "options": {
344
+ "reasoning": {
345
+ "effort": "medium"
346
+ }
347
+ },
348
+ "reasoning": true
349
+ },
350
+ "gpt-5.1-codex-mini": {
351
+ "limit": {
352
+ "context": 128000,
353
+ "output": 16384
354
+ },
355
+ "name": "Gpt 5 1 Codex Mini",
356
+ "options": {
357
+ "reasoning": {
358
+ "effort": "medium"
359
+ }
360
+ },
361
+ "reasoning": true
362
+ },
363
+ "gpt-5.2": {
364
+ "limit": {
365
+ "context": 128000,
366
+ "output": 16384
367
+ },
368
+ "name": "Gpt 5 2",
369
+ "options": {
370
+ "reasoning": {
371
+ "effort": "medium"
372
+ }
373
+ },
374
+ "reasoning": true
375
+ },
376
+ "gpt-oss-120b-medium": {
377
+ "limit": {
378
+ "context": 128000,
379
+ "output": 16384
380
+ },
381
+ "name": "Gpt Oss 120b Medium"
382
+ }
383
+ },
384
+ "name": "ProxyPal",
385
+ "npm": "@ai-sdk/anthropic",
386
+ "options": {
387
+ "apiKey": "proxypal-local",
388
+ "baseURL": "http://127.0.0.1:8317/v1"
389
+ }
390
+ },
391
+ "zai-coding-plan": {
392
+ "models": {
393
+ "glm-4.6": {
394
+ "attachment": true,
395
+ "options": {
396
+ "thinking": {
397
+ "type": "enabled"
398
+ }
399
+ },
400
+ "reasoning": true,
401
+ "temperature": true,
402
+ "tool_call": true
403
+ }
404
+ }
405
+ }
406
+ },
407
+ "share": "manual",
408
+ "small_model": "opencode/gpt-5-nano",
409
+ "theme": "system",
410
+ "tools": {
411
+ "context7*": true,
412
+ "gh_grep*": true,
413
+ "gkg*": true
414
+ },
415
+ "tui": {
416
+ "diff_style": "auto",
417
+ "scroll_acceleration": {
418
+ "enabled": true
419
+ },
420
+ "scroll_speed": 3
421
+ },
422
+ "watcher": {
423
+ "ignore": [
424
+ "node_modules/**",
425
+ ".git/**",
426
+ "dist/**",
427
+ "build/**",
428
+ "*.log",
429
+ ".DS_Store"
430
+ ]
431
+ }
431
432
  }
432
-
@@ -11,7 +11,7 @@
11
11
  "author": "",
12
12
  "license": "ISC",
13
13
  "dependencies": {
14
- "@opencode-ai/plugin": "1.0.155"
14
+ "@opencode-ai/plugin": "1.0.162"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@types/better-sqlite3": "^7.6.13",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencodekit",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "description": "CLI tool for bootstrapping and managing OpenCodeKit projects",
5
5
  "type": "module",
6
6
  "repository": {