opencodekit 0.6.1 → 0.6.2
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.6.
|
|
753
|
+
version: "0.6.2",
|
|
754
754
|
description: "CLI tool for bootstrapping and managing OpenCodeKit projects",
|
|
755
755
|
type: "module",
|
|
756
756
|
repository: {
|
|
@@ -1,43 +1,65 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
2
|
+
// Enable or disable the plugin
|
|
3
|
+
"enabled": true,
|
|
4
|
+
// Enable debug logging to ~/.config/opencode/logs/dcp/
|
|
5
|
+
"debug": false,
|
|
6
|
+
// Notification display: "off", "minimal", or "detailed"
|
|
7
|
+
"pruneNotification": "off",
|
|
8
|
+
// Protect from pruning for <turns> message turns
|
|
9
|
+
"turnProtection": {
|
|
10
|
+
"enabled": true,
|
|
11
|
+
"turns": 4
|
|
12
|
+
},
|
|
13
|
+
// LLM-driven context pruning tools
|
|
14
|
+
"tools": {
|
|
15
|
+
// Shared settings for all prune tools
|
|
16
|
+
"settings": {
|
|
17
|
+
// Nudge the LLM to use prune tools (every <nudgeFrequency> tool results)
|
|
18
|
+
"nudgeEnabled": true,
|
|
19
|
+
"nudgeFrequency": 10,
|
|
20
|
+
// Additional tools to protect from pruning (defaults: task, todowrite, todoread, discard, extract, batch)
|
|
21
|
+
"protectedTools": [
|
|
22
|
+
"write",
|
|
23
|
+
"edit",
|
|
24
|
+
"memory-read",
|
|
25
|
+
"memory-update",
|
|
26
|
+
"observation",
|
|
27
|
+
"use_skill",
|
|
28
|
+
"skill"
|
|
29
|
+
]
|
|
30
|
+
},
|
|
31
|
+
// Removes tool content from context without preservation (for completed tasks or noise)
|
|
32
|
+
"discard": {
|
|
33
|
+
"enabled": true
|
|
34
|
+
},
|
|
35
|
+
// Distills key findings into preserved knowledge before removing raw content
|
|
36
|
+
"extract": {
|
|
37
|
+
"enabled": true,
|
|
38
|
+
// Show distillation content as an ignored message notification
|
|
39
|
+
"showDistillation": false
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
// Automatic pruning strategies
|
|
43
|
+
"strategies": {
|
|
44
|
+
// Remove duplicate tool calls (same tool with same arguments)
|
|
45
|
+
"deduplication": {
|
|
46
|
+
"enabled": true,
|
|
47
|
+
// Additional tools to protect from pruning
|
|
48
|
+
"protectedTools": []
|
|
49
|
+
},
|
|
50
|
+
// Prune write tool inputs when the file has been subsequently read
|
|
51
|
+
"supersedeWrites": {
|
|
52
|
+
"enabled": true
|
|
53
|
+
},
|
|
54
|
+
// (Legacy) Run an LLM to analyze what tool calls are no longer relevant on idle
|
|
55
|
+
"onIdle": {
|
|
56
|
+
"enabled": false,
|
|
57
|
+
// Additional tools to protect from pruning
|
|
58
|
+
"protectedTools": [],
|
|
59
|
+
// Show toast notifications when model selection fails
|
|
60
|
+
"showModelErrorToasts": true,
|
|
61
|
+
// When true, fallback models are not permitted
|
|
62
|
+
"strictModelSelection": false
|
|
63
|
+
}
|
|
64
|
+
}
|
|
43
65
|
}
|
|
@@ -1,495 +1,538 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
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": "github-copilot/claude-opus-4.5"
|
|
11
|
+
},
|
|
12
|
+
"explore": {
|
|
13
|
+
"description": "Fast codebase search specialist",
|
|
14
|
+
"model": "opencode/grok-code"
|
|
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.1"
|
|
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-claude-opus-4-5-thinking"
|
|
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
|
+
"lsp": true,
|
|
46
|
+
"batch_tool": true,
|
|
47
|
+
"chatMaxRetries": 2,
|
|
48
|
+
"primary_tools": [
|
|
49
|
+
"edit",
|
|
50
|
+
"write",
|
|
51
|
+
"bash",
|
|
52
|
+
"prune"
|
|
53
|
+
]
|
|
54
|
+
},
|
|
55
|
+
"formatter": {
|
|
56
|
+
"biome": {
|
|
57
|
+
"command": [
|
|
58
|
+
"npx",
|
|
59
|
+
"@biomejs/biome",
|
|
60
|
+
"check",
|
|
61
|
+
"--write",
|
|
62
|
+
"$FILE"
|
|
63
|
+
],
|
|
64
|
+
"extensions": [
|
|
65
|
+
".js",
|
|
66
|
+
".jsx",
|
|
67
|
+
".ts",
|
|
68
|
+
".tsx",
|
|
69
|
+
".json",
|
|
70
|
+
".jsonc"
|
|
71
|
+
]
|
|
72
|
+
},
|
|
73
|
+
"java-formatter": {
|
|
74
|
+
"command": [
|
|
75
|
+
"google-java-format",
|
|
76
|
+
"--replace",
|
|
77
|
+
"$FILE"
|
|
78
|
+
],
|
|
79
|
+
"environment": {
|
|
80
|
+
"JAVA_HOME": "{env:JAVA_HOME}"
|
|
81
|
+
},
|
|
82
|
+
"extensions": [
|
|
83
|
+
".java"
|
|
84
|
+
]
|
|
85
|
+
},
|
|
86
|
+
"prettier": {
|
|
87
|
+
"command": [
|
|
88
|
+
"npx",
|
|
89
|
+
"prettier",
|
|
90
|
+
"--write",
|
|
91
|
+
"$FILE"
|
|
92
|
+
],
|
|
93
|
+
"extensions": [
|
|
94
|
+
".html",
|
|
95
|
+
".css",
|
|
96
|
+
".scss",
|
|
97
|
+
".sass",
|
|
98
|
+
".md",
|
|
99
|
+
".yaml",
|
|
100
|
+
".yml"
|
|
101
|
+
]
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"instructions": [
|
|
105
|
+
".opencode/memory/user.md",
|
|
106
|
+
".opencode/memory/project/*.md"
|
|
107
|
+
],
|
|
108
|
+
"keybinds": {
|
|
109
|
+
"command_list": ";",
|
|
110
|
+
"leader": "`",
|
|
111
|
+
"session_child_cycle": "ctrl+alt+right",
|
|
112
|
+
"session_child_cycle_reverse": "ctrl+alt+left"
|
|
113
|
+
},
|
|
114
|
+
"mcp": {
|
|
115
|
+
"Framelink MCP for Figma": {
|
|
116
|
+
"command": [
|
|
117
|
+
"npx",
|
|
118
|
+
"-y",
|
|
119
|
+
"figma-developer-mcp",
|
|
120
|
+
"--figma-api-key={env:FIGMA_API_KEY}",
|
|
121
|
+
"--stdio"
|
|
122
|
+
],
|
|
123
|
+
"enabled": false,
|
|
124
|
+
"type": "local"
|
|
125
|
+
},
|
|
126
|
+
"context7": {
|
|
127
|
+
"command": [
|
|
128
|
+
"npx",
|
|
129
|
+
"-y",
|
|
130
|
+
"@upstash/context7-mcp",
|
|
131
|
+
"--api-key",
|
|
132
|
+
"{env:CONTEXT7_API_KEY}"
|
|
133
|
+
],
|
|
134
|
+
"enabled": true,
|
|
135
|
+
"type": "local"
|
|
136
|
+
},
|
|
137
|
+
"gh_grep": {
|
|
138
|
+
"enabled": true,
|
|
139
|
+
"type": "remote",
|
|
140
|
+
"url": "https://mcp.grep.app"
|
|
141
|
+
},
|
|
142
|
+
"gkg": {
|
|
143
|
+
"enabled": true,
|
|
144
|
+
"type": "remote",
|
|
145
|
+
"url": "http://localhost:27495/mcp"
|
|
146
|
+
},
|
|
147
|
+
"playwright": {
|
|
148
|
+
"command": [
|
|
149
|
+
"npx",
|
|
150
|
+
"@playwright/mcp@latest"
|
|
151
|
+
],
|
|
152
|
+
"enabled": false,
|
|
153
|
+
"type": "local"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
"model": "github-copilot/claude-haiku-4.5",
|
|
157
|
+
"permission": {
|
|
158
|
+
"bash": {
|
|
159
|
+
"git commit *": "ask",
|
|
160
|
+
"git push *": "ask",
|
|
161
|
+
"rm *": "ask",
|
|
162
|
+
"rm -rf *": "ask"
|
|
163
|
+
},
|
|
164
|
+
"doom_loop": "ask",
|
|
165
|
+
"edit": "allow",
|
|
166
|
+
"external_directory": "allow"
|
|
167
|
+
},
|
|
168
|
+
"plugin": [
|
|
169
|
+
"opencode-gemini-auth",
|
|
170
|
+
"@tarquinen/opencode-dcp@latest",
|
|
171
|
+
"@franlol/opencode-md-table-formatter@0.0.3",
|
|
172
|
+
"./plugin/skill.ts"
|
|
173
|
+
],
|
|
174
|
+
"provider": {
|
|
175
|
+
"github-copilot": {
|
|
176
|
+
"models": {
|
|
177
|
+
"claude-haiku-4.5": {
|
|
178
|
+
"attachment": true,
|
|
179
|
+
"options": {
|
|
180
|
+
"thinking": {
|
|
181
|
+
"budgetTokens": 16000,
|
|
182
|
+
"type": "enabled"
|
|
183
|
+
}
|
|
184
|
+
},
|
|
185
|
+
"reasoning": true,
|
|
186
|
+
"temperature": true,
|
|
187
|
+
"tool_call": true
|
|
188
|
+
},
|
|
189
|
+
"claude-opus-4.5": {
|
|
190
|
+
"attachment": true,
|
|
191
|
+
"options": {
|
|
192
|
+
"thinking": {
|
|
193
|
+
"budgetTokens": 32000,
|
|
194
|
+
"type": "enabled"
|
|
195
|
+
}
|
|
196
|
+
},
|
|
197
|
+
"reasoning": true,
|
|
198
|
+
"temperature": true,
|
|
199
|
+
"tool_call": true
|
|
200
|
+
},
|
|
201
|
+
"claude-sonnet-4.5": {
|
|
202
|
+
"attachment": true,
|
|
203
|
+
"options": {
|
|
204
|
+
"thinking": {
|
|
205
|
+
"budgetTokens": 16000,
|
|
206
|
+
"type": "enabled"
|
|
207
|
+
}
|
|
208
|
+
},
|
|
209
|
+
"reasoning": true,
|
|
210
|
+
"temperature": true,
|
|
211
|
+
"tool_call": true
|
|
212
|
+
},
|
|
213
|
+
"gpt-5.1": {
|
|
214
|
+
"attachment": true,
|
|
215
|
+
"options": {
|
|
216
|
+
"reasoning": {
|
|
217
|
+
"effort": "high"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
"reasoning": true,
|
|
221
|
+
"temperature": true,
|
|
222
|
+
"tool_call": true
|
|
223
|
+
},
|
|
224
|
+
"gpt-5.1-codex": {
|
|
225
|
+
"attachment": true,
|
|
226
|
+
"options": {
|
|
227
|
+
"reasoning": {
|
|
228
|
+
"effort": "high"
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
"reasoning": true,
|
|
232
|
+
"temperature": true,
|
|
233
|
+
"tool_call": true
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
"npm": "@ai-sdk/anthropic"
|
|
237
|
+
},
|
|
238
|
+
"opencode": {
|
|
239
|
+
"models": {
|
|
240
|
+
"big-pickle": {
|
|
241
|
+
"options": {
|
|
242
|
+
"reasoningEffort": "high",
|
|
243
|
+
"temperature": 1,
|
|
244
|
+
"top_k": 40,
|
|
245
|
+
"top_p": 0.95
|
|
246
|
+
},
|
|
247
|
+
"reasoning": true
|
|
248
|
+
}
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
"proxypal": {
|
|
252
|
+
"models": {
|
|
253
|
+
"gemini-2.5-computer-use-preview-10-2025": {
|
|
254
|
+
"limit": {
|
|
255
|
+
"context": 1048576,
|
|
256
|
+
"output": 65536
|
|
257
|
+
},
|
|
258
|
+
"name": "Gemini 2 5 Computer Use Preview 10 2025"
|
|
259
|
+
},
|
|
260
|
+
"gemini-2.5-flash": {
|
|
261
|
+
"limit": {
|
|
262
|
+
"context": 1048576,
|
|
263
|
+
"output": 65536
|
|
264
|
+
},
|
|
265
|
+
"name": "Gemini 2 5 Flash"
|
|
266
|
+
},
|
|
267
|
+
"gemini-2.5-flash-lite": {
|
|
268
|
+
"limit": {
|
|
269
|
+
"context": 1048576,
|
|
270
|
+
"output": 65536
|
|
271
|
+
},
|
|
272
|
+
"name": "Gemini 2 5 Flash Lite"
|
|
273
|
+
},
|
|
274
|
+
"gemini-2.5-pro": {
|
|
275
|
+
"limit": {
|
|
276
|
+
"context": 1048576,
|
|
277
|
+
"output": 65536
|
|
278
|
+
},
|
|
279
|
+
"name": "Gemini 2 5 Pro"
|
|
280
|
+
},
|
|
281
|
+
"gemini-3-flash-preview": {
|
|
282
|
+
"limit": {
|
|
283
|
+
"context": 1048576,
|
|
284
|
+
"output": 65536
|
|
285
|
+
},
|
|
286
|
+
"name": "Gemini 3 Flash Preview"
|
|
287
|
+
},
|
|
288
|
+
"gemini-3-pro-image-preview": {
|
|
289
|
+
"limit": {
|
|
290
|
+
"context": 1048576,
|
|
291
|
+
"output": 65536
|
|
292
|
+
},
|
|
293
|
+
"name": "Gemini 3 Pro Image Preview"
|
|
294
|
+
},
|
|
295
|
+
"gemini-3-pro-preview": {
|
|
296
|
+
"limit": {
|
|
297
|
+
"context": 1048576,
|
|
298
|
+
"output": 65536
|
|
299
|
+
},
|
|
300
|
+
"name": "Gemini 3 Pro Preview"
|
|
301
|
+
},
|
|
302
|
+
"gemini-claude-opus-4-5-thinking": {
|
|
303
|
+
"limit": {
|
|
304
|
+
"context": 200000,
|
|
305
|
+
"output": 64000
|
|
306
|
+
},
|
|
307
|
+
"name": "Gemini Claude Opus 4 5 Thinking",
|
|
308
|
+
"options": {
|
|
309
|
+
"thinking": {
|
|
310
|
+
"budgetTokens": 32768,
|
|
311
|
+
"type": "enabled"
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"reasoning": true
|
|
315
|
+
},
|
|
316
|
+
"gemini-claude-sonnet-4-5": {
|
|
317
|
+
"limit": {
|
|
318
|
+
"context": 200000,
|
|
319
|
+
"output": 64000
|
|
320
|
+
},
|
|
321
|
+
"name": "Gemini Claude Sonnet 4 5"
|
|
322
|
+
},
|
|
323
|
+
"gemini-claude-sonnet-4-5-thinking": {
|
|
324
|
+
"limit": {
|
|
325
|
+
"context": 200000,
|
|
326
|
+
"output": 64000
|
|
327
|
+
},
|
|
328
|
+
"name": "Gemini Claude Sonnet 4 5 Thinking",
|
|
329
|
+
"options": {
|
|
330
|
+
"thinking": {
|
|
331
|
+
"budgetTokens": 32768,
|
|
332
|
+
"type": "enabled"
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
"reasoning": true
|
|
336
|
+
},
|
|
337
|
+
"glm-4.6": {
|
|
338
|
+
"limit": {
|
|
339
|
+
"context": 128000,
|
|
340
|
+
"output": 16384
|
|
341
|
+
},
|
|
342
|
+
"name": "Glm 4 6"
|
|
343
|
+
},
|
|
344
|
+
"gpt-5": {
|
|
345
|
+
"limit": {
|
|
346
|
+
"context": 128000,
|
|
347
|
+
"output": 16384
|
|
348
|
+
},
|
|
349
|
+
"name": "Gpt 5",
|
|
350
|
+
"options": {
|
|
351
|
+
"reasoning": {
|
|
352
|
+
"effort": "medium"
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"reasoning": true
|
|
356
|
+
},
|
|
357
|
+
"gpt-5-codex": {
|
|
358
|
+
"limit": {
|
|
359
|
+
"context": 128000,
|
|
360
|
+
"output": 16384
|
|
361
|
+
},
|
|
362
|
+
"name": "Gpt 5 Codex",
|
|
363
|
+
"options": {
|
|
364
|
+
"reasoning": {
|
|
365
|
+
"effort": "medium"
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
"reasoning": true
|
|
369
|
+
},
|
|
370
|
+
"gpt-5-codex-mini": {
|
|
371
|
+
"limit": {
|
|
372
|
+
"context": 128000,
|
|
373
|
+
"output": 16384
|
|
374
|
+
},
|
|
375
|
+
"name": "Gpt 5 Codex Mini",
|
|
376
|
+
"options": {
|
|
377
|
+
"reasoning": {
|
|
378
|
+
"effort": "medium"
|
|
379
|
+
}
|
|
380
|
+
},
|
|
381
|
+
"reasoning": true
|
|
382
|
+
},
|
|
383
|
+
"gpt-5.1": {
|
|
384
|
+
"limit": {
|
|
385
|
+
"context": 128000,
|
|
386
|
+
"output": 16384
|
|
387
|
+
},
|
|
388
|
+
"name": "Gpt 5 1",
|
|
389
|
+
"options": {
|
|
390
|
+
"reasoning": {
|
|
391
|
+
"effort": "medium"
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
"reasoning": true
|
|
395
|
+
},
|
|
396
|
+
"gpt-5.1-codex": {
|
|
397
|
+
"limit": {
|
|
398
|
+
"context": 128000,
|
|
399
|
+
"output": 16384
|
|
400
|
+
},
|
|
401
|
+
"name": "Gpt 5 1 Codex",
|
|
402
|
+
"options": {
|
|
403
|
+
"reasoning": {
|
|
404
|
+
"effort": "medium"
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
"reasoning": true
|
|
408
|
+
},
|
|
409
|
+
"gpt-5.1-codex-max": {
|
|
410
|
+
"limit": {
|
|
411
|
+
"context": 128000,
|
|
412
|
+
"output": 16384
|
|
413
|
+
},
|
|
414
|
+
"name": "Gpt 5 1 Codex Max",
|
|
415
|
+
"options": {
|
|
416
|
+
"reasoning": {
|
|
417
|
+
"effort": "medium"
|
|
418
|
+
}
|
|
419
|
+
},
|
|
420
|
+
"reasoning": true
|
|
421
|
+
},
|
|
422
|
+
"gpt-5.1-codex-mini": {
|
|
423
|
+
"limit": {
|
|
424
|
+
"context": 128000,
|
|
425
|
+
"output": 16384
|
|
426
|
+
},
|
|
427
|
+
"name": "Gpt 5 1 Codex Mini",
|
|
428
|
+
"options": {
|
|
429
|
+
"reasoning": {
|
|
430
|
+
"effort": "medium"
|
|
431
|
+
}
|
|
432
|
+
},
|
|
433
|
+
"reasoning": true
|
|
434
|
+
},
|
|
435
|
+
"gpt-5.2": {
|
|
436
|
+
"limit": {
|
|
437
|
+
"context": 128000,
|
|
438
|
+
"output": 16384
|
|
439
|
+
},
|
|
440
|
+
"name": "Gpt 5 2",
|
|
441
|
+
"options": {
|
|
442
|
+
"reasoning": {
|
|
443
|
+
"effort": "medium"
|
|
444
|
+
}
|
|
445
|
+
},
|
|
446
|
+
"reasoning": true
|
|
447
|
+
},
|
|
448
|
+
"gpt-5.2-codex": {
|
|
449
|
+
"limit": {
|
|
450
|
+
"context": 128000,
|
|
451
|
+
"output": 16384
|
|
452
|
+
},
|
|
453
|
+
"name": "Gpt 5 2 Codex",
|
|
454
|
+
"options": {
|
|
455
|
+
"reasoning": {
|
|
456
|
+
"effort": "medium"
|
|
457
|
+
}
|
|
458
|
+
},
|
|
459
|
+
"reasoning": true
|
|
460
|
+
},
|
|
461
|
+
"gpt-oss-120b-medium": {
|
|
462
|
+
"limit": {
|
|
463
|
+
"context": 128000,
|
|
464
|
+
"output": 16384
|
|
465
|
+
},
|
|
466
|
+
"name": "Gpt Oss 120b Medium"
|
|
467
|
+
}
|
|
468
|
+
},
|
|
469
|
+
"name": "ProxyPal",
|
|
470
|
+
"npm": "@ai-sdk/anthropic",
|
|
471
|
+
"options": {
|
|
472
|
+
"apiKey": "proxypal-local",
|
|
473
|
+
"baseURL": "http://127.0.0.1:8317/v1"
|
|
474
|
+
}
|
|
475
|
+
},
|
|
476
|
+
"zai-coding-plan": {
|
|
477
|
+
"models": {
|
|
478
|
+
"glm-4.7": {
|
|
479
|
+
"id": "glm-4.7",
|
|
480
|
+
"name": "GLM-4.7",
|
|
481
|
+
"reasoning": true,
|
|
482
|
+
"interleaved": true,
|
|
483
|
+
"options": {
|
|
484
|
+
"reasoningEffort": "high",
|
|
485
|
+
"reasoningSummary": "true",
|
|
486
|
+
"temperature": 1,
|
|
487
|
+
"top_k": 40,
|
|
488
|
+
"top_p": 0.95,
|
|
489
|
+
"maxOutputTokens": 131072,
|
|
490
|
+
"thinking": {
|
|
491
|
+
"type": "enabled"
|
|
492
|
+
}
|
|
493
|
+
}
|
|
494
|
+
},
|
|
495
|
+
"glm-4.6": {
|
|
496
|
+
"attachment": true,
|
|
497
|
+
"options": {
|
|
498
|
+
"reasoningEffort": "high",
|
|
499
|
+
"temperature": 1,
|
|
500
|
+
"thinking": {
|
|
501
|
+
"type": "enabled"
|
|
502
|
+
},
|
|
503
|
+
"top_k": 40,
|
|
504
|
+
"top_p": 0.95
|
|
505
|
+
},
|
|
506
|
+
"reasoning": true,
|
|
507
|
+
"temperature": true,
|
|
508
|
+
"tool_call": true
|
|
509
|
+
}
|
|
510
|
+
}
|
|
511
|
+
}
|
|
512
|
+
},
|
|
513
|
+
"share": "manual",
|
|
514
|
+
"small_model": "opencode/gpt-5-nano",
|
|
515
|
+
"theme": "system",
|
|
516
|
+
"tools": {
|
|
517
|
+
"context7*": true,
|
|
518
|
+
"gh_grep*": true,
|
|
519
|
+
"gkg*": true
|
|
520
|
+
},
|
|
521
|
+
"tui": {
|
|
522
|
+
"diff_style": "auto",
|
|
523
|
+
"scroll_acceleration": {
|
|
524
|
+
"enabled": true
|
|
525
|
+
},
|
|
526
|
+
"scroll_speed": 3
|
|
527
|
+
},
|
|
528
|
+
"watcher": {
|
|
529
|
+
"ignore": [
|
|
530
|
+
"node_modules/**",
|
|
531
|
+
".git/**",
|
|
532
|
+
"dist/**",
|
|
533
|
+
"build/**",
|
|
534
|
+
"*.log",
|
|
535
|
+
".DS_Store"
|
|
536
|
+
]
|
|
537
|
+
}
|
|
495
538
|
}
|
|
@@ -11,10 +11,10 @@
|
|
|
11
11
|
"author": "",
|
|
12
12
|
"license": "ISC",
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@opencode-ai/plugin": "1.0.
|
|
14
|
+
"@opencode-ai/plugin": "1.0.199"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@types/node": "^
|
|
17
|
+
"@types/node": "^25.0.3",
|
|
18
18
|
"fs": "^0.0.1-security",
|
|
19
19
|
"path": "^0.12.7",
|
|
20
20
|
"typescript": "^5.9.3"
|