opencodekit 0.11.1 → 0.12.1
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 +43 -15
- package/dist/template/.opencode/AGENTS.md +12 -2
- package/dist/template/.opencode/agent/build.md +20 -20
- package/dist/template/.opencode/agent/explore.md +13 -13
- package/dist/template/.opencode/agent/planner.md +20 -20
- package/dist/template/.opencode/agent/review.md +18 -18
- package/dist/template/.opencode/agent/rush.md +20 -20
- package/dist/template/.opencode/agent/scout.md +16 -16
- package/dist/template/.opencode/agent/vision.md +19 -19
- package/dist/template/.opencode/command/create.md +1 -1
- package/dist/template/.opencode/command/import-plan.md +1 -1
- package/dist/template/.opencode/command/issue.md +5 -2
- package/dist/template/.opencode/command/plan.md +1 -1
- package/dist/template/.opencode/command/research.md +4 -0
- package/dist/template/.opencode/command/resume.md +11 -2
- package/dist/template/.opencode/command/revert-feature.md +1 -1
- package/dist/template/.opencode/command/status.md +3 -0
- package/dist/template/.opencode/command/triage.md +15 -12
- package/dist/template/.opencode/opencode.json +18 -10
- package/dist/template/.opencode/package.json +1 -1
- package/dist/template/.opencode/plugin/beads.ts +857 -270
- package/dist/template/.opencode/plugin/sessions.ts +295 -38
- package/dist/template/.opencode/skill/beads/SKILL.md +6 -18
- package/dist/template/.opencode/skill/beads/references/DEPENDENCIES.md +3 -3
- package/dist/template/.opencode/skill/beads/references/WORKFLOWS.md +1 -1
- package/package.json +1 -1
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
},
|
|
8
8
|
"compaction": {
|
|
9
9
|
"description": "Session summarizer for context continuity across compactions",
|
|
10
|
-
"model": "
|
|
10
|
+
"model": "github-copilot/claude-haiku-4.5"
|
|
11
11
|
},
|
|
12
12
|
"explore": {
|
|
13
13
|
"description": "Fast codebase search specialist",
|
|
@@ -257,7 +257,14 @@
|
|
|
257
257
|
"context": 880964,
|
|
258
258
|
"output": 65536
|
|
259
259
|
},
|
|
260
|
-
"name": "Gemini 3 Flash Preview"
|
|
260
|
+
"name": "Gemini 3 Flash Preview",
|
|
261
|
+
"options": {
|
|
262
|
+
"thinking": {
|
|
263
|
+
"budgetTokens": 24576,
|
|
264
|
+
"type": "enabled"
|
|
265
|
+
}
|
|
266
|
+
},
|
|
267
|
+
"reasoning": true
|
|
261
268
|
},
|
|
262
269
|
"gemini-3-pro-image-preview": {
|
|
263
270
|
"limit": {
|
|
@@ -271,7 +278,14 @@
|
|
|
271
278
|
"context": 880964,
|
|
272
279
|
"output": 65536
|
|
273
280
|
},
|
|
274
|
-
"name": "Gemini 3 Pro Preview"
|
|
281
|
+
"name": "Gemini 3 Pro Preview",
|
|
282
|
+
"options": {
|
|
283
|
+
"thinking": {
|
|
284
|
+
"budgetTokens": 24576,
|
|
285
|
+
"type": "enabled"
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
"reasoning": true
|
|
275
289
|
},
|
|
276
290
|
"gemini-claude-opus-4-5-thinking": {
|
|
277
291
|
"limit": {
|
|
@@ -490,12 +504,6 @@
|
|
|
490
504
|
},
|
|
491
505
|
"share": "manual",
|
|
492
506
|
"small_model": "opencode/gpt-5-nano",
|
|
493
|
-
"theme": "system",
|
|
494
|
-
"tools": {
|
|
495
|
-
"beads-village*": false,
|
|
496
|
-
"context7*": true,
|
|
497
|
-
"gh_grep*": true
|
|
498
|
-
},
|
|
499
507
|
"tui": {
|
|
500
508
|
"diff_style": "auto",
|
|
501
509
|
"scroll_acceleration": {
|
|
@@ -513,4 +521,4 @@
|
|
|
513
521
|
".DS_Store"
|
|
514
522
|
]
|
|
515
523
|
}
|
|
516
|
-
}
|
|
524
|
+
}
|