opencodekit 0.17.9 → 0.17.11

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 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.9",
762
+ version: "0.17.11",
763
763
  description: "CLI tool for bootstrapping and managing OpenCodeKit projects",
764
764
  keywords: ["agents", "cli", "mcp", "opencode", "opencodekit", "template"],
765
765
  license: "MIT",
@@ -9244,21 +9244,21 @@ async function copyOpenCodeOnly(templateRoot, targetDir) {
9244
9244
  }
9245
9245
  var MODEL_PRESETS = {
9246
9246
  free: {
9247
- model: "opencode/kimi-k2.5-free",
9247
+ model: "opencode/glm-5-free",
9248
9248
  agents: {
9249
- build: "opencode/kimi-k2.5-free",
9250
- plan: "opencode/kimi-k2.5-free",
9249
+ build: "opencode/minimax-m2.5-free",
9250
+ plan: "opencode/minimax-m2.5-free",
9251
9251
  review: "opencode/minimax-m2.5-free",
9252
- explore: "opencode/minimax-m2.5-free",
9253
- general: "opencode/minimax-m2.5-free",
9254
- looker: "opencode/kimi-k2.5-free",
9255
- vision: "opencode/kimi-k2.5-free",
9256
- scout: "opencode/minimax-m2.5-free",
9257
- painter: "opencode/kimi-k2.5-free"
9252
+ explore: "opencode/glm-5-free",
9253
+ general: "opencode/glm-5-free",
9254
+ looker: "opencode/minimax-m2.5-free",
9255
+ vision: "opencode/minimax-m2.5-free",
9256
+ scout: "opencode/glm-5-free",
9257
+ painter: "opencode/minimax-m2.5-free"
9258
9258
  }
9259
9259
  },
9260
9260
  recommend: {
9261
- model: "opencode/kimi-k2.5-free",
9261
+ model: "opencode/minimax-m2.5-free",
9262
9262
  agents: {
9263
9263
  build: "github-copilot/claude-opus-4.6",
9264
9264
  plan: "openai/gpt-5.3-codex",
@@ -9266,7 +9266,7 @@ var MODEL_PRESETS = {
9266
9266
  explore: "proxypal/gemini-3-flash",
9267
9267
  general: "github-copilot/gpt-5.2-codex",
9268
9268
  looker: "proxypal/gemini-3-flash",
9269
- vision: "proxypal/gemini-3-pro-high",
9269
+ vision: "proxypal/gemini-3.1-pro-high",
9270
9270
  scout: "proxypal/claude-sonnet-4-6",
9271
9271
  painter: "proxypal/gemini-3-pro-image"
9272
9272
  }
@@ -0,0 +1,143 @@
1
+ ---
2
+ description: Extract and persist learnings from completed work into institutional memory
3
+ argument-hint: "[bead-id]"
4
+ ---
5
+
6
+ # Compound: $ARGUMENTS
7
+
8
+ Capture what was learned. This is the flywheel step — each cycle makes the next cycle faster.
9
+
10
+ > **Workflow:** `/plan` → `/ship` → `/review` → **`/compound`** → `/pr`
11
+ >
12
+ > Run after every completed task, review, or PR merge. The value compounds over time.
13
+
14
+ ## What This Does
15
+
16
+ Extracts learnings from the just-completed work and stores them as structured observations in memory,
17
+ so future Plan and Ship cycles start with institutional knowledge instead of blank slates.
18
+
19
+ ## Phase 1: Gather Evidence
20
+
21
+ ```bash
22
+ # Get what changed
23
+ git diff origin/main..HEAD --stat
24
+ git log origin/main..HEAD --oneline
25
+
26
+ # Get review comments if any
27
+ br comments list $ARGUMENTS 2>/dev/null || echo "No bead"
28
+
29
+ # Get bead context if provided
30
+ br show $ARGUMENTS 2>/dev/null || echo "No bead specified"
31
+ ```
32
+
33
+ Collect from all available sources:
34
+
35
+ - Git diff (what files changed, what patterns were used)
36
+ - Bead comments (review findings, decisions made)
37
+ - Current session context (what was discovered, what was hard)
38
+ - Any error messages that were solved
39
+
40
+ ## Phase 2: Classify Learnings
41
+
42
+ For each finding, assign a type:
43
+
44
+ | Type | When to Use | Example |
45
+ | ----------- | ---------------------------------------------------------- | ----------------------------------------------- |
46
+ | `pattern` | A reusable approach confirmed to work in this codebase | "Always use X pattern for Y type of component" |
47
+ | `bugfix` | A non-obvious bug and its root cause | "Bun doesn't support X, use Y instead" |
48
+ | `decision` | An architectural or design choice with rationale | "Chose JWT over sessions because..." |
49
+ | `gotcha` | A footgun, constraint, or thing that looks wrong but isn't | "Don't modify dist/ directly, build overwrites" |
50
+ | `discovery` | A non-obvious fact about the codebase or its dependencies | "Build copies .opencode/ to dist/template/" |
51
+ | `warning` | Something that will break if not followed | "Always run lint:fix before commit" |
52
+
53
+ **Quality bar:** Only record learnings that would save future-you 15+ minutes.
54
+ Skip obvious things. Skip things already in AGENTS.md.
55
+
56
+ ## Phase 3: Store Observations
57
+
58
+ For each learning worth keeping, create an observation:
59
+
60
+ ```typescript
61
+ observation({
62
+ type: "pattern", // or bugfix, decision, gotcha, discovery, warning
63
+ title: "[Concise, searchable title — what someone would search for]",
64
+ narrative: "[What happened, why it matters, how to apply it]",
65
+ facts: "[comma, separated, key, facts]",
66
+ concepts: "[searchable, keywords, for, future, retrieval]",
67
+ files_modified: "[relevant/file.ts if applicable]",
68
+ confidence: "high", // high=verified, medium=likely, low=speculative
69
+ });
70
+ ```
71
+
72
+ **Minimum viable:** title + narrative. Everything else is bonus.
73
+
74
+ ## Phase 4: Check AGENTS.md / Skill Updates
75
+
76
+ Ask: does this learning belong as a permanent rule?
77
+
78
+ If YES (it's a codebase-level constraint everyone must follow):
79
+
80
+ - Suggest updating `.opencode/memory/project/gotchas.md`
81
+ - Or the relevant skill file if it's procedure-level
82
+
83
+ If MAYBE (it's a pattern, not a rule):
84
+
85
+ - The observation is sufficient
86
+ - Don't pollute AGENTS.md with every finding
87
+
88
+ **Rule:** AGENTS.md changes require user confirmation. Observations are automatic.
89
+
90
+ ## Phase 5: Search for Related Past Observations
91
+
92
+ ```typescript
93
+ // Check if this updates or supersedes an older observation
94
+ memory_search({ query: "[key concept from the finding]", limit: 3 });
95
+ ```
96
+
97
+ If a newer finding contradicts or updates an older one, note it:
98
+
99
+ ```typescript
100
+ observation({
101
+ type: "decision",
102
+ title: "...",
103
+ narrative: "...",
104
+ supersedes: "42", // ID of the older observation
105
+ });
106
+ ```
107
+
108
+ ## Phase 6: Output Summary
109
+
110
+ Report what was codified:
111
+
112
+ ```
113
+ ## Compound Summary
114
+
115
+ **Work reviewed:** [brief description]
116
+ **Learnings captured:** [N] observations
117
+
118
+ | # | Type | Title | Concepts |
119
+ |---|-----------|------------------------------|------------------------|
120
+ | 1 | pattern | ... | auth, jwt |
121
+ | 2 | gotcha | ... | bun, build |
122
+ | 3 | bugfix | ... | typecheck, strict-mode |
123
+
124
+ **AGENTS.md updates suggested:** [yes/no - describe if yes]
125
+ **Next recommended:** /pr (or /plan <next-bead-id>)
126
+ ```
127
+
128
+ ## When Nothing to Compound
129
+
130
+ If the work was trivial (a config change, 1-line fix with no surprises):
131
+
132
+ > "Nothing worth compounding. Work was straightforward — no non-obvious patterns, bugs, or decisions encountered."
133
+
134
+ Don't force observations. Quality over quantity.
135
+
136
+ ## Related Commands
137
+
138
+ | Need | Command |
139
+ | ---------------------- | --------- |
140
+ | Full chain | `/lfg` |
141
+ | Review before compound | `/review` |
142
+ | Ship the work | `/ship` |
143
+ | Create PR | `/pr` |
@@ -0,0 +1,171 @@
1
+ ---
2
+ description: Full autonomous chain - Plan → Ship → Review → Compound in one command
3
+ argument-hint: "<bead-id> [--skip-plan]"
4
+ ---
5
+
6
+ # LFG (Let's Fucking Go): $ARGUMENTS
7
+
8
+ Full compound engineering cycle. One command, all four steps.
9
+
10
+ > **When to use:** You have a bead in `in_progress` state with a PRD. You want maximum autonomous execution with minimum hand-holding.
11
+ >
12
+ > **Checkpoints happen** at decision points. Everything automatable is automated.
13
+
14
+ ## Parse Arguments
15
+
16
+ | Argument | Default | Description |
17
+ | ------------- | -------- | --------------------------------------- |
18
+ | `<bead-id>` | required | The bead to execute |
19
+ | `--skip-plan` | false | Skip planning if plan.md already exists |
20
+
21
+ ## Phase 0: Preflight
22
+
23
+ ```bash
24
+ br show $BEAD_ID
25
+ ls .beads/artifacts/$BEAD_ID/
26
+ ```
27
+
28
+ Verify:
29
+
30
+ - Bead exists and is `in_progress`
31
+ - `prd.md` exists
32
+ - If `plan.md` exists and `--skip-plan` not set: ask user whether to replan or use existing
33
+
34
+ Report:
35
+
36
+ ```
37
+ ## LFG: <bead-id> — <title>
38
+
39
+ Cycle: Plan → Ship → Review → Compound
40
+ Review mode: [Standard 3-agent / Deep 5-agent]
41
+ Plan: [create new / use existing]
42
+ ```
43
+
44
+ ## Step 1: PLAN
45
+
46
+ Load and execute the `/plan` command for this bead:
47
+
48
+ ```typescript
49
+ skill({ name: "writing-plans" });
50
+ // Run full /plan flow including Phase 0 institutional research
51
+ // Output: .beads/artifacts/$BEAD_ID/plan.md
52
+ ```
53
+
54
+ Checkpoint if plan has major unknowns or architecture questions. Otherwise proceed automatically.
55
+
56
+ ## Step 2: WORK
57
+
58
+ Execute the plan:
59
+
60
+ ```typescript
61
+ skill({ name: "executing-plans" });
62
+ // Load plan.md, execute wave-by-wave
63
+ // Per-task commits after each task passes verification
64
+ ```
65
+
66
+ Run verification after each wave:
67
+
68
+ - `npm run typecheck`
69
+ - `npm run lint`
70
+ - `bun test` (if tests exist for changed areas)
71
+
72
+ Checkpoint only at `checkpoint:human-verify` or `checkpoint:decision` tasks.
73
+
74
+ ## Step 3: REVIEW
75
+
76
+ ```bash
77
+ BASE_SHA=$(git rev-parse origin/main 2>/dev/null || git rev-parse HEAD~$(git log --oneline | wc -l | tr -d ' '))
78
+ HEAD_SHA=$(git rev-parse HEAD)
79
+ ```
80
+
81
+ Load and run the review skill:
82
+
83
+ ```typescript
84
+ skill({ name: "requesting-code-review" });
85
+ ```
86
+
87
+ Dispatch 5 specialized agents in parallel.
88
+
89
+ Wait for all agents to return. Synthesize findings.
90
+
91
+ **Auto-fix rule:**
92
+
93
+ - Critical issues → fix inline, re-verify, continue
94
+ - Important issues → fix inline, continue
95
+ - Minor issues → add to bead comments, continue
96
+
97
+ If Critical issues cannot be auto-fixed:
98
+
99
+ ```
100
+ ## CHECKPOINT: Review Blocker
101
+
102
+ Critical issue found that requires architectural decision:
103
+ [description]
104
+
105
+ Options:
106
+ 1. [option A]
107
+ 2. [option B]
108
+
109
+ Awaiting your decision before continuing.
110
+ ```
111
+
112
+ ## Step 4: COMPOUND
113
+
114
+ Load and run the compound command:
115
+
116
+ ```typescript
117
+ // Run /compound $BEAD_ID
118
+ // Extract learnings from the full cycle
119
+ // Store observations to memory
120
+ // Suggest AGENTS.md updates if conventions changed
121
+ ```
122
+
123
+ ## Step 5: Report & Next
124
+
125
+ ```
126
+ ## LFG Complete: <bead-id>
127
+
128
+ ### Cycle Summary
129
+
130
+ | Step | Status | Notes |
131
+ |----------|--------|------------------------------|
132
+ | Plan | ✓ | [N] waves, [M] tasks |
133
+ | Work | ✓ | [N] commits, [M] files |
134
+ | Review | ✓ | [N] agents, [M] fixes |
135
+ | Compound | ✓ | [N] observations stored |
136
+
137
+ ### Learnings Captured
138
+ [list of observation titles]
139
+
140
+ ### Verification
141
+ - typecheck: pass
142
+ - lint: pass
143
+ - tests: pass ([N] passing)
144
+
145
+ ### Next Steps
146
+ - Review the changes: `git diff origin/main`
147
+ - Create PR: `/pr`
148
+ - Or continue with next bead: `/lfg <next-bead-id>`
149
+ ```
150
+
151
+ ## Swarm Mode (sLFG)
152
+
153
+ For large plans with 6+ independent tasks, run Work step in swarm mode:
154
+
155
+ ```typescript
156
+ skill({ name: "swarm-coordination" });
157
+ // Dispatch parallel worker agents per wave
158
+ // Leader monitors and synthesizes
159
+ ```
160
+
161
+ Use when: plan has 2+ independent waves with no shared file mutations.
162
+
163
+ ## Related Commands
164
+
165
+ | Need | Command |
166
+ | --------------- | ---------------- |
167
+ | Plan only | `/plan <id>` |
168
+ | Ship only | `/ship <id>` |
169
+ | Review only | `/review` |
170
+ | Compound only | `/compound <id>` |
171
+ | Create PR after | `/pr` |
@@ -36,6 +36,63 @@ skill({ name: "writing-plans" }); // TDD plan format
36
36
  - **Split signals**: Create child beads for complex work
37
37
  - **Vertical slices**: Each task should cover one feature end-to-end
38
38
 
39
+ ## Phase 0: Institutional Research (Mandatory)
40
+
41
+ Before touching the PRD or planning anything, load what the codebase already knows.
42
+
43
+ **This step is not optional.** Skipping it means planning in the dark.
44
+
45
+ ### Step 1: Search institutional memory
46
+
47
+ ```typescript
48
+ // Search for past decisions, patterns, gotchas related to this work
49
+ memory_search({ query: "<bead-title or feature keywords>", limit: 5 });
50
+ memory_search({ query: "<key technical concept from bead>", type: "bugfix", limit: 3 });
51
+ memory_read({ file: "handoffs/last" }); // Check last session context
52
+ ```
53
+
54
+ If relevant observations found: incorporate them directly into the plan. Don't re-solve solved problems.
55
+
56
+ ### Step 2: Mine git history
57
+
58
+ ```bash
59
+ # What has changed recently in affected areas?
60
+ git log --oneline -20
61
+
62
+ # Who wrote the relevant code and when?
63
+ git log --oneline --follow -- <relevant-file-path>
64
+
65
+ # What patterns appear in recent commits?
66
+ git log --oneline --all | head -30
67
+ ```
68
+
69
+ Look for:
70
+
71
+ - Commit conventions (how this team names things)
72
+ - Recent changes to files you'll touch (merge conflict risk)
73
+ - How similar features were implemented before
74
+ - Any "fix:", "revert:", "hotfix:" commits near your scope (footgun zones)
75
+
76
+ ### Step 3: Spawn learnings-researcher (if Level 2-3 work)
77
+
78
+ ```typescript
79
+ task({
80
+ subagent_type: "explore",
81
+ description: "Search codebase for patterns related to this work",
82
+ prompt: `Search the codebase for patterns, conventions, and existing implementations related to: [FEATURE].
83
+
84
+ Run these searches:
85
+ - grep for relevant function names and patterns
86
+ - Find similar existing features
87
+ - Check test patterns for this domain
88
+ - Look for any TODO/FIXME comments in relevant files
89
+
90
+ Return: existing patterns to follow, files to be aware of, and any gotchas.`,
91
+ });
92
+ ```
93
+
94
+ **Only after completing Phase 0** do you proceed to planning. The research phases must use this context.
95
+
39
96
  ## Phase 1: Guards
40
97
 
41
98
  ```bash
@@ -58,6 +58,34 @@ ls .beads/artifacts/$ARGUMENTS/
58
58
 
59
59
  Read the PRD to extract goal and success criteria for the PR description.
60
60
 
61
+ ## Phase 2B: Pre-PR Review
62
+
63
+ This is the last gate before code hits GitHub. Run it every time.
64
+
65
+ Load the review skill:
66
+
67
+ ```typescript
68
+ skill({ name: "requesting-code-review" });
69
+ ```
70
+
71
+ Run **5 parallel agents**: security/correctness, performance/architecture, type-safety/tests, conventions/patterns, simplicity/completeness.
72
+
73
+ ```bash
74
+ BASE_SHA=$(git rev-parse origin/main 2>/dev/null || git merge-base HEAD origin/main)
75
+ HEAD_SHA=$(git rev-parse HEAD)
76
+ ```
77
+
78
+ Fill placeholders:
79
+
80
+ - `{WHAT_WAS_IMPLEMENTED}`: what this PR delivers (from git log summary)
81
+ - `{PLAN_OR_REQUIREMENTS}`: PRD path or brief requirements
82
+ - `{BASE_SHA}` / `{HEAD_SHA}`: from above
83
+
84
+ **Gate rule:** All Critical issues must be resolved before pushing. No exceptions.
85
+ Important issues: fix or document as known limitation in PR body.
86
+
87
+ After fixing issues, re-run verification gates from Phase 1 if code was changed.
88
+
61
89
  ## Phase 3: Push and Confirm
62
90
 
63
91
  Show what will be pushed and ask the user:
@@ -245,31 +245,36 @@ If any gate fails, fix before proceeding.
245
245
 
246
246
  ## Phase 6: Review
247
247
 
248
- ### 5A: Code Review
249
-
250
- Spawn review agent to check changes against the PRD:
248
+ Load and run the review skill:
251
249
 
252
250
  ```typescript
253
- Task({
254
- subagent_type: "review",
255
- description: "Review changes for $ARGUMENTS",
256
- prompt: `Review changes for bead $ARGUMENTS.
257
-
258
- Read PRD: .beads/artifacts/$ARGUMENTS/prd.md
259
- Review: git diff HEAD
251
+ skill({ name: "requesting-code-review" });
252
+ ```
260
253
 
261
- Check:
262
- 1. Changes satisfy PRD success criteria
263
- 2. Correctness, edge cases, security
264
- 3. No scope creep beyond PRD files
254
+ Run **5 parallel agents**: security/correctness, performance/architecture, type-safety/tests, conventions/patterns, simplicity/completeness.
265
255
 
266
- Return: findings by severity, whether success criteria are met.`,
267
- });
256
+ ```bash
257
+ BASE_SHA=$(git rev-parse origin/main 2>/dev/null || git rev-parse HEAD~1)
258
+ HEAD_SHA=$(git rev-parse HEAD)
268
259
  ```
269
260
 
270
- If review finds critical issues → fix → re-run Phase 4 → re-review.
261
+ Fill placeholders:
262
+
263
+ - `{WHAT_WAS_IMPLEMENTED}`: bead title + brief summary of what changed
264
+ - `{PLAN_OR_REQUIREMENTS}`: `.beads/artifacts/$ARGUMENTS/prd.md`
265
+ - `{BASE_SHA}` / `{HEAD_SHA}`: from above
266
+
267
+ Wait for all 5 agents to return. Synthesize findings.
268
+
269
+ **Auto-fix rule:**
270
+
271
+ - Critical issues → fix inline, re-run Phase 5 gates, continue
272
+ - Important issues → fix inline, continue
273
+ - Minor issues → add to bead comments, note for `/compound` step
274
+
275
+ If review finds critical issues that require architectural decisions → stop → present options to user.
271
276
 
272
- ### 5B: Goal-Backward Verification (if plan.md exists)
277
+ ### Goal-Backward Verification (if plan.md exists)
273
278
 
274
279
  Verify that tasks completed ≠ goals achieved:
275
280
 
@@ -328,7 +333,7 @@ br close $ARGUMENTS --reason "Shipped: all PRD tasks pass, verification + review
328
333
  br sync --flush-only
329
334
  ```
330
335
 
331
- Record significant learnings with `observation()`.
336
+ Record significant learnings with `/compound $ARGUMENTS` after closing.
332
337
 
333
338
  ## Output
334
339
 
@@ -157,6 +157,10 @@
157
157
  "models": {
158
158
  "claude-haiku-4.5": {
159
159
  "attachment": true,
160
+ "limit": {
161
+ "context": 200000,
162
+ "output": 64000
163
+ },
160
164
  "options": {
161
165
  "thinking_budget": 10000,
162
166
  "type": "enabled"
@@ -181,6 +185,10 @@
181
185
  },
182
186
  "claude-opus-4.5": {
183
187
  "attachment": true,
188
+ "limit": {
189
+ "context": 200000,
190
+ "output": 64000
191
+ },
184
192
  "options": {
185
193
  "thinking_budget": 10000
186
194
  },
@@ -203,7 +211,7 @@
203
211
  "claude-opus-4.6": {
204
212
  "attachment": true,
205
213
  "limit": {
206
- "context": 128000,
214
+ "context": 200000,
207
215
  "output": 64000
208
216
  },
209
217
  "options": {
@@ -248,8 +256,8 @@
248
256
  "claude-sonnet-4.6": {
249
257
  "attachment": true,
250
258
  "limit": {
251
- "context": 128000,
252
- "output": 32000
259
+ "context": 200000,
260
+ "output": 64000
253
261
  },
254
262
  "options": {
255
263
  "thinking": {
@@ -292,6 +300,10 @@
292
300
  },
293
301
  "claude-sonnet-4.5": {
294
302
  "attachment": true,
303
+ "limit": {
304
+ "context": 200000,
305
+ "output": 64000
306
+ },
295
307
  "options": {
296
308
  "thinking_budget": 10000
297
309
  },
@@ -313,6 +325,10 @@
313
325
  },
314
326
  "gpt-5.2": {
315
327
  "attachment": true,
328
+ "limit": {
329
+ "context": 400000,
330
+ "output": 128000
331
+ },
316
332
  "options": {
317
333
  "reasoningEffort": "medium",
318
334
  "reasoningSummary": "auto",
@@ -339,6 +355,10 @@
339
355
  },
340
356
  "gpt-5.2-codex": {
341
357
  "attachment": true,
358
+ "limit": {
359
+ "context": 400000,
360
+ "output": 128000
361
+ },
342
362
  "options": {
343
363
  "reasoningEffort": "medium",
344
364
  "reasoningSummary": "auto",
@@ -472,6 +492,37 @@
472
492
  "fast": {
473
493
  "disabled": true
474
494
  },
495
+ "xhigh": {
496
+ "include": ["reasoning.encrypted_content"],
497
+ "reasoningEffort": "xhigh",
498
+ "reasoningSummary": "auto",
499
+ "textVerbosity": "low"
500
+ },
501
+ "high": {
502
+ "include": ["reasoning.encrypted_content"],
503
+ "reasoningEffort": "high",
504
+ "reasoningSummary": "auto",
505
+ "textVerbosity": "low"
506
+ },
507
+ "medium": {
508
+ "include": ["reasoning.encrypted_content"],
509
+ "reasoningEffort": "medium",
510
+ "reasoningSummary": "auto",
511
+ "textVerbosity": "low"
512
+ }
513
+ }
514
+ },
515
+ "gpt-5.3-codex": {
516
+ "variants": {
517
+ "fast": {
518
+ "disabled": true
519
+ },
520
+ "xhigh": {
521
+ "include": ["reasoning.encrypted_content"],
522
+ "reasoningEffort": "xhigh",
523
+ "reasoningSummary": "auto",
524
+ "textVerbosity": "low"
525
+ },
475
526
  "high": {
476
527
  "include": ["reasoning.encrypted_content"],
477
528
  "reasoningEffort": "high",
@@ -498,47 +549,6 @@
498
549
  "top_p": 0.95
499
550
  },
500
551
  "reasoning": true
501
- },
502
- "kimi-k2.5-free": {
503
- "limit": {
504
- "context": 262144,
505
- "output": 32768
506
- },
507
- "options": {
508
- "interleaved": {
509
- "field": "reasoning_content"
510
- },
511
- "thinking": {
512
- "budgetTokens": 8192,
513
- "reasoning_effort": "high",
514
- "type": "enabled"
515
- }
516
- },
517
- "reasoning": true,
518
- "temperature": true,
519
- "tool_call": true,
520
- "variants": {
521
- "high": {
522
- "interleaved": {
523
- "field": "reasoning_content"
524
- },
525
- "options": {
526
- "reasoning_effort": "high",
527
- "thinkingBudget": 16384,
528
- "type": "enabled"
529
- }
530
- },
531
- "max": {
532
- "interleaved": {
533
- "field": "reasoning_content"
534
- },
535
- "options": {
536
- "reasoning_effort": "high",
537
- "thinkingBudget": 32768,
538
- "type": "enabled"
539
- }
540
- }
541
- }
542
552
  }
543
553
  }
544
554
  },
@@ -11,7 +11,7 @@
11
11
  "type-check": "tsc --noEmit"
12
12
  },
13
13
  "dependencies": {
14
- "@opencode-ai/plugin": "1.2.6"
14
+ "@opencode-ai/plugin": "1.2.10"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@types/node": "^25.3.0",