opencodekit 0.15.19 → 0.15.20
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 +1 -1
- package/dist/template/.opencode/memory/observations/2026-01-30-discovery-context-management-research-critical-gap.md +14 -0
- package/dist/template/.opencode/memory/observations/2026-01-31-decision-copilot-auth-plugin-updated-with-baseurl.md +63 -0
- package/dist/template/.opencode/memory/observations/2026-01-31-learning-opencode-copilot-auth-comparison-finding.md +61 -0
- package/dist/template/.opencode/memory/observations/2026-01-31-learning-opencode-copilot-reasoning-architecture-.md +66 -0
- package/dist/template/.opencode/memory/observations/2026-01-31-warning-copilot-claude-v1-endpoint-returns-404-c.md +48 -0
- package/dist/template/.opencode/memory/research/context-management-analysis.md +685 -0
- package/dist/template/.opencode/opencode.json +52 -156
- package/dist/template/.opencode/package.json +1 -1
- package/dist/template/.opencode/plugins/copilot-auth.ts +289 -24
- package/dist/template/.opencode/plugins/sdk/copilot/chat/convert-to-openai-compatible-chat-messages.ts +181 -0
- package/dist/template/.opencode/plugins/sdk/copilot/chat/get-response-metadata.ts +15 -0
- package/dist/template/.opencode/plugins/sdk/copilot/chat/map-openai-compatible-finish-reason.ts +19 -0
- package/dist/template/.opencode/plugins/sdk/copilot/chat/openai-compatible-api-types.ts +72 -0
- package/dist/template/.opencode/plugins/sdk/copilot/chat/openai-compatible-chat-language-model.ts +823 -0
- package/dist/template/.opencode/plugins/sdk/copilot/chat/openai-compatible-chat-options.ts +30 -0
- package/dist/template/.opencode/plugins/sdk/copilot/chat/openai-compatible-metadata-extractor.ts +48 -0
- package/dist/template/.opencode/plugins/sdk/copilot/chat/openai-compatible-prepare-tools.ts +92 -0
- package/dist/template/.opencode/plugins/sdk/copilot/copilot-provider.ts +94 -0
- package/dist/template/.opencode/plugins/sdk/copilot/index.ts +5 -0
- package/dist/template/.opencode/plugins/sdk/copilot/openai-compatible-error.ts +30 -0
- package/package.json +1 -1
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
},
|
|
35
35
|
"scout": {
|
|
36
36
|
"description": "External research specialist for library docs and patterns",
|
|
37
|
-
"model": "opencode/
|
|
37
|
+
"model": "opencode/minimax-m2.1-free"
|
|
38
38
|
},
|
|
39
39
|
"vision": {
|
|
40
40
|
"description": "Visual content specialist for multimodal analysis and UI/UX guidance",
|
|
@@ -49,65 +49,26 @@
|
|
|
49
49
|
"experimental": {},
|
|
50
50
|
"formatter": {
|
|
51
51
|
"biome": {
|
|
52
|
-
"command": [
|
|
53
|
-
|
|
54
|
-
"@biomejs/biome",
|
|
55
|
-
"check",
|
|
56
|
-
"--write",
|
|
57
|
-
"$FILE"
|
|
58
|
-
],
|
|
59
|
-
"extensions": [
|
|
60
|
-
".js",
|
|
61
|
-
".jsx",
|
|
62
|
-
".ts",
|
|
63
|
-
".tsx",
|
|
64
|
-
".json",
|
|
65
|
-
".jsonc"
|
|
66
|
-
]
|
|
52
|
+
"command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
|
|
53
|
+
"extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
|
|
67
54
|
},
|
|
68
55
|
"cargo-fmt": {
|
|
69
|
-
"command": [
|
|
70
|
-
|
|
71
|
-
"fmt",
|
|
72
|
-
"--",
|
|
73
|
-
"$FILE"
|
|
74
|
-
],
|
|
75
|
-
"extensions": [
|
|
76
|
-
".rs"
|
|
77
|
-
]
|
|
56
|
+
"command": ["cargo", "fmt", "--", "$FILE"],
|
|
57
|
+
"extensions": [".rs"]
|
|
78
58
|
},
|
|
79
59
|
"java-formatter": {
|
|
80
|
-
"command": [
|
|
81
|
-
"google-java-format",
|
|
82
|
-
"--replace",
|
|
83
|
-
"$FILE"
|
|
84
|
-
],
|
|
60
|
+
"command": ["google-java-format", "--replace", "$FILE"],
|
|
85
61
|
"environment": {
|
|
86
62
|
"JAVA_HOME": "{env:JAVA_HOME}"
|
|
87
63
|
},
|
|
88
|
-
"extensions": [
|
|
89
|
-
".java"
|
|
90
|
-
]
|
|
64
|
+
"extensions": [".java"]
|
|
91
65
|
},
|
|
92
66
|
"laravel-pint": {
|
|
93
|
-
"command": [
|
|
94
|
-
|
|
95
|
-
"laravel-pint",
|
|
96
|
-
"--preset",
|
|
97
|
-
"psr12",
|
|
98
|
-
"$FILE"
|
|
99
|
-
],
|
|
100
|
-
"extensions": [
|
|
101
|
-
".php"
|
|
102
|
-
]
|
|
67
|
+
"command": ["npx", "laravel-pint", "--preset", "psr12", "$FILE"],
|
|
68
|
+
"extensions": [".php"]
|
|
103
69
|
},
|
|
104
70
|
"oxfmt": {
|
|
105
|
-
"command": [
|
|
106
|
-
"npx",
|
|
107
|
-
"oxfmt",
|
|
108
|
-
"--write",
|
|
109
|
-
"$FILE"
|
|
110
|
-
],
|
|
71
|
+
"command": ["npx", "oxfmt", "--write", "$FILE"],
|
|
111
72
|
"extensions": [
|
|
112
73
|
".js",
|
|
113
74
|
".jsx",
|
|
@@ -126,10 +87,7 @@
|
|
|
126
87
|
]
|
|
127
88
|
}
|
|
128
89
|
},
|
|
129
|
-
"instructions": [
|
|
130
|
-
".opencode/memory/user.md",
|
|
131
|
-
".opencode/memory/project/*.md"
|
|
132
|
-
],
|
|
90
|
+
"instructions": [".opencode/memory/user.md", ".opencode/memory/project/*.md"],
|
|
133
91
|
"keybinds": {
|
|
134
92
|
"command_list": ";",
|
|
135
93
|
"leader": "`",
|
|
@@ -220,21 +178,21 @@
|
|
|
220
178
|
"reasoning": true,
|
|
221
179
|
"temperature": true,
|
|
222
180
|
"tool_call": true,
|
|
181
|
+
"options": {
|
|
182
|
+
"thinking_budget": 10000,
|
|
183
|
+
"type": "enabled"
|
|
184
|
+
},
|
|
223
185
|
"variants": {
|
|
224
186
|
"high": {
|
|
225
187
|
"options": {
|
|
226
|
-
"
|
|
227
|
-
|
|
228
|
-
"type": "enabled"
|
|
229
|
-
}
|
|
188
|
+
"thinking_budget": 8000,
|
|
189
|
+
"type": "enabled"
|
|
230
190
|
}
|
|
231
191
|
},
|
|
232
|
-
"
|
|
192
|
+
"max": {
|
|
233
193
|
"options": {
|
|
234
|
-
"
|
|
235
|
-
|
|
236
|
-
"type": "enabled"
|
|
237
|
-
}
|
|
194
|
+
"thinking_budget": 16000,
|
|
195
|
+
"type": "enabled"
|
|
238
196
|
}
|
|
239
197
|
}
|
|
240
198
|
}
|
|
@@ -244,21 +202,18 @@
|
|
|
244
202
|
"reasoning": true,
|
|
245
203
|
"temperature": true,
|
|
246
204
|
"tool_call": true,
|
|
205
|
+
"options": {
|
|
206
|
+
"thinking_budget": 10000
|
|
207
|
+
},
|
|
247
208
|
"variants": {
|
|
248
209
|
"high": {
|
|
249
210
|
"options": {
|
|
250
|
-
"
|
|
251
|
-
"budgetTokens": 32000,
|
|
252
|
-
"type": "enabled"
|
|
253
|
-
}
|
|
211
|
+
"thinking_budget": 8000
|
|
254
212
|
}
|
|
255
213
|
},
|
|
256
|
-
"
|
|
214
|
+
"max": {
|
|
257
215
|
"options": {
|
|
258
|
-
"
|
|
259
|
-
"budgetTokens": 16000,
|
|
260
|
-
"type": "enabled"
|
|
261
|
-
}
|
|
216
|
+
"thinking_budget": 16000
|
|
262
217
|
}
|
|
263
218
|
}
|
|
264
219
|
}
|
|
@@ -268,21 +223,18 @@
|
|
|
268
223
|
"reasoning": true,
|
|
269
224
|
"temperature": true,
|
|
270
225
|
"tool_call": true,
|
|
226
|
+
"options": {
|
|
227
|
+
"thinking_budget": 10000
|
|
228
|
+
},
|
|
271
229
|
"variants": {
|
|
272
230
|
"high": {
|
|
273
231
|
"options": {
|
|
274
|
-
"
|
|
275
|
-
"budgetTokens": 16000,
|
|
276
|
-
"type": "enabled"
|
|
277
|
-
}
|
|
232
|
+
"thinking_budget": 8000
|
|
278
233
|
}
|
|
279
234
|
},
|
|
280
|
-
"
|
|
235
|
+
"max": {
|
|
281
236
|
"options": {
|
|
282
|
-
"
|
|
283
|
-
"budgetTokens": 8000,
|
|
284
|
-
"type": "enabled"
|
|
285
|
-
}
|
|
237
|
+
"thinking_budget": 16000
|
|
286
238
|
}
|
|
287
239
|
}
|
|
288
240
|
}
|
|
@@ -355,17 +307,13 @@
|
|
|
355
307
|
"disabled": true
|
|
356
308
|
},
|
|
357
309
|
"high": {
|
|
358
|
-
"include": [
|
|
359
|
-
"reasoning.encrypted_content"
|
|
360
|
-
],
|
|
310
|
+
"include": ["reasoning.encrypted_content"],
|
|
361
311
|
"reasoningEffort": "high",
|
|
362
312
|
"reasoningSummary": "auto",
|
|
363
313
|
"textVerbosity": "low"
|
|
364
314
|
},
|
|
365
315
|
"medium": {
|
|
366
|
-
"include": [
|
|
367
|
-
"reasoning.encrypted_content"
|
|
368
|
-
],
|
|
316
|
+
"include": ["reasoning.encrypted_content"],
|
|
369
317
|
"reasoningEffort": "medium",
|
|
370
318
|
"reasoningSummary": "auto",
|
|
371
319
|
"textVerbosity": "low"
|
|
@@ -378,17 +326,13 @@
|
|
|
378
326
|
"disabled": true
|
|
379
327
|
},
|
|
380
328
|
"high": {
|
|
381
|
-
"include": [
|
|
382
|
-
"reasoning.encrypted_content"
|
|
383
|
-
],
|
|
329
|
+
"include": ["reasoning.encrypted_content"],
|
|
384
330
|
"reasoningEffort": "high",
|
|
385
331
|
"reasoningSummary": "auto",
|
|
386
332
|
"textVerbosity": "low"
|
|
387
333
|
},
|
|
388
334
|
"medium": {
|
|
389
|
-
"include": [
|
|
390
|
-
"reasoning.encrypted_content"
|
|
391
|
-
],
|
|
335
|
+
"include": ["reasoning.encrypted_content"],
|
|
392
336
|
"reasoningEffort": "medium",
|
|
393
337
|
"reasoningSummary": "auto",
|
|
394
338
|
"textVerbosity": "low"
|
|
@@ -418,14 +362,8 @@
|
|
|
418
362
|
"output": 65536
|
|
419
363
|
},
|
|
420
364
|
"modalities": {
|
|
421
|
-
"input": [
|
|
422
|
-
|
|
423
|
-
"image",
|
|
424
|
-
"pdf"
|
|
425
|
-
],
|
|
426
|
-
"output": [
|
|
427
|
-
"text"
|
|
428
|
-
]
|
|
365
|
+
"input": ["text", "image", "pdf"],
|
|
366
|
+
"output": ["text"]
|
|
429
367
|
},
|
|
430
368
|
"name": "Gemini 2 5 Flash"
|
|
431
369
|
},
|
|
@@ -435,14 +373,8 @@
|
|
|
435
373
|
"output": 65536
|
|
436
374
|
},
|
|
437
375
|
"modalities": {
|
|
438
|
-
"input": [
|
|
439
|
-
|
|
440
|
-
"image",
|
|
441
|
-
"pdf"
|
|
442
|
-
],
|
|
443
|
-
"output": [
|
|
444
|
-
"text"
|
|
445
|
-
]
|
|
376
|
+
"input": ["text", "image", "pdf"],
|
|
377
|
+
"output": ["text"]
|
|
446
378
|
},
|
|
447
379
|
"name": "Gemini 2 5 Flash Lite"
|
|
448
380
|
},
|
|
@@ -452,14 +384,8 @@
|
|
|
452
384
|
"output": 65536
|
|
453
385
|
},
|
|
454
386
|
"modalities": {
|
|
455
|
-
"input": [
|
|
456
|
-
|
|
457
|
-
"image",
|
|
458
|
-
"pdf"
|
|
459
|
-
],
|
|
460
|
-
"output": [
|
|
461
|
-
"text"
|
|
462
|
-
]
|
|
387
|
+
"input": ["text", "image", "pdf"],
|
|
388
|
+
"output": ["text"]
|
|
463
389
|
},
|
|
464
390
|
"name": "Gemini 2 5 Pro"
|
|
465
391
|
},
|
|
@@ -469,14 +395,8 @@
|
|
|
469
395
|
"output": 65536
|
|
470
396
|
},
|
|
471
397
|
"modalities": {
|
|
472
|
-
"input": [
|
|
473
|
-
|
|
474
|
-
"image",
|
|
475
|
-
"pdf"
|
|
476
|
-
],
|
|
477
|
-
"output": [
|
|
478
|
-
"text"
|
|
479
|
-
]
|
|
398
|
+
"input": ["text", "image", "pdf"],
|
|
399
|
+
"output": ["text"]
|
|
480
400
|
},
|
|
481
401
|
"name": "Gemini 3 Flash Preview",
|
|
482
402
|
"options": {
|
|
@@ -513,14 +433,8 @@
|
|
|
513
433
|
"output": 65536
|
|
514
434
|
},
|
|
515
435
|
"modalities": {
|
|
516
|
-
"input": [
|
|
517
|
-
|
|
518
|
-
"image",
|
|
519
|
-
"pdf"
|
|
520
|
-
],
|
|
521
|
-
"output": [
|
|
522
|
-
"text"
|
|
523
|
-
]
|
|
436
|
+
"input": ["text", "image", "pdf"],
|
|
437
|
+
"output": ["text"]
|
|
524
438
|
},
|
|
525
439
|
"name": "Gemini 3 Pro Preview",
|
|
526
440
|
"options": {
|
|
@@ -550,14 +464,8 @@
|
|
|
550
464
|
"output": 64000
|
|
551
465
|
},
|
|
552
466
|
"modalities": {
|
|
553
|
-
"input": [
|
|
554
|
-
|
|
555
|
-
"image",
|
|
556
|
-
"pdf"
|
|
557
|
-
],
|
|
558
|
-
"output": [
|
|
559
|
-
"text"
|
|
560
|
-
]
|
|
467
|
+
"input": ["text", "image", "pdf"],
|
|
468
|
+
"output": ["text"]
|
|
561
469
|
},
|
|
562
470
|
"name": "Gemini Claude Opus 4 5 Thinking",
|
|
563
471
|
"options": {
|
|
@@ -586,14 +494,8 @@
|
|
|
586
494
|
"output": 64000
|
|
587
495
|
},
|
|
588
496
|
"modalities": {
|
|
589
|
-
"input": [
|
|
590
|
-
|
|
591
|
-
"image",
|
|
592
|
-
"pdf"
|
|
593
|
-
],
|
|
594
|
-
"output": [
|
|
595
|
-
"text"
|
|
596
|
-
]
|
|
497
|
+
"input": ["text", "image", "pdf"],
|
|
498
|
+
"output": ["text"]
|
|
597
499
|
},
|
|
598
500
|
"name": "Gemini Claude Sonnet 4 5"
|
|
599
501
|
},
|
|
@@ -603,14 +505,8 @@
|
|
|
603
505
|
"output": 64000
|
|
604
506
|
},
|
|
605
507
|
"modalities": {
|
|
606
|
-
"input": [
|
|
607
|
-
|
|
608
|
-
"image",
|
|
609
|
-
"pdf"
|
|
610
|
-
],
|
|
611
|
-
"output": [
|
|
612
|
-
"text"
|
|
613
|
-
]
|
|
508
|
+
"input": ["text", "image", "pdf"],
|
|
509
|
+
"output": ["text"]
|
|
614
510
|
},
|
|
615
511
|
"name": "Gemini Claude Sonnet 4 5 Thinking",
|
|
616
512
|
"options": {
|