opencodekit 0.15.0 → 0.15.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.
Files changed (52) hide show
  1. package/dist/index.js +367 -31
  2. package/dist/template/.opencode/README.md +1 -1
  3. package/dist/template/.opencode/agent/vision.md +4 -4
  4. package/dist/template/.opencode/command/agent-browser.md +21 -0
  5. package/dist/template/.opencode/command/complete-next-task.md +77 -0
  6. package/dist/template/.opencode/command/create.md +38 -3
  7. package/dist/template/.opencode/command/design-audit.md +1 -1
  8. package/dist/template/.opencode/command/design.md +1 -1
  9. package/dist/template/.opencode/command/finish.md +8 -0
  10. package/dist/template/.opencode/command/frontend-design.md +21 -0
  11. package/dist/template/.opencode/command/index-knowledge.md +25 -0
  12. package/dist/template/.opencode/command/init.md +6 -0
  13. package/dist/template/.opencode/command/opensrc.md +58 -0
  14. package/dist/template/.opencode/command/skill-create.md +3 -3
  15. package/dist/template/.opencode/command/skill-optimize.md +2 -2
  16. package/dist/template/.opencode/command/start.md +15 -6
  17. package/dist/template/.opencode/command/ui-review.md +1 -1
  18. package/dist/template/.opencode/memory/_templates/prd.md +50 -14
  19. package/dist/template/.opencode/opencode.json +143 -159
  20. package/dist/template/.opencode/package.json +1 -1
  21. package/dist/template/.opencode/skill/accessibility-audit/SKILL.md +1 -1
  22. package/dist/template/.opencode/skill/agent-browser/SKILL.md +376 -0
  23. package/dist/template/.opencode/skill/design-system-audit/SKILL.md +1 -1
  24. package/dist/template/.opencode/skill/frontend-design/SKILL.md +155 -0
  25. package/dist/template/.opencode/skill/frontend-design/references/animation/motion-advanced.md +224 -0
  26. package/dist/template/.opencode/skill/frontend-design/references/animation/motion-core.md +171 -0
  27. package/dist/template/.opencode/skill/frontend-design/references/canvas/execution.md +90 -0
  28. package/dist/template/.opencode/skill/frontend-design/references/canvas/philosophy.md +94 -0
  29. package/dist/template/.opencode/skill/frontend-design/references/shadcn/accessibility.md +132 -0
  30. package/dist/template/.opencode/skill/frontend-design/references/shadcn/core-components.md +153 -0
  31. package/dist/template/.opencode/skill/frontend-design/references/shadcn/form-components.md +158 -0
  32. package/dist/template/.opencode/skill/frontend-design/references/shadcn/setup.md +69 -0
  33. package/dist/template/.opencode/skill/frontend-design/references/shadcn/theming.md +152 -0
  34. package/dist/template/.opencode/skill/frontend-design/references/tailwind/responsive.md +112 -0
  35. package/dist/template/.opencode/skill/frontend-design/references/tailwind/utilities-layout.md +134 -0
  36. package/dist/template/.opencode/skill/frontend-design/references/tailwind/utilities-styling.md +165 -0
  37. package/dist/template/.opencode/skill/frontend-design/references/tailwind/v4-config.md +147 -0
  38. package/dist/template/.opencode/skill/frontend-design/references/tailwind/v4-features.md +128 -0
  39. package/dist/template/.opencode/skill/index-knowledge/SKILL.md +358 -0
  40. package/dist/template/.opencode/skill/mockup-to-code/SKILL.md +1 -1
  41. package/dist/template/.opencode/skill/opensrc/SKILL.md +115 -0
  42. package/dist/template/.opencode/skill/opensrc/references/architecture.md +176 -0
  43. package/dist/template/.opencode/skill/opensrc/references/cli-usage.md +176 -0
  44. package/dist/template/.opencode/skill/opensrc/references/registry-support.md +137 -0
  45. package/dist/template/.opencode/skill/prd/SKILL.md +212 -0
  46. package/dist/template/.opencode/skill/prd-task/SKILL.md +128 -0
  47. package/dist/template/.opencode/skill/prd-task/references/prd-schema.json +28 -0
  48. package/dist/template/.opencode/skill/skill-creator/SKILL.md +155 -0
  49. package/dist/template/.opencode/skill/ui-ux-research/SKILL.md +1 -1
  50. package/dist/template/.opencode/skill/visual-analysis/SKILL.md +1 -1
  51. package/package.json +1 -1
  52. package/dist/template/.opencode/skill/frontend-aesthetics/SKILL.md +0 -117
