opencodekit 0.6.6 → 0.7.0

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 (51) hide show
  1. package/dist/index.js +656 -651
  2. package/dist/template/.opencode/AGENTS.md +56 -11
  3. package/dist/template/.opencode/README.md +18 -16
  4. package/dist/template/.opencode/command/accessibility-check.md +1 -1
  5. package/dist/template/.opencode/command/analyze-mockup.md +1 -1
  6. package/dist/template/.opencode/command/analyze-project.md +2 -0
  7. package/dist/template/.opencode/command/brainstorm.md +1 -1
  8. package/dist/template/.opencode/command/commit.md +1 -1
  9. package/dist/template/.opencode/command/create.md +9 -0
  10. package/dist/template/.opencode/command/design-audit.md +1 -1
  11. package/dist/template/.opencode/command/design.md +1 -1
  12. package/dist/template/.opencode/command/finish.md +17 -0
  13. package/dist/template/.opencode/command/fix-ci.md +4 -0
  14. package/dist/template/.opencode/command/fix-types.md +2 -0
  15. package/dist/template/.opencode/command/fix-ui.md +1 -1
  16. package/dist/template/.opencode/command/fix.md +1 -1
  17. package/dist/template/.opencode/command/handoff.md +2 -0
  18. package/dist/template/.opencode/command/implement.md +31 -1
  19. package/dist/template/.opencode/command/import-plan.md +2 -0
  20. package/dist/template/.opencode/command/integration-test.md +6 -2
  21. package/dist/template/.opencode/command/new-feature.md +2 -0
  22. package/dist/template/.opencode/command/plan.md +2 -0
  23. package/dist/template/.opencode/command/pr.md +2 -0
  24. package/dist/template/.opencode/command/research-and-implement.md +1 -1
  25. package/dist/template/.opencode/command/research-ui.md +1 -1
  26. package/dist/template/.opencode/command/resume.md +2 -0
  27. package/dist/template/.opencode/command/revert-feature.md +2 -0
  28. package/dist/template/.opencode/command/review-codebase.md +1 -1
  29. package/dist/template/.opencode/command/skill-create.md +4 -4
  30. package/dist/template/.opencode/command/skill-optimize.md +4 -4
  31. package/dist/template/.opencode/command/ui-review.md +2 -2
  32. package/dist/template/.opencode/opencode.json +490 -535
  33. package/dist/template/.opencode/package.json +20 -20
  34. package/dist/template/.opencode/skill/brainstorming/SKILL.md +2 -2
  35. package/dist/template/.opencode/skill/executing-plans/SKILL.md +1 -1
  36. package/dist/template/.opencode/skill/sharing-skills/SKILL.md +13 -4
  37. package/dist/template/.opencode/skill/subagent-driven-development/SKILL.md +1 -1
  38. package/dist/template/.opencode/skill/systematic-debugging/SKILL.md +2 -2
  39. package/dist/template/.opencode/skill/using-git-worktrees/SKILL.md +27 -18
  40. package/dist/template/.opencode/skill/{using-superpowers → using-skills}/SKILL.md +6 -3
  41. package/dist/template/.opencode/skill/writing-plans/SKILL.md +3 -3
  42. package/dist/template/.opencode/skill/writing-skills/SKILL.md +2 -2
  43. package/package.json +2 -1
  44. package/dist/template/.opencode/memory/handoffs/2025-12-27T103000Z.md +0 -76
  45. package/dist/template/.opencode/plugin/skill.ts +0 -275
  46. package/dist/template/.opencode/skill/systematic-debugging/CREATION-LOG.md +0 -119
  47. package/dist/template/.opencode/skill/systematic-debugging/test-academic.md +0 -14
  48. package/dist/template/.opencode/skill/systematic-debugging/test-pressure-1.md +0 -58
  49. package/dist/template/.opencode/skill/systematic-debugging/test-pressure-2.md +0 -68
  50. package/dist/template/.opencode/skill/systematic-debugging/test-pressure-3.md +0 -69
  51. package/dist/template/.opencode/skill/testing-skills-with-subagents/examples/CLAUDE_MD_TESTING.md +0 -189
