opencodekit 0.17.7 → 0.17.9
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 +14 -14
- package/dist/template/.opencode/AGENTS.md +2 -1
- package/dist/template/.opencode/agent/general.md +1 -1
- package/dist/template/.opencode/agent/painter.md +1 -1
- package/dist/template/.opencode/agent/vision.md +1 -1
- package/dist/template/.opencode/opencode.json +179 -61
- package/dist/template/.opencode/package.json +3 -3
- package/dist/template/.opencode/plugin/sessions.ts +71 -266
- package/package.json +9 -9
- package/dist/template/.opencode/agent/looker.md +0 -102
- package/dist/template/.opencode/plugin/hashline.ts.bak +0 -757
- package/dist/template/.opencode/plugin/swarm-enforcer.ts +0 -371
- package/dist/template/.opencode/tool/swarm.ts +0 -605
package/dist/index.js
CHANGED
|
@@ -759,7 +759,7 @@ var cac = (name = "") => new CAC(name);
|
|
|
759
759
|
// package.json
|
|
760
760
|
var package_default = {
|
|
761
761
|
name: "opencodekit",
|
|
762
|
-
version: "0.17.
|
|
762
|
+
version: "0.17.9",
|
|
763
763
|
description: "CLI tool for bootstrapping and managing OpenCodeKit projects",
|
|
764
764
|
keywords: ["agents", "cli", "mcp", "opencode", "opencodekit", "template"],
|
|
765
765
|
license: "MIT",
|
|
@@ -794,16 +794,16 @@ var package_default = {
|
|
|
794
794
|
"format:check": "oxfmt --check"
|
|
795
795
|
},
|
|
796
796
|
dependencies: {
|
|
797
|
-
"@ai-sdk/provider": "^3.0.
|
|
798
|
-
"@ai-sdk/provider-utils": "^4.0.
|
|
797
|
+
"@ai-sdk/provider": "^3.0.8",
|
|
798
|
+
"@ai-sdk/provider-utils": "^4.0.15",
|
|
799
799
|
"@clack/prompts": "^0.7.0",
|
|
800
|
-
"@opencode-ai/plugin": "^1.
|
|
801
|
-
"@opentui/core": "^0.1.
|
|
802
|
-
"@opentui/solid": "^0.1.
|
|
800
|
+
"@opencode-ai/plugin": "^1.2.6",
|
|
801
|
+
"@opentui/core": "^0.1.80",
|
|
802
|
+
"@opentui/solid": "^0.1.80",
|
|
803
803
|
cac: "^6.7.14",
|
|
804
804
|
"cli-table3": "^0.6.5",
|
|
805
805
|
diff: "^8.0.3",
|
|
806
|
-
ora: "^9.
|
|
806
|
+
ora: "^9.3.0",
|
|
807
807
|
picocolors: "^1.1.1",
|
|
808
808
|
"solid-js": "1.9.9",
|
|
809
809
|
zod: "^3.25.76"
|
|
@@ -812,9 +812,9 @@ var package_default = {
|
|
|
812
812
|
"@biomejs/biome": "^1.9.4",
|
|
813
813
|
"@types/bun": "latest",
|
|
814
814
|
"@types/diff": "^8.0.0",
|
|
815
|
-
"@types/node": "^22.19.
|
|
815
|
+
"@types/node": "^22.19.11",
|
|
816
816
|
oxfmt: "^0.23.0",
|
|
817
|
-
oxlint: "^1.
|
|
817
|
+
oxlint: "^1.48.0",
|
|
818
818
|
typescript: "^5.9.3"
|
|
819
819
|
},
|
|
820
820
|
engines: {
|
|
@@ -9263,12 +9263,12 @@ var MODEL_PRESETS = {
|
|
|
9263
9263
|
build: "github-copilot/claude-opus-4.6",
|
|
9264
9264
|
plan: "openai/gpt-5.3-codex",
|
|
9265
9265
|
review: "openai/gpt-5.3-codex",
|
|
9266
|
-
explore: "
|
|
9266
|
+
explore: "proxypal/gemini-3-flash",
|
|
9267
9267
|
general: "github-copilot/gpt-5.2-codex",
|
|
9268
|
-
looker: "
|
|
9269
|
-
vision: "
|
|
9270
|
-
scout: "
|
|
9271
|
-
painter: "
|
|
9268
|
+
looker: "proxypal/gemini-3-flash",
|
|
9269
|
+
vision: "proxypal/gemini-3-pro-high",
|
|
9270
|
+
scout: "proxypal/claude-sonnet-4-6",
|
|
9271
|
+
painter: "proxypal/gemini-3-pro-image"
|
|
9272
9272
|
}
|
|
9273
9273
|
}
|
|
9274
9274
|
};
|
|
@@ -88,9 +88,10 @@ Use specialist agents by intent:
|
|
|
88
88
|
| `@review` | Correctness/security/debug review |
|
|
89
89
|
| `@plan` | Architecture and execution plans |
|
|
90
90
|
| `@vision` | UI/UX and accessibility judgment |
|
|
91
|
-
| `@looker` | OCR/PDF/diagram extraction |
|
|
92
91
|
| `@painter` | Image generation/editing |
|
|
93
92
|
|
|
93
|
+
**Note:** PDF extraction → use `pdf-extract` skill; Images → use vision-capable model directly
|
|
94
|
+
|
|
94
95
|
**Parallelism rule**: Use parallel subagents for 3+ independent tasks; otherwise work sequentially.
|
|
95
96
|
|
|
96
97
|
---
|
|
@@ -232,5 +232,5 @@ Delegate to:
|
|
|
232
232
|
- `@review` for deep debugging/security review
|
|
233
233
|
- `@plan` for architecture or decomposition
|
|
234
234
|
- `@vision` for UI/UX analysis
|
|
235
|
-
-
|
|
235
|
+
- PDF extraction → use `pdf-extract` skill
|
|
236
236
|
- `@painter` for image generation/editing
|
|
@@ -34,7 +34,7 @@ Generate or edit images only when explicitly requested.
|
|
|
34
34
|
## Rules
|
|
35
35
|
|
|
36
36
|
- No design critique or accessibility audit (delegate to `@vision`)
|
|
37
|
-
- No
|
|
37
|
+
- No PDF extraction tasks (use `pdf-extract` skill)
|
|
38
38
|
- Preserve `thoughtSignature` across iterative edits
|
|
39
39
|
- Do not add visual elements not requested
|
|
40
40
|
- Return deterministic metadata for every response
|
|
@@ -55,7 +55,7 @@ Assess visual quality, accessibility, and design consistency, then return concre
|
|
|
55
55
|
### Do Not Use For
|
|
56
56
|
|
|
57
57
|
- Image generation/editing → delegate to `@painter`
|
|
58
|
-
-
|
|
58
|
+
- PDF extraction-heavy work → use `pdf-extract` skill
|
|
59
59
|
- Code implementation → delegate to `@build`
|
|
60
60
|
|
|
61
61
|
## Skills
|
|
@@ -16,10 +16,6 @@
|
|
|
16
16
|
"description": "General-purpose subagent for fast, well-defined tasks; delegates complexity quickly",
|
|
17
17
|
"model": "opencode/minimax-m2.5-free"
|
|
18
18
|
},
|
|
19
|
-
"looker": {
|
|
20
|
-
"description": "Media extraction specialist for images, PDFs, diagrams",
|
|
21
|
-
"model": "proxypal/gemini-3-flash"
|
|
22
|
-
},
|
|
23
19
|
"painter": {
|
|
24
20
|
"description": "Image generation and editing specialist using Gemini 3 Pro Image. Use for creating UI mockups, app icons, hero images, visual assets, and editing/redacting existing images",
|
|
25
21
|
"model": "proxypal/gemini-3-pro-image"
|
|
@@ -153,37 +149,10 @@
|
|
|
153
149
|
},
|
|
154
150
|
"plugin": [
|
|
155
151
|
"@tarquinen/opencode-dcp@latest",
|
|
156
|
-
"@franlol/opencode-md-table-formatter@0.0.3"
|
|
152
|
+
"@franlol/opencode-md-table-formatter@0.0.3",
|
|
153
|
+
"openslimedit@latest"
|
|
157
154
|
],
|
|
158
155
|
"provider": {
|
|
159
|
-
"modal": {
|
|
160
|
-
"options": {
|
|
161
|
-
"baseURL": "https://api.us-west-2.modal.direct/v1",
|
|
162
|
-
"apiKey": "{env:MODAL_API_KEY}"
|
|
163
|
-
},
|
|
164
|
-
"name": "Modal",
|
|
165
|
-
"models": {
|
|
166
|
-
"zai-org/GLM-5-FP8": {
|
|
167
|
-
"name": "GLM-5",
|
|
168
|
-
"reasoning": true,
|
|
169
|
-
"options": {
|
|
170
|
-
"reasoningEffort": "high",
|
|
171
|
-
"reasoningSummary": "true",
|
|
172
|
-
"temperature": 1,
|
|
173
|
-
"top_k": 40,
|
|
174
|
-
"top_p": 0.95,
|
|
175
|
-
"maxOutputTokens": 131072,
|
|
176
|
-
"thinking": {
|
|
177
|
-
"type": "enabled"
|
|
178
|
-
}
|
|
179
|
-
},
|
|
180
|
-
"modalities": {
|
|
181
|
-
"input": ["text", "image", "pdf"],
|
|
182
|
-
"output": ["text"]
|
|
183
|
-
}
|
|
184
|
-
}
|
|
185
|
-
}
|
|
186
|
-
},
|
|
187
156
|
"github-copilot": {
|
|
188
157
|
"models": {
|
|
189
158
|
"claude-haiku-4.5": {
|
|
@@ -249,13 +218,13 @@
|
|
|
249
218
|
"variants": {
|
|
250
219
|
"adaptive": {
|
|
251
220
|
"options": {
|
|
221
|
+
"max_tokens": 16000,
|
|
252
222
|
"output_config": {
|
|
253
223
|
"effort": "max"
|
|
254
224
|
},
|
|
255
225
|
"thinking": {
|
|
256
226
|
"type": "adaptive"
|
|
257
|
-
}
|
|
258
|
-
"max_tokens": 64000
|
|
227
|
+
}
|
|
259
228
|
}
|
|
260
229
|
},
|
|
261
230
|
"high": {
|
|
@@ -276,6 +245,51 @@
|
|
|
276
245
|
}
|
|
277
246
|
}
|
|
278
247
|
},
|
|
248
|
+
"claude-sonnet-4.6": {
|
|
249
|
+
"attachment": true,
|
|
250
|
+
"limit": {
|
|
251
|
+
"context": 128000,
|
|
252
|
+
"output": 32000
|
|
253
|
+
},
|
|
254
|
+
"options": {
|
|
255
|
+
"thinking": {
|
|
256
|
+
"budget_tokens": 16000,
|
|
257
|
+
"type": "enabled"
|
|
258
|
+
}
|
|
259
|
+
},
|
|
260
|
+
"reasoning": true,
|
|
261
|
+
"temperature": true,
|
|
262
|
+
"tool_call": true,
|
|
263
|
+
"variants": {
|
|
264
|
+
"adaptive": {
|
|
265
|
+
"options": {
|
|
266
|
+
"max_tokens": 16000,
|
|
267
|
+
"output_config": {
|
|
268
|
+
"effort": "max"
|
|
269
|
+
},
|
|
270
|
+
"thinking": {
|
|
271
|
+
"type": "adaptive"
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
},
|
|
275
|
+
"high": {
|
|
276
|
+
"options": {
|
|
277
|
+
"thinking": {
|
|
278
|
+
"budget_tokens": 16000,
|
|
279
|
+
"type": "enabled"
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
},
|
|
283
|
+
"max": {
|
|
284
|
+
"options": {
|
|
285
|
+
"thinking": {
|
|
286
|
+
"budget_tokens": 32000,
|
|
287
|
+
"type": "enabled"
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
},
|
|
279
293
|
"claude-sonnet-4.5": {
|
|
280
294
|
"attachment": true,
|
|
281
295
|
"options": {
|
|
@@ -404,6 +418,34 @@
|
|
|
404
418
|
}
|
|
405
419
|
}
|
|
406
420
|
},
|
|
421
|
+
"modal": {
|
|
422
|
+
"models": {
|
|
423
|
+
"zai-org/GLM-5-FP8": {
|
|
424
|
+
"modalities": {
|
|
425
|
+
"input": ["text", "image", "pdf"],
|
|
426
|
+
"output": ["text"]
|
|
427
|
+
},
|
|
428
|
+
"name": "GLM-5",
|
|
429
|
+
"options": {
|
|
430
|
+
"maxOutputTokens": 131072,
|
|
431
|
+
"reasoningEffort": "high",
|
|
432
|
+
"reasoningSummary": "true",
|
|
433
|
+
"temperature": 1,
|
|
434
|
+
"thinking": {
|
|
435
|
+
"type": "enabled"
|
|
436
|
+
},
|
|
437
|
+
"top_k": 40,
|
|
438
|
+
"top_p": 0.95
|
|
439
|
+
},
|
|
440
|
+
"reasoning": true
|
|
441
|
+
}
|
|
442
|
+
},
|
|
443
|
+
"name": "Modal",
|
|
444
|
+
"options": {
|
|
445
|
+
"apiKey": "{env:MODAL_API_KEY}",
|
|
446
|
+
"baseURL": "https://api.us-west-2.modal.direct/v1"
|
|
447
|
+
}
|
|
448
|
+
},
|
|
407
449
|
"openai": {
|
|
408
450
|
"models": {
|
|
409
451
|
"gpt-5.2": {
|
|
@@ -502,31 +544,19 @@
|
|
|
502
544
|
},
|
|
503
545
|
"proxypal": {
|
|
504
546
|
"models": {
|
|
505
|
-
"claude-
|
|
547
|
+
"claude-haiku-4-5": {
|
|
506
548
|
"limit": {
|
|
507
549
|
"context": 200000,
|
|
508
550
|
"output": 64000
|
|
509
551
|
},
|
|
510
|
-
"name": "Claude
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
552
|
+
"name": "Claude Haiku 4 5"
|
|
553
|
+
},
|
|
554
|
+
"claude-haiku-4-5-20251001": {
|
|
555
|
+
"limit": {
|
|
556
|
+
"context": 200000,
|
|
557
|
+
"output": 64000
|
|
516
558
|
},
|
|
517
|
-
"
|
|
518
|
-
"variants": {
|
|
519
|
-
"low": {
|
|
520
|
-
"thinkingConfig": {
|
|
521
|
-
"thinkingBudget": 8192
|
|
522
|
-
}
|
|
523
|
-
},
|
|
524
|
-
"max": {
|
|
525
|
-
"thinkingConfig": {
|
|
526
|
-
"thinkingBudget": 32768
|
|
527
|
-
}
|
|
528
|
-
}
|
|
529
|
-
}
|
|
559
|
+
"name": "Claude Haiku 4 5 20251001"
|
|
530
560
|
},
|
|
531
561
|
"claude-opus-4-6-thinking": {
|
|
532
562
|
"limit": {
|
|
@@ -554,6 +584,20 @@
|
|
|
554
584
|
}
|
|
555
585
|
}
|
|
556
586
|
},
|
|
587
|
+
"claude-sonnet-4": {
|
|
588
|
+
"limit": {
|
|
589
|
+
"context": 200000,
|
|
590
|
+
"output": 64000
|
|
591
|
+
},
|
|
592
|
+
"name": "Claude Sonnet 4"
|
|
593
|
+
},
|
|
594
|
+
"claude-sonnet-4-20250514": {
|
|
595
|
+
"limit": {
|
|
596
|
+
"context": 200000,
|
|
597
|
+
"output": 64000
|
|
598
|
+
},
|
|
599
|
+
"name": "Claude Sonnet 4 20250514"
|
|
600
|
+
},
|
|
557
601
|
"claude-sonnet-4-5": {
|
|
558
602
|
"limit": {
|
|
559
603
|
"context": 200000,
|
|
@@ -561,6 +605,13 @@
|
|
|
561
605
|
},
|
|
562
606
|
"name": "Claude Sonnet 4 5"
|
|
563
607
|
},
|
|
608
|
+
"claude-sonnet-4-5-20250929": {
|
|
609
|
+
"limit": {
|
|
610
|
+
"context": 200000,
|
|
611
|
+
"output": 64000
|
|
612
|
+
},
|
|
613
|
+
"name": "Claude Sonnet 4 5 20250929"
|
|
614
|
+
},
|
|
564
615
|
"claude-sonnet-4-5-thinking": {
|
|
565
616
|
"limit": {
|
|
566
617
|
"context": 200000,
|
|
@@ -587,6 +638,13 @@
|
|
|
587
638
|
}
|
|
588
639
|
}
|
|
589
640
|
},
|
|
641
|
+
"claude-sonnet-4-6": {
|
|
642
|
+
"limit": {
|
|
643
|
+
"context": 200000,
|
|
644
|
+
"output": 64000
|
|
645
|
+
},
|
|
646
|
+
"name": "Claude Sonnet 4 6"
|
|
647
|
+
},
|
|
590
648
|
"gemini-2.5-flash": {
|
|
591
649
|
"limit": {
|
|
592
650
|
"context": 1000000,
|
|
@@ -889,6 +947,17 @@
|
|
|
889
947
|
},
|
|
890
948
|
"reasoning": true
|
|
891
949
|
},
|
|
950
|
+
"gpt-5.3-codex-spark": {
|
|
951
|
+
"limit": {
|
|
952
|
+
"context": 400000,
|
|
953
|
+
"output": 32768
|
|
954
|
+
},
|
|
955
|
+
"name": "Gpt 5 3 Codex Spark",
|
|
956
|
+
"options": {
|
|
957
|
+
"reasoningEffort": "medium"
|
|
958
|
+
},
|
|
959
|
+
"reasoning": true
|
|
960
|
+
},
|
|
892
961
|
"gpt-oss-120b-medium": {
|
|
893
962
|
"limit": {
|
|
894
963
|
"context": 128000,
|
|
@@ -970,12 +1039,61 @@
|
|
|
970
1039
|
},
|
|
971
1040
|
"name": "Kiro Claude Sonnet 4 Agentic"
|
|
972
1041
|
},
|
|
1042
|
+
"kiro-deepseek-3-2": {
|
|
1043
|
+
"limit": {
|
|
1044
|
+
"context": 128000,
|
|
1045
|
+
"output": 8192
|
|
1046
|
+
},
|
|
1047
|
+
"name": "Kiro Deepseek 3 2"
|
|
1048
|
+
},
|
|
1049
|
+
"kiro-deepseek-3-2-agentic": {
|
|
1050
|
+
"limit": {
|
|
1051
|
+
"context": 128000,
|
|
1052
|
+
"output": 8192
|
|
1053
|
+
},
|
|
1054
|
+
"name": "Kiro Deepseek 3 2 Agentic"
|
|
1055
|
+
},
|
|
1056
|
+
"kiro-minimax-m2-1": {
|
|
1057
|
+
"limit": {
|
|
1058
|
+
"context": 128000,
|
|
1059
|
+
"output": 16384
|
|
1060
|
+
},
|
|
1061
|
+
"name": "Kiro Minimax M2 1"
|
|
1062
|
+
},
|
|
1063
|
+
"kiro-minimax-m2-1-agentic": {
|
|
1064
|
+
"limit": {
|
|
1065
|
+
"context": 128000,
|
|
1066
|
+
"output": 16384
|
|
1067
|
+
},
|
|
1068
|
+
"name": "Kiro Minimax M2 1 Agentic"
|
|
1069
|
+
},
|
|
1070
|
+
"kiro-qwen3-coder-next": {
|
|
1071
|
+
"limit": {
|
|
1072
|
+
"context": 1000000,
|
|
1073
|
+
"output": 65536
|
|
1074
|
+
},
|
|
1075
|
+
"name": "Kiro Qwen3 Coder Next"
|
|
1076
|
+
},
|
|
1077
|
+
"kiro-qwen3-coder-next-agentic": {
|
|
1078
|
+
"limit": {
|
|
1079
|
+
"context": 1000000,
|
|
1080
|
+
"output": 65536
|
|
1081
|
+
},
|
|
1082
|
+
"name": "Kiro Qwen3 Coder Next Agentic"
|
|
1083
|
+
},
|
|
973
1084
|
"tab_flash_lite_preview": {
|
|
974
1085
|
"limit": {
|
|
975
1086
|
"context": 128000,
|
|
976
1087
|
"output": 16384
|
|
977
1088
|
},
|
|
978
1089
|
"name": "Tab_flash_lite_preview"
|
|
1090
|
+
},
|
|
1091
|
+
"tab_jump_flash_lite_preview": {
|
|
1092
|
+
"limit": {
|
|
1093
|
+
"context": 128000,
|
|
1094
|
+
"output": 16384
|
|
1095
|
+
},
|
|
1096
|
+
"name": "Tab_jump_flash_lite_preview"
|
|
979
1097
|
}
|
|
980
1098
|
},
|
|
981
1099
|
"name": "ProxyPal",
|
|
@@ -1021,18 +1139,18 @@
|
|
|
1021
1139
|
},
|
|
1022
1140
|
"glm-5": {
|
|
1023
1141
|
"name": "GLM-5",
|
|
1024
|
-
"reasoning": true,
|
|
1025
1142
|
"options": {
|
|
1143
|
+
"maxOutputTokens": 131072,
|
|
1026
1144
|
"reasoningEffort": "high",
|
|
1027
1145
|
"reasoningSummary": "true",
|
|
1028
1146
|
"temperature": 1,
|
|
1029
|
-
"top_k": 40,
|
|
1030
|
-
"top_p": 0.95,
|
|
1031
|
-
"maxOutputTokens": 131072,
|
|
1032
1147
|
"thinking": {
|
|
1033
1148
|
"type": "enabled"
|
|
1034
|
-
}
|
|
1035
|
-
|
|
1149
|
+
},
|
|
1150
|
+
"top_k": 40,
|
|
1151
|
+
"top_p": 0.95
|
|
1152
|
+
},
|
|
1153
|
+
"reasoning": true
|
|
1036
1154
|
}
|
|
1037
1155
|
},
|
|
1038
1156
|
"name": "Z.AI Coding Plan"
|
|
@@ -11,11 +11,11 @@
|
|
|
11
11
|
"type-check": "tsc --noEmit"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@opencode-ai/plugin": "1.2.
|
|
14
|
+
"@opencode-ai/plugin": "1.2.6"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@types/node": "^25.
|
|
18
|
-
"bun-types": "^1.3.
|
|
17
|
+
"@types/node": "^25.3.0",
|
|
18
|
+
"bun-types": "^1.3.9",
|
|
19
19
|
"typescript": "^5.9.3"
|
|
20
20
|
}
|
|
21
21
|
}
|