@@ -5,10 +5,6 @@
5
5
  "description": "Primary development agent with full codebase access",
6
6
  "model": "opencode/minimax-m2.1-free"
7
7
  },
8
- "plan": {
9
- "description": "Primary planning agent for architecture and multi-phase execution",
10
- "model": "opencode/minimax-m2.1-free"
11
- },
12
8
  "compaction": {
13
9
  "description": "Session summarizer for context continuity across compactions"
14
10
  },
@@ -16,13 +12,17 @@
16
12
  "description": "Fast codebase search specialist",
17
13
  "model": "opencode/grok-code"
18
14
  },
15
+ "general": {
16
+ "description": "General-purpose subagent for fast, well-defined tasks; delegates complexity quickly",
17
+ "model": "opencode/glm-4.7-free"
18
+ },
19
19
  "looker": {
20
20
  "description": "Media extraction specialist for images, PDFs, diagrams",
21
21
  "model": "opencode/gpt-5-nano"
22
22
  },
23
- "general": {
24
- "description": "General-purpose subagent for fast, well-defined tasks; delegates complexity quickly",
25
- "model": "opencode/glm-4.7-free"
23
+ "plan": {
24
+ "description": "Primary planning agent for architecture and multi-phase execution",
25
+ "model": "opencode/minimax-m2.1-free"
26
26
  },
27
27
  "review": {
28
28
  "description": "Code review, debugging, and security audit specialist",
@@ -47,61 +47,26 @@
47
47
  "chatMaxRetries": 2,
48
48
  "continue_loop_on_deny": false,
49
49
  "lsp": true,
50
- "primary_tools": [
51
- "edit",
52
- "write",
53
- "bash"
54
- ]
50
+ "primary_tools": ["edit", "write", "bash"]
55
51
  },
56
52
  "formatter": {
57
53
  "biome": {
58
- "command": [
59
- "npx",
60
- "@biomejs/biome",
61
- "check",
62
- "--write",
63
- "$FILE"
64
- ],
65
- "extensions": [
66
- ".js",
67
- ".jsx",
68
- ".ts",
69
- ".tsx",
70
- ".json",
71
- ".jsonc"
72
- ]
54
+ "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
55
+ "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
73
56
  },
74
57
  "cargo-fmt": {
75
- "command": [
76
- "cargo",
77
- "fmt",
78
- "--",
79
- "$FILE"
80
- ],
81
- "extensions": [
82
- ".rs"
83
- ]
58
+ "command": ["cargo", "fmt", "--", "$FILE"],
59
+ "extensions": [".rs"]
84
60
  },
85
61
  "java-formatter": {
86
- "command": [
87
- "google-java-format",
88
- "--replace",
89
- "$FILE"
90
- ],
62
+ "command": ["google-java-format", "--replace", "$FILE"],
91
63
  "environment": {
92
64
  "JAVA_HOME": "{env:JAVA_HOME}"
93
65
  },
94
- "extensions": [
95
- ".java"
96
- ]
66
+ "extensions": [".java"]
97
67
  },
98
68
  "oxfmt": {
99
- "command": [
100
- "npx",
101
- "oxfmt",
102
- "--write",
103
- "$FILE"
104
- ],
69
+ "command": ["npx", "oxfmt", "--write", "$FILE"],
105
70
  "extensions": [
106
71
  ".js",
107
72
  ".jsx",
@@ -186,56 +151,6 @@
186
151
  "@franlol/opencode-md-table-formatter@0.0.3"
187
152
  ],
188
153
  "provider": {
189
- "openai": {
190
- "models": {
191
- "gpt-5": {
192
- "variants": {
193
- "high": {
194
- "reasoningEffort": "high",
195
- "textVerbosity": "low",
196
- "reasoningSummary": "auto",
197
- "include": [
198
- "reasoning.encrypted_content"
199
- ]
200
- },
201
- "medium": {
202
- "reasoningEffort": "medium",
203
- "textVerbosity": "low",
204
- "reasoningSummary": "auto",
205
- "include": [
206
- "reasoning.encrypted_content"
207
- ]
208
- },
209
- "fast": {
210
- "disabled": true
211
- }
212
- }
213
- },
214
- "gpt-5-codex": {
215
- "variants": {
216
- "high": {
217
- "reasoningEffort": "high",
218
- "textVerbosity": "low",
219
- "reasoningSummary": "auto",
220
- "include": [
221
- "reasoning.encrypted_content"
222
- ]
223
- },
224
- "medium": {
225
- "reasoningEffort": "medium",
226
- "textVerbosity": "low",
227
- "reasoningSummary": "auto",
228
- "include": [
229
- "reasoning.encrypted_content"
230
- ]
231
- },
232
- "fast": {
233
- "disabled": true
234
- }
235
- }
236
- }
237
- }
238
- },
239
154
  "github-copilot": {
240
155
  "models": {
241
156
  "claude-haiku-4.5": {
@@ -299,6 +214,48 @@
299
214
  },
300
215
  "npm": "@ai-sdk/anthropic"
301
216
  },
217
+ "openai": {
218
+ "models": {
219
+ "gpt-5": {
220
+ "variants": {
221
+ "fast": {
222
+ "disabled": true
223
+ },
224
+ "high": {
225
+ "include": ["reasoning.encrypted_content"],
226
+ "reasoningEffort": "high",
227
+ "reasoningSummary": "auto",
228
+ "textVerbosity": "low"
229
+ },
230
+ "medium": {
231
+ "include": ["reasoning.encrypted_content"],
232
+ "reasoningEffort": "medium",
233
+ "reasoningSummary": "auto",
234
+ "textVerbosity": "low"
235
+ }
236
+ }
237
+ },
238
+ "gpt-5-codex": {
239
+ "variants": {
240
+ "fast": {
241
+ "disabled": true
242
+ },
243
+ "high": {
244
+ "include": ["reasoning.encrypted_content"],
245
+ "reasoningEffort": "high",
246
+ "reasoningSummary": "auto",
247
+ "textVerbosity": "low"
248
+ },
249
+ "medium": {
250
+ "include": ["reasoning.encrypted_content"],
251
+ "reasoningEffort": "medium",
252
+ "reasoningSummary": "auto",
253
+ "textVerbosity": "low"
254
+ }
255
+ }
256
+ }
257
+ }
258
+ },
302
259
  "opencode": {
303
260
  "models": {
304
261
  "big-pickle": {
@@ -319,28 +276,44 @@
319
276
  "context": 880964,
320
277
  "output": 65536
321
278
  },
322
- "name": "Gemini 2 5 Computer Use Preview 10 2025"
279
+ "name": "Gemini 2 5 Computer Use Preview 10 2025",
280
+ "modalities": {
281
+ "input": ["text", "image", "pdf"],
282
+ "output": ["text"]
283
+ }
323
284
  },
324
285
  "gemini-2.5-flash": {
325
286
  "limit": {
326
287
  "context": 880964,
327
288
  "output": 65536
328
289
  },
329
- "name": "Gemini 2 5 Flash"
290
+ "name": "Gemini 2 5 Flash",
291
+ "modalities": {
292
+ "input": ["text", "image", "pdf"],
293
+ "output": ["text"]
294
+ }
330
295
  },
331
296
  "gemini-2.5-flash-lite": {
332
297
  "limit": {
333
298
  "context": 880964,
334
299
  "output": 65536
335
300
  },
336
- "name": "Gemini 2 5 Flash Lite"
301
+ "name": "Gemini 2 5 Flash Lite",
302
+ "modalities": {
303
+ "input": ["text", "image", "pdf"],
304
+ "output": ["text"]
305
+ }
337
306
  },
338
307
  "gemini-2.5-pro": {
339
308
  "limit": {
340
309
  "context": 880964,
341
310
  "output": 65536
342
311
  },
343
- "name": "Gemini 2 5 Pro"
312
+ "name": "Gemini 2 5 Pro",
313
+ "modalities": {
314
+ "input": ["text", "image", "pdf"],
315
+ "output": ["text"]
316
+ }
344
317
  },
345
318
  "gemini-3-flash-preview": {
346
319
  "limit": {
@@ -348,21 +321,33 @@
348
321
  "output": 65536
349
322
  },
350
323
  "name": "Gemini 3 Flash Preview",
351
- "options": {
352
- "generationConfig": {
353
- "thinkingConfig": {
354
- "thinkingLevel": "HIGH",
355
- "includeThoughts": true
356
- }
324
+ "modalities": {
325
+ "input": ["text", "image", "pdf"],
326
+ "output": ["text"]
327
+ },
328
+ "variants": {
329
+ "low": {
330
+ "thinkingLevel": "low"
331
+ },
332
+ "medium": {
333
+ "thinkingLevel": "medium"
334
+ },
335
+ "high": {
336
+ "thinkingLevel": "high"
357
337
  }
358
- }
338
+ },
339
+ "reasoning": true
359
340
  },
360
341
  "gemini-3-pro-image-preview": {
361
342
  "limit": {
362
343
  "context": 880964,
363
344
  "output": 65536
364
345
  },
365
- "name": "Gemini 3 Pro Image Preview"
346
+ "name": "Gemini 3 Pro Image Preview",
347
+ "modalities": {
348
+ "input": ["text", "image", "pdf"],
349
+ "output": ["text"]
350
+ }
366
351
  },
367
352
  "gemini-3-pro-preview": {
368
353
  "limit": {
@@ -370,79 +355,78 @@
370
355
  "output": 65536
371
356
  },
372
357
  "name": "Gemini 3 Pro Preview",
373
- "options": {
374
- "generationConfig": {
375
- "thinkingConfig": {
376
- "thinkingLevel": "HIGH",
377
- "includeThoughts": true
378
- }
358
+ "modalities": {
359
+ "input": ["text", "image", "pdf"],
360
+ "output": ["text"]
361
+ },
362
+ "variants": {
363
+ "low": {
364
+ "thinkingLevel": "low"
365
+ },
366
+ "high": {
367
+ "thinkingLevel": "high"
379
368
  }
380
- }
369
+ },
370
+ "reasoning": true
381
371
  },
382
372
  "gemini-claude-opus-4-5-thinking": {
383
373
  "limit": {
384
374
  "context": 168000,
385
375
  "output": 64000
386
376
  },
377
+ "modalities": {
378
+ "input": ["text", "image", "pdf"],
379
+ "output": ["text"]
380
+ },
387
381
  "name": "Gemini Claude Opus 4 5 Thinking",
388
- "options": {
389
- "thinking": {
390
- "budgetTokens": 32768,
391
- "type": "enabled"
382
+ "variants": {
383
+ "low": {
384
+ "thinkingConfig": {
385
+ "thinkingBudget": 8192
386
+ }
387
+ },
388
+ "max": {
389
+ "thinkingConfig": {
390
+ "thinkingBudget": 32768
391
+ }
392
392
  }
393
393
  },
394
- "reasoning": true,
395
- "modalities": {
396
- "input": [
397
- "text",
398
- "image",
399
- "pdf"
400
- ],
401
- "output": [
402
- "text"
403
- ]
404
- }
394
+ "reasoning": true
405
395
  },
406
396
  "gemini-claude-sonnet-4-5": {
407
397
  "limit": {
408
398
  "context": 168000,
409
399
  "output": 64000
410
400
  },
411
- "name": "Gemini Claude Sonnet 4 5",
412
401
  "modalities": {
413
- "input": [
414
- "text",
415
- "image",
416
- "pdf"
417
- ],
418
- "output": [
419
- "text"
420
- ]
421
- }
402
+ "input": ["text", "image", "pdf"],
403
+ "output": ["text"]
404
+ },
405
+ "name": "Gemini Claude Sonnet 4 5"
422
406
  },
423
407
  "gemini-claude-sonnet-4-5-thinking": {
424
408
  "limit": {
425
409
  "context": 168000,
426
410
  "output": 64000
427
411
  },
412
+ "modalities": {
413
+ "input": ["text", "image", "pdf"],
414
+ "output": ["text"]
415
+ },
428
416
  "name": "Gemini Claude Sonnet 4 5 Thinking",
429
- "options": {
430
- "thinking": {
431
- "budgetTokens": 32768,
432
- "type": "enabled"
417
+ "variants": {
418
+ "low": {
419
+ "thinkingConfig": {
420
+ "thinkingBudget": 8192
421
+ }
422
+ },
423
+ "max": {
424
+ "thinkingConfig": {
425
+ "thinkingBudget": 32768
426
+ }
433
427
  }
434
428
  },
435
- "reasoning": true,
436
- "modalities": {
437
- "input": [
438
- "text",
439
- "image",
440
- "pdf"
441
- ],
442
- "output": [
443
- "text"
444
- ]
445
- }
429
+ "reasoning": true
446
430
  },
447
431
  "glm-4.5": {
448
432
  "limit": {
@@ -11,7 +11,7 @@
11
11
  "type-check": "tsc --noEmit"
12
12
  },
13
13
  "dependencies": {
14
- "@opencode-ai/plugin": "1.1.14"
14
+ "@opencode-ai/plugin": "1.1.15"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@types/node": "^25.0.3",
@@ -181,5 +181,5 @@ Save audit reports to `.opencode/memory/design/accessibility/`
181
181
 
182
182
  | Need | Skill |
183
183
  | -------------- | --------------------- |
184
- | Design quality | `frontend-aesthetics` |
184
+ | Design quality | `frontend-design` |
185
185
  | UI research | `ui-ux-research` |