@@ -1,536 +1,491 @@
1
1
  {
2
- "$schema": "https://opencode.ai/config.json",
3
- "agent": {
4
- "build": {
5
- "description": "Primary development agent with full codebase access",
6
- "model": "github-copilot/claude-opus-4.5"
7
- },
8
- "compaction": {
9
- "model": "proxypal/gemini-3-flash-preview",
10
- "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"
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
- "batch_tool": true,
46
- "chatMaxRetries": 2,
47
- "lsp": true,
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
- "session_compact": "ctrl+k"
114
- },
115
- "mcp": {
116
- "Framelink MCP for Figma": {
117
- "command": [
118
- "npx",
119
- "-y",
120
- "figma-developer-mcp",
121
- "--figma-api-key={env:FIGMA_API_KEY}",
122
- "--stdio"
123
- ],
124
- "enabled": false,
125
- "type": "local"
126
- },
127
- "context7": {
128
- "command": [
129
- "npx",
130
- "-y",
131
- "@upstash/context7-mcp",
132
- "--api-key",
133
- "{env:CONTEXT7_API_KEY}"
134
- ],
135
- "enabled": true,
136
- "type": "local"
137
- },
138
- "gh_grep": {
139
- "enabled": true,
140
- "type": "remote",
141
- "url": "https://mcp.grep.app"
142
- },
143
- "gkg": {
144
- "enabled": true,
145
- "type": "remote",
146
- "url": "http://localhost:27495/mcp"
147
- },
148
- "playwright": {
149
- "command": [
150
- "npx",
151
- "@playwright/mcp@latest"
152
- ],
153
- "enabled": false,
154
- "type": "local"
155
- }
156
- },
157
- "model": "github-copilot/claude-haiku-4.5",
158
- "permission": {
159
- "bash": {
160
- "git commit *": "ask",
161
- "git push *": "ask",
162
- "rm *": "ask",
163
- "rm -rf *": "ask"
164
- },
165
- "doom_loop": "ask",
166
- "edit": "allow",
167
- "external_directory": "allow"
168
- },
169
- "plugin": [
170
- "opencode-gemini-auth",
171
- "@tarquinen/opencode-dcp@latest",
172
- "@franlol/opencode-md-table-formatter@0.0.3",
173
- "./plugin/skill.ts",
174
- "./plugin/handoff.ts"
175
- ],
176
- "provider": {
177
- "github-copilot": {
178
- "models": {
179
- "claude-haiku-4.5": {
180
- "attachment": true,
181
- "options": {
182
- "thinking": {
183
- "budgetTokens": 16000,
184
- "type": "enabled"
185
- }
186
- },
187
- "reasoning": true,
188
- "temperature": true,
189
- "tool_call": true
190
- },
191
- "claude-opus-4.5": {
192
- "attachment": true,
193
- "options": {
194
- "thinking": {
195
- "budgetTokens": 32000,
196
- "type": "enabled"
197
- }
198
- },
199
- "reasoning": true,
200
- "temperature": true,
201
- "tool_call": true
202
- },
203
- "claude-sonnet-4.5": {
204
- "attachment": true,
205
- "options": {
206
- "thinking": {
207
- "budgetTokens": 16000,
208
- "type": "enabled"
209
- }
210
- },
211
- "reasoning": true,
212
- "temperature": true,
213
- "tool_call": true
214
- },
215
- "gpt-5.1": {
216
- "attachment": true,
217
- "options": {
218
- "reasoning": {
219
- "effort": "high"
220
- }
221
- },
222
- "reasoning": true,
223
- "temperature": true,
224
- "tool_call": true
225
- },
226
- "gpt-5.1-codex": {
227
- "attachment": true,
228
- "options": {
229
- "reasoning": {
230
- "effort": "high"
231
- }
232
- },
233
- "reasoning": true,
234
- "temperature": true,
235
- "tool_call": true
236
- }
237
- },
238
- "npm": "@ai-sdk/anthropic"
239
- },
240
- "opencode": {
241
- "models": {
242
- "big-pickle": {
243
- "options": {
244
- "reasoningEffort": "high",
245
- "temperature": 1,
246
- "top_k": 40,
247
- "top_p": 0.95
248
- },
249
- "reasoning": true
250
- }
251
- }
252
- },
253
- "proxypal": {
254
- "models": {
255
- "gemini-2.5-computer-use-preview-10-2025": {
256
- "limit": {
257
- "context": 880964,
258
- "output": 65536
259
- },
260
- "name": "Gemini 2 5 Computer Use Preview 10 2025"
261
- },
262
- "gemini-2.5-flash": {
263
- "limit": {
264
- "context": 880964,
265
- "output": 65536
266
- },
267
- "name": "Gemini 2 5 Flash"
268
- },
269
- "gemini-2.5-flash-lite": {
270
- "limit": {
271
- "context": 880964,
272
- "output": 65536
273
- },
274
- "name": "Gemini 2 5 Flash Lite"
275
- },
276
- "gemini-2.5-pro": {
277
- "limit": {
278
- "context": 880964,
279
- "output": 65536
280
- },
281
- "name": "Gemini 2 5 Pro"
282
- },
283
- "gemini-3-flash-preview": {
284
- "limit": {
285
- "context": 880964,
286
- "output": 65536
287
- },
288
- "name": "Gemini 3 Flash Preview"
289
- },
290
- "gemini-3-pro-image-preview": {
291
- "limit": {
292
- "context": 880964,
293
- "output": 65536
294
- },
295
- "name": "Gemini 3 Pro Image Preview"
296
- },
297
- "gemini-3-pro-preview": {
298
- "limit": {
299
- "context": 880964,
300
- "output": 65536
301
- },
302
- "name": "Gemini 3 Pro Preview"
303
- },
304
- "gemini-claude-opus-4-5-thinking": {
305
- "limit": {
306
- "context": 168000,
307
- "output": 64000
308
- },
309
- "name": "Gemini Claude Opus 4 5 Thinking",
310
- "options": {
311
- "thinking": {
312
- "budgetTokens": 32768,
313
- "type": "enabled"
314
- }
315
- },
316
- "reasoning": true
317
- },
318
- "gemini-claude-sonnet-4-5": {
319
- "limit": {
320
- "context": 168000,
321
- "output": 64000
322
- },
323
- "name": "Gemini Claude Sonnet 4 5"
324
- },
325
- "gemini-claude-sonnet-4-5-thinking": {
326
- "limit": {
327
- "context": 168000,
328
- "output": 64000
329
- },
330
- "name": "Gemini Claude Sonnet 4 5 Thinking",
331
- "options": {
332
- "thinking": {
333
- "budgetTokens": 32768,
334
- "type": "enabled"
335
- }
336
- },
337
- "reasoning": true
338
- },
339
- "glm-4.6": {
340
- "limit": {
341
- "context": 107520,
342
- "output": 16384
343
- },
344
- "name": "Glm 4 6"
345
- },
346
- "glm-4.7": {
347
- "limit": {
348
- "context": 107520,
349
- "output": 16384
350
- },
351
- "name": "Glm 4 7"
352
- },
353
- "gpt-5": {
354
- "limit": {
355
- "context": 336000,
356
- "output": 32768
357
- },
358
- "name": "Gpt 5",
359
- "options": {
360
- "reasoningEffort": "medium"
361
- },
362
- "reasoning": true
363
- },
364
- "gpt-5-codex": {
365
- "limit": {
366
- "context": 336000,
367
- "output": 32768
368
- },
369
- "name": "Gpt 5 Codex",
370
- "options": {
371
- "reasoningEffort": "medium"
372
- },
373
- "reasoning": true
374
- },
375
- "gpt-5-codex-mini": {
376
- "limit": {
377
- "context": 336000,
378
- "output": 32768
379
- },
380
- "name": "Gpt 5 Codex Mini",
381
- "options": {
382
- "reasoningEffort": "medium"
383
- },
384
- "reasoning": true
385
- },
386
- "gpt-5.1": {
387
- "limit": {
388
- "context": 336000,
389
- "output": 32768
390
- },
391
- "name": "Gpt 5 1",
392
- "options": {
393
- "reasoningEffort": "medium"
394
- },
395
- "reasoning": true
396
- },
397
- "gpt-5.1-codex": {
398
- "limit": {
399
- "context": 336000,
400
- "output": 32768
401
- },
402
- "name": "Gpt 5 1 Codex",
403
- "options": {
404
- "reasoningEffort": "medium"
405
- },
406
- "reasoning": true
407
- },
408
- "gpt-5.1-codex-max": {
409
- "limit": {
410
- "context": 336000,
411
- "output": 32768
412
- },
413
- "name": "Gpt 5 1 Codex Max",
414
- "options": {
415
- "reasoningEffort": "medium"
416
- },
417
- "reasoning": true
418
- },
419
- "gpt-5.1-codex-mini": {
420
- "limit": {
421
- "context": 336000,
422
- "output": 32768
423
- },
424
- "name": "Gpt 5 1 Codex Mini",
425
- "options": {
426
- "reasoningEffort": "medium"
427
- },
428
- "reasoning": true
429
- },
430
- "gpt-5.2": {
431
- "limit": {
432
- "context": 336000,
433
- "output": 32768
434
- },
435
- "name": "Gpt 5 2",
436
- "options": {
437
- "reasoningEffort": "medium"
438
- },
439
- "reasoning": true
440
- },
441
- "gpt-5.2-codex": {
442
- "limit": {
443
- "context": 336000,
444
- "output": 32768
445
- },
446
- "name": "Gpt 5 2 Codex",
447
- "options": {
448
- "reasoningEffort": "medium"
449
- },
450
- "reasoning": true
451
- },
452
- "gpt-oss-120b-medium": {
453
- "limit": {
454
- "context": 107520,
455
- "output": 16384
456
- },
457
- "name": "Gpt Oss 120b Medium"
458
- }
459
- },
460
- "name": "ProxyPal",
461
- "npm": "@ai-sdk/anthropic",
462
- "options": {
463
- "apiKey": "proxypal-local",
464
- "baseURL": "http://127.0.0.1:8317/v1",
465
- "includeUsage": true
466
- }
467
- },
468
- "zai-coding-plan": {
469
- "models": {
470
- "glm-4.6": {
471
- "attachment": true,
472
- "limit": {
473
- "context": 128000,
474
- "output": 16384
475
- },
476
- "options": {
477
- "temperature": 1,
478
- "thinking": {
479
- "type": "enabled"
480
- }
481
- },
482
- "reasoning": true,
483
- "temperature": true,
484
- "tool_call": true
485
- },
486
- "glm-4.7": {
487
- "id": "glm-4.7",
488
- "interleaved": true,
489
- "limit": {
490
- "context": 200000,
491
- "output": 128000
492
- },
493
- "name": "GLM-4.7",
494
- "options": {
495
- "temperature": 1,
496
- "thinking": {
497
- "type": "enabled"
498
- }
499
- },
500
- "reasoning": true
501
- }
502
- },
503
- "name": "Z.AI Coding Plan",
504
- "npm": "@ai-sdk/openai-compatible",
505
- "options": {
506
- "apiKey": "{env:ZAI_API_KEY}",
507
- "baseURL": "https://api.z.ai/api/paas/v4"
508
- }
509
- }
510
- },
511
- "share": "manual",
512
- "small_model": "opencode/gpt-5-nano",
513
- "theme": "system",
514
- "tools": {
515
- "context7*": true,
516
- "gh_grep*": true,
517
- "gkg*": true
518
- },
519
- "tui": {
520
- "diff_style": "auto",
521
- "scroll_acceleration": {
522
- "enabled": true
523
- },
524
- "scroll_speed": 3
525
- },
526
- "watcher": {
527
- "ignore": [
528
- "node_modules/**",
529
- ".git/**",
530
- "dist/**",
531
- "build/**",
532
- "*.log",
533
- ".DS_Store"
534
- ]
535
- }
536
- }
2
+ "$schema": "https://opencode.ai/config.json",
3
+ "agent": {
4
+ "build": {
5
+ "description": "Primary development agent with full codebase access",
6
+ "model": "github-copilot/claude-opus-4.5"
7
+ },
8
+ "compaction": {
9
+ "model": "proxypal/gemini-3-flash-preview",
10
+ "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"
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
+ "batch_tool": true,
46
+ "chatMaxRetries": 2,
47
+ "primary_tools": ["edit", "write", "bash", "prune"]
48
+ },
49
+ "formatter": {
50
+ "biome": {
51
+ "command": ["npx", "@biomejs/biome", "check", "--write", "$FILE"],
52
+ "extensions": [".js", ".jsx", ".ts", ".tsx", ".json", ".jsonc"]
53
+ },
54
+ "java-formatter": {
55
+ "command": ["google-java-format", "--replace", "$FILE"],
56
+ "environment": {
57
+ "JAVA_HOME": "{env:JAVA_HOME}"
58
+ },
59
+ "extensions": [".java"]
60
+ },
61
+ "prettier": {
62
+ "command": ["npx", "prettier", "--write", "$FILE"],
63
+ "extensions": [".html", ".css", ".scss", ".sass", ".md", ".yaml", ".yml"]
64
+ }
65
+ },
66
+ "instructions": [".opencode/memory/user.md", ".opencode/memory/project/*.md"],
67
+ "keybinds": {
68
+ "command_list": ";",
69
+ "leader": "`",
70
+ "session_child_cycle": "ctrl+alt+right",
71
+ "session_child_cycle_reverse": "ctrl+alt+left",
72
+ "session_compact": "ctrl+k"
73
+ },
74
+ "mcp": {
75
+ "Framelink MCP for Figma": {
76
+ "command": [
77
+ "npx",
78
+ "-y",
79
+ "figma-developer-mcp",
80
+ "--figma-api-key={env:FIGMA_API_KEY}",
81
+ "--stdio"
82
+ ],
83
+ "enabled": false,
84
+ "type": "local"
85
+ },
86
+ "context7": {
87
+ "command": [
88
+ "npx",
89
+ "-y",
90
+ "@upstash/context7-mcp",
91
+ "--api-key",
92
+ "{env:CONTEXT7_API_KEY}"
93
+ ],
94
+ "enabled": true,
95
+ "type": "local"
96
+ },
97
+ "gh_grep": {
98
+ "enabled": true,
99
+ "type": "remote",
100
+ "url": "https://mcp.grep.app"
101
+ },
102
+ "gkg": {
103
+ "enabled": true,
104
+ "type": "remote",
105
+ "url": "http://localhost:27495/mcp"
106
+ },
107
+ "beads-village": {
108
+ "command": ["npx", "beads-village"],
109
+ "enabled": true,
110
+ "type": "local"
111
+ },
112
+ "playwright": {
113
+ "command": ["npx", "@playwright/mcp@latest"],
114
+ "enabled": false,
115
+ "type": "local"
116
+ }
117
+ },
118
+ "model": "github-copilot/claude-haiku-4.5",
119
+ "permission": {
120
+ "bash": {
121
+ "git commit *": "ask",
122
+ "git push *": "ask",
123
+ "rm *": "ask",
124
+ "rm -rf *": "ask"
125
+ },
126
+ "doom_loop": "ask",
127
+ "edit": "allow",
128
+ "external_directory": "allow"
129
+ },
130
+ "plugin": [
131
+ "opencode-gemini-auth",
132
+ "@tarquinen/opencode-dcp@latest",
133
+ "@franlol/opencode-md-table-formatter@0.0.3",
134
+ "./plugin/handoff.ts"
135
+ ],
136
+ "provider": {
137
+ "github-copilot": {
138
+ "models": {
139
+ "claude-haiku-4.5": {
140
+ "attachment": true,
141
+ "options": {
142
+ "thinking": {
143
+ "budgetTokens": 16000,
144
+ "type": "enabled"
145
+ }
146
+ },
147
+ "reasoning": true,
148
+ "temperature": true,
149
+ "tool_call": true
150
+ },
151
+ "claude-opus-4.5": {
152
+ "attachment": true,
153
+ "options": {
154
+ "thinking": {
155
+ "budgetTokens": 32000,
156
+ "type": "enabled"
157
+ }
158
+ },
159
+ "reasoning": true,
160
+ "temperature": true,
161
+ "tool_call": true
162
+ },
163
+ "claude-sonnet-4.5": {
164
+ "attachment": true,
165
+ "options": {
166
+ "thinking": {
167
+ "budgetTokens": 16000,
168
+ "type": "enabled"
169
+ }
170
+ },
171
+ "reasoning": true,
172
+ "temperature": true,
173
+ "tool_call": true
174
+ },
175
+ "gpt-5.1": {
176
+ "attachment": true,
177
+ "options": {
178
+ "reasoning": {
179
+ "effort": "high"
180
+ }
181
+ },
182
+ "reasoning": true,
183
+ "temperature": true,
184
+ "tool_call": true
185
+ },
186
+ "gpt-5.1-codex": {
187
+ "attachment": true,
188
+ "options": {
189
+ "reasoning": {
190
+ "effort": "high"
191
+ }
192
+ },
193
+ "reasoning": true,
194
+ "temperature": true,
195
+ "tool_call": true
196
+ }
197
+ },
198
+ "npm": "@ai-sdk/anthropic"
199
+ },
200
+ "opencode": {
201
+ "models": {
202
+ "big-pickle": {
203
+ "options": {
204
+ "reasoningEffort": "high",
205
+ "temperature": 1,
206
+ "top_k": 40,
207
+ "top_p": 0.95
208
+ },
209
+ "reasoning": true
210
+ }
211
+ }
212
+ },
213
+ "proxypal": {
214
+ "models": {
215
+ "gemini-2.5-computer-use-preview-10-2025": {
216
+ "limit": {
217
+ "context": 880964,
218
+ "output": 65536
219
+ },
220
+ "name": "Gemini 2 5 Computer Use Preview 10 2025"
221
+ },
222
+ "gemini-2.5-flash": {
223
+ "limit": {
224
+ "context": 880964,
225
+ "output": 65536
226
+ },
227
+ "name": "Gemini 2 5 Flash"
228
+ },
229
+ "gemini-2.5-flash-lite": {
230
+ "limit": {
231
+ "context": 880964,
232
+ "output": 65536
233
+ },
234
+ "name": "Gemini 2 5 Flash Lite"
235
+ },
236
+ "gemini-2.5-pro": {
237
+ "limit": {
238
+ "context": 880964,
239
+ "output": 65536
240
+ },
241
+ "name": "Gemini 2 5 Pro"
242
+ },
243
+ "gemini-3-flash-preview": {
244
+ "limit": {
245
+ "context": 880964,
246
+ "output": 65536
247
+ },
248
+ "name": "Gemini 3 Flash Preview"
249
+ },
250
+ "gemini-3-pro-image-preview": {
251
+ "limit": {
252
+ "context": 880964,
253
+ "output": 65536
254
+ },
255
+ "name": "Gemini 3 Pro Image Preview"
256
+ },
257
+ "gemini-3-pro-preview": {
258
+ "limit": {
259
+ "context": 880964,
260
+ "output": 65536
261
+ },
262
+ "name": "Gemini 3 Pro Preview"
263
+ },
264
+ "gemini-claude-opus-4-5-thinking": {
265
+ "limit": {
266
+ "context": 168000,
267
+ "output": 64000
268
+ },
269
+ "name": "Gemini Claude Opus 4 5 Thinking",
270
+ "options": {
271
+ "thinking": {
272
+ "budgetTokens": 32768,
273
+ "type": "enabled"
274
+ }
275
+ },
276
+ "reasoning": true
277
+ },
278
+ "gemini-claude-sonnet-4-5": {
279
+ "limit": {
280
+ "context": 168000,
281
+ "output": 64000
282
+ },
283
+ "name": "Gemini Claude Sonnet 4 5"
284
+ },
285
+ "gemini-claude-sonnet-4-5-thinking": {
286
+ "limit": {
287
+ "context": 168000,
288
+ "output": 64000
289
+ },
290
+ "name": "Gemini Claude Sonnet 4 5 Thinking",
291
+ "options": {
292
+ "thinking": {
293
+ "budgetTokens": 32768,
294
+ "type": "enabled"
295
+ }
296
+ },
297
+ "reasoning": true
298
+ },
299
+ "glm-4.6": {
300
+ "limit": {
301
+ "context": 107520,
302
+ "output": 16384
303
+ },
304
+ "name": "Glm 4 6"
305
+ },
306
+ "glm-4.7": {
307
+ "limit": {
308
+ "context": 107520,
309
+ "output": 16384
310
+ },
311
+ "name": "Glm 4 7"
312
+ },
313
+ "gpt-5": {
314
+ "limit": {
315
+ "context": 336000,
316
+ "output": 32768
317
+ },
318
+ "name": "Gpt 5",
319
+ "options": {
320
+ "reasoningEffort": "medium"
321
+ },
322
+ "reasoning": true
323
+ },
324
+ "gpt-5-codex": {
325
+ "limit": {
326
+ "context": 336000,
327
+ "output": 32768
328
+ },
329
+ "name": "Gpt 5 Codex",
330
+ "options": {
331
+ "reasoningEffort": "medium"
332
+ },
333
+ "reasoning": true
334
+ },
335
+ "gpt-5-codex-mini": {
336
+ "limit": {
337
+ "context": 336000,
338
+ "output": 32768
339
+ },
340
+ "name": "Gpt 5 Codex Mini",
341
+ "options": {
342
+ "reasoningEffort": "medium"
343
+ },
344
+ "reasoning": true
345
+ },
346
+ "gpt-5.1": {
347
+ "limit": {
348
+ "context": 336000,
349
+ "output": 32768
350
+ },
351
+ "name": "Gpt 5 1",
352
+ "options": {
353
+ "reasoningEffort": "medium"
354
+ },
355
+ "reasoning": true
356
+ },
357
+ "gpt-5.1-codex": {
358
+ "limit": {
359
+ "context": 336000,
360
+ "output": 32768
361
+ },
362
+ "name": "Gpt 5 1 Codex",
363
+ "options": {
364
+ "reasoningEffort": "medium"
365
+ },
366
+ "reasoning": true
367
+ },
368
+ "gpt-5.1-codex-max": {
369
+ "limit": {
370
+ "context": 336000,
371
+ "output": 32768
372
+ },
373
+ "name": "Gpt 5 1 Codex Max",
374
+ "options": {
375
+ "reasoningEffort": "medium"
376
+ },
377
+ "reasoning": true
378
+ },
379
+ "gpt-5.1-codex-mini": {
380
+ "limit": {
381
+ "context": 336000,
382
+ "output": 32768
383
+ },
384
+ "name": "Gpt 5 1 Codex Mini",
385
+ "options": {
386
+ "reasoningEffort": "medium"
387
+ },
388
+ "reasoning": true
389
+ },
390
+ "gpt-5.2": {
391
+ "limit": {
392
+ "context": 336000,
393
+ "output": 32768
394
+ },
395
+ "name": "Gpt 5 2",
396
+ "options": {
397
+ "reasoningEffort": "medium"
398
+ },
399
+ "reasoning": true
400
+ },
401
+ "gpt-5.2-codex": {
402
+ "limit": {
403
+ "context": 336000,
404
+ "output": 32768
405
+ },
406
+ "name": "Gpt 5 2 Codex",
407
+ "options": {
408
+ "reasoningEffort": "medium"
409
+ },
410
+ "reasoning": true
411
+ },
412
+ "gpt-oss-120b-medium": {
413
+ "limit": {
414
+ "context": 107520,
415
+ "output": 16384
416
+ },
417
+ "name": "Gpt Oss 120b Medium"
418
+ }
419
+ },
420
+ "name": "ProxyPal",
421
+ "npm": "@ai-sdk/anthropic",
422
+ "options": {
423
+ "apiKey": "proxypal-local",
424
+ "baseURL": "http://127.0.0.1:8317/v1",
425
+ "includeUsage": true
426
+ }
427
+ },
428
+ "zai-coding-plan": {
429
+ "models": {
430
+ "glm-4.6": {
431
+ "limit": {
432
+ "context": 128000,
433
+ "output": 16384
434
+ },
435
+ "options": {
436
+ "temperature": 1,
437
+ "thinking": {
438
+ "type": "enabled"
439
+ }
440
+ },
441
+ "reasoning": true,
442
+ "temperature": true,
443
+ "tool_call": true
444
+ },
445
+ "glm-4.7": {
446
+ "id": "glm-4.7",
447
+ "interleaved": true,
448
+ "limit": {
449
+ "context": 200000,
450
+ "output": 128000
451
+ },
452
+ "name": "GLM-4.7",
453
+ "options": {
454
+ "temperature": 1,
455
+ "thinking": {
456
+ "type": "enabled"
457
+ }
458
+ },
459
+ "reasoning": true
460
+ }
461
+ },
462
+ "name": "Z.AI Coding Plan"
463
+ }
464
+ },
465
+ "share": "manual",
466
+ "small_model": "opencode/gpt-5-nano",
467
+ "theme": "system",
468
+ "tools": {
469
+ "beads-village*": true,
470
+ "context7*": true,
471
+ "gh_grep*": true,
472
+ "gkg*": true
473
+ },
474
+ "tui": {
475
+ "diff_style": "auto",
476
+ "scroll_acceleration": {
477
+ "enabled": true
478
+ },
479
+ "scroll_speed": 3
480
+ },
481
+ "watcher": {
482
+ "ignore": [
483
+ "node_modules/**",
484
+ ".git/**",
485
+ "dist/**",
486
+ "build/**",
487
+ "*.log",
488
+ ".DS_Store"
489
+ ]
490
+ }
491
+ }