opencodekit 0.2.5 → 0.2.7

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.7",
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,433 @@
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
+ "@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
+ "proxypal": {
195
+ "models": {
196
+ "claude-opus-4-5-20251101": {
197
+ "limit": {
198
+ "context": 200000,
199
+ "output": 64000
200
+ },
201
+ "name": "Claude Opus 4 5 20251101"
202
+ },
203
+ "gemini-2.5-computer-use-preview-10-2025": {
204
+ "limit": {
205
+ "context": 1048576,
206
+ "output": 65536
207
+ },
208
+ "name": "Gemini 2 5 Computer Use Preview 10 2025"
209
+ },
210
+ "gemini-2.5-flash": {
211
+ "limit": {
212
+ "context": 1048576,
213
+ "output": 65536
214
+ },
215
+ "name": "Gemini 2 5 Flash"
216
+ },
217
+ "gemini-2.5-flash-lite": {
218
+ "limit": {
219
+ "context": 1048576,
220
+ "output": 65536
221
+ },
222
+ "name": "Gemini 2 5 Flash Lite"
223
+ },
224
+ "gemini-3-pro-image-preview": {
225
+ "limit": {
226
+ "context": 1048576,
227
+ "output": 65536
228
+ },
229
+ "name": "Gemini 3 Pro Image Preview"
230
+ },
231
+ "gemini-3-pro-preview": {
232
+ "limit": {
233
+ "context": 1048576,
234
+ "output": 65536
235
+ },
236
+ "name": "Gemini 3 Pro Preview"
237
+ },
238
+ "gemini-claude-opus-4-5-thinking": {
239
+ "limit": {
240
+ "context": 200000,
241
+ "output": 64000
242
+ },
243
+ "name": "Gemini Claude Opus 4 5 Thinking",
244
+ "options": {
245
+ "thinking": {
246
+ "budgetTokens": 32768,
247
+ "type": "enabled"
248
+ }
249
+ },
250
+ "reasoning": true
251
+ },
252
+ "gemini-claude-sonnet-4-5": {
253
+ "limit": {
254
+ "context": 200000,
255
+ "output": 64000
256
+ },
257
+ "name": "Gemini Claude Sonnet 4 5"
258
+ },
259
+ "gemini-claude-sonnet-4-5-thinking": {
260
+ "limit": {
261
+ "context": 200000,
262
+ "output": 64000
263
+ },
264
+ "name": "Gemini Claude Sonnet 4 5 Thinking",
265
+ "options": {
266
+ "thinking": {
267
+ "budgetTokens": 32768,
268
+ "type": "enabled"
269
+ }
270
+ },
271
+ "reasoning": true
272
+ },
273
+ "gpt-5": {
274
+ "limit": {
275
+ "context": 128000,
276
+ "output": 16384
277
+ },
278
+ "name": "Gpt 5",
279
+ "options": {
280
+ "reasoning": {
281
+ "effort": "medium"
282
+ }
283
+ },
284
+ "reasoning": true
285
+ },
286
+ "gpt-5-codex": {
287
+ "limit": {
288
+ "context": 128000,
289
+ "output": 16384
290
+ },
291
+ "name": "Gpt 5 Codex",
292
+ "options": {
293
+ "reasoning": {
294
+ "effort": "medium"
295
+ }
296
+ },
297
+ "reasoning": true
298
+ },
299
+ "gpt-5-codex-mini": {
300
+ "limit": {
301
+ "context": 128000,
302
+ "output": 16384
303
+ },
304
+ "name": "Gpt 5 Codex Mini",
305
+ "options": {
306
+ "reasoning": {
307
+ "effort": "medium"
308
+ }
309
+ },
310
+ "reasoning": true
311
+ },
312
+ "gpt-5.1": {
313
+ "limit": {
314
+ "context": 128000,
315
+ "output": 16384
316
+ },
317
+ "name": "Gpt 5 1",
318
+ "options": {
319
+ "reasoning": {
320
+ "effort": "medium"
321
+ }
322
+ },
323
+ "reasoning": true
324
+ },
325
+ "gpt-5.1-codex": {
326
+ "limit": {
327
+ "context": 128000,
328
+ "output": 16384
329
+ },
330
+ "name": "Gpt 5 1 Codex",
331
+ "options": {
332
+ "reasoning": {
333
+ "effort": "medium"
334
+ }
335
+ },
336
+ "reasoning": true
337
+ },
338
+ "gpt-5.1-codex-max": {
339
+ "limit": {
340
+ "context": 128000,
341
+ "output": 16384
342
+ },
343
+ "name": "Gpt 5 1 Codex Max",
344
+ "options": {
345
+ "reasoning": {
346
+ "effort": "medium"
347
+ }
348
+ },
349
+ "reasoning": true
350
+ },
351
+ "gpt-5.1-codex-mini": {
352
+ "limit": {
353
+ "context": 128000,
354
+ "output": 16384
355
+ },
356
+ "name": "Gpt 5 1 Codex Mini",
357
+ "options": {
358
+ "reasoning": {
359
+ "effort": "medium"
360
+ }
361
+ },
362
+ "reasoning": true
363
+ },
364
+ "gpt-5.2": {
365
+ "limit": {
366
+ "context": 128000,
367
+ "output": 16384
368
+ },
369
+ "name": "Gpt 5 2",
370
+ "options": {
371
+ "reasoning": {
372
+ "effort": "medium"
373
+ }
374
+ },
375
+ "reasoning": true
376
+ },
377
+ "gpt-oss-120b-medium": {
378
+ "limit": {
379
+ "context": 128000,
380
+ "output": 16384
381
+ },
382
+ "name": "Gpt Oss 120b Medium"
383
+ }
384
+ },
385
+ "name": "ProxyPal",
386
+ "npm": "@ai-sdk/anthropic",
387
+ "options": {
388
+ "apiKey": "proxypal-local",
389
+ "baseURL": "http://127.0.0.1:8317/v1"
390
+ }
391
+ },
392
+ "zai-coding-plan": {
393
+ "models": {
394
+ "glm-4.6": {
395
+ "attachment": true,
396
+ "options": {
397
+ "thinking": {
398
+ "type": "enabled"
399
+ }
400
+ },
401
+ "reasoning": true,
402
+ "temperature": true,
403
+ "tool_call": true
404
+ }
405
+ }
406
+ }
407
+ },
408
+ "share": "manual",
409
+ "small_model": "opencode/gpt-5-nano",
410
+ "theme": "system",
411
+ "tools": {
412
+ "context7*": true,
413
+ "gh_grep*": true,
414
+ "gkg*": true
415
+ },
416
+ "tui": {
417
+ "diff_style": "auto",
418
+ "scroll_acceleration": {
419
+ "enabled": true
420
+ },
421
+ "scroll_speed": 3
422
+ },
423
+ "watcher": {
424
+ "ignore": [
425
+ "node_modules/**",
426
+ ".git/**",
427
+ "dist/**",
428
+ "build/**",
429
+ "*.log",
430
+ ".DS_Store"
431
+ ]
432
+ }
431
433
  }
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.7",
4
4
  "description": "CLI tool for bootstrapping and managing OpenCodeKit projects",
5
5
  "type": "module",
6
6
  "repository": {