opencodekit 0.16.15 → 0.16.18
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/README.md +77 -242
- package/dist/index.js +19 -6
- package/dist/template/.opencode/AGENTS.md +72 -236
- package/dist/template/.opencode/README.md +49 -482
- package/dist/template/.opencode/agent/build.md +71 -345
- package/dist/template/.opencode/agent/explore.md +47 -139
- package/dist/template/.opencode/agent/general.md +61 -172
- package/dist/template/.opencode/agent/looker.md +65 -161
- package/dist/template/.opencode/agent/painter.md +46 -200
- package/dist/template/.opencode/agent/plan.md +37 -220
- package/dist/template/.opencode/agent/review.md +72 -153
- package/dist/template/.opencode/agent/scout.md +44 -486
- package/dist/template/.opencode/agent/vision.md +63 -178
- package/dist/template/.opencode/command/create.md +75 -307
- package/dist/template/.opencode/command/design.md +53 -589
- package/dist/template/.opencode/command/handoff.md +76 -180
- package/dist/template/.opencode/command/init.md +45 -211
- package/dist/template/.opencode/command/plan.md +62 -514
- package/dist/template/.opencode/command/pr.md +56 -226
- package/dist/template/.opencode/command/research.md +55 -266
- package/dist/template/.opencode/command/resume.md +33 -138
- package/dist/template/.opencode/command/review-codebase.md +54 -202
- package/dist/template/.opencode/command/ship.md +78 -127
- package/dist/template/.opencode/command/start.md +47 -577
- package/dist/template/.opencode/command/status.md +60 -353
- package/dist/template/.opencode/command/ui-review.md +52 -298
- package/dist/template/.opencode/command/verify.md +36 -250
- package/dist/template/.opencode/memory.db-shm +0 -0
- package/dist/template/.opencode/memory.db-wal +0 -0
- package/dist/template/.opencode/opencode.json +133 -35
- package/dist/template/.opencode/plugin/README.md +40 -166
- package/dist/template/.opencode/plugin/compaction.ts +162 -131
- package/dist/template/.opencode/plugin/lib/memory-db.ts +112 -0
- package/dist/template/.opencode/plugin/swarm-enforcer.ts +182 -27
- package/dist/template/.opencode/skill/augment-context-engine/SKILL.md +112 -0
- package/dist/template/.opencode/skill/augment-context-engine/mcp.json +6 -0
- package/dist/template/.opencode/skill/core-data-expert/SKILL.md +82 -0
- package/dist/template/.opencode/skill/core-data-expert/references/batch-operations.md +543 -0
- package/dist/template/.opencode/skill/core-data-expert/references/cloudkit-integration.md +259 -0
- package/dist/template/.opencode/skill/core-data-expert/references/concurrency.md +522 -0
- package/dist/template/.opencode/skill/core-data-expert/references/fetch-requests.md +643 -0
- package/dist/template/.opencode/skill/core-data-expert/references/glossary.md +233 -0
- package/dist/template/.opencode/skill/core-data-expert/references/migration.md +393 -0
- package/dist/template/.opencode/skill/core-data-expert/references/model-configuration.md +597 -0
- package/dist/template/.opencode/skill/core-data-expert/references/performance.md +300 -0
- package/dist/template/.opencode/skill/core-data-expert/references/persistent-history.md +553 -0
- package/dist/template/.opencode/skill/core-data-expert/references/project-audit.md +60 -0
- package/dist/template/.opencode/skill/core-data-expert/references/saving.md +574 -0
- package/dist/template/.opencode/skill/core-data-expert/references/stack-setup.md +625 -0
- package/dist/template/.opencode/skill/core-data-expert/references/testing.md +300 -0
- package/dist/template/.opencode/skill/core-data-expert/references/threading.md +589 -0
- package/dist/template/.opencode/skill/swift-concurrency/SKILL.md +246 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/actors.md +640 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/async-algorithms.md +822 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/async-await-basics.md +249 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/async-sequences.md +670 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/core-data.md +533 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/glossary.md +128 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/linting.md +142 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/memory-management.md +542 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/migration.md +1076 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/performance.md +574 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/sendable.md +578 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/tasks.md +604 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/testing.md +565 -0
- package/dist/template/.opencode/skill/swift-concurrency/references/threading.md +452 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/SKILL.md +290 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/animation-advanced.md +351 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/animation-basics.md +284 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/animation-transitions.md +326 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/image-optimization.md +286 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/layout-best-practices.md +312 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/liquid-glass.md +377 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/list-patterns.md +153 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/modern-apis.md +400 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/performance-patterns.md +377 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/scroll-patterns.md +305 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/sheet-navigation-patterns.md +292 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/state-management.md +447 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/text-formatting.md +285 -0
- package/dist/template/.opencode/skill/swiftui-expert-skill/references/view-structure.md +276 -0
- package/dist/template/.opencode/tool/action-queue.ts +308 -0
- package/dist/template/.opencode/tool/swarm.ts +65 -40
- package/package.json +16 -3
- package/dist/template/.opencode/.agents/skills/context7/SKILL.md +0 -88
|
@@ -2,20 +2,17 @@
|
|
|
2
2
|
description: Verify implementation completeness, correctness, and coherence
|
|
3
3
|
argument-hint: "<bead-id> [--quick] [--fix]"
|
|
4
4
|
agent: review
|
|
5
|
-
subtask: true
|
|
6
5
|
---
|
|
7
6
|
|
|
8
7
|
# Verify: $ARGUMENTS
|
|
9
8
|
|
|
10
|
-
|
|
9
|
+
Check implementation against PRD before shipping.
|
|
11
10
|
|
|
12
11
|
## Load Skills
|
|
13
12
|
|
|
14
13
|
```typescript
|
|
15
14
|
skill({ name: "beads" });
|
|
16
15
|
skill({ name: "verification-before-completion" });
|
|
17
|
-
skill({ name: "systematic-debugging" });
|
|
18
|
-
skill({ name: "memory-system" });
|
|
19
16
|
```
|
|
20
17
|
|
|
21
18
|
## Parse Arguments
|
|
@@ -23,285 +20,74 @@ skill({ name: "memory-system" });
|
|
|
23
20
|
| Argument | Default | Description |
|
|
24
21
|
| ----------- | -------- | -------------------------------- |
|
|
25
22
|
| `<bead-id>` | required | The bead to verify |
|
|
26
|
-
| `--quick` | false |
|
|
27
|
-
| `--fix` | false | Auto-fix issues
|
|
23
|
+
| `--quick` | false | Gates only, skip coherence check |
|
|
24
|
+
| `--fix` | false | Auto-fix lint/format issues |
|
|
28
25
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
## Phase 1: Check Memory for Context
|
|
32
|
-
|
|
33
|
-
Search for relevant verification patterns and past issues:
|
|
34
|
-
|
|
35
|
-
```typescript
|
|
36
|
-
memory_search({ query: "$ARGUMENTS verification issues patterns", limit: 3 });
|
|
37
|
-
```
|
|
38
|
-
|
|
39
|
-
---
|
|
40
|
-
|
|
41
|
-
## Phase 2: Gather Artifacts
|
|
26
|
+
## Phase 1: Gather Context
|
|
42
27
|
|
|
43
28
|
```bash
|
|
44
29
|
br show $ARGUMENTS
|
|
45
30
|
ls .beads/artifacts/$ARGUMENTS/
|
|
46
31
|
```
|
|
47
32
|
|
|
48
|
-
Read
|
|
33
|
+
Read the PRD and any other artifacts (plan.md, research.md, design.md).
|
|
49
34
|
|
|
50
|
-
|
|
51
|
-
cat .beads/artifacts/$ARGUMENTS/prd.md 2>/dev/null
|
|
52
|
-
cat .beads/artifacts/$ARGUMENTS/plan.md 2>/dev/null
|
|
53
|
-
cat .beads/artifacts/$ARGUMENTS/research.md 2>/dev/null
|
|
54
|
-
cat .beads/artifacts/$ARGUMENTS/design.md 2>/dev/null
|
|
55
|
-
```
|
|
35
|
+
## Phase 2: Completeness
|
|
56
36
|
|
|
57
|
-
|
|
37
|
+
Extract all requirements/tasks from the PRD and verify each is implemented:
|
|
58
38
|
|
|
59
|
-
|
|
39
|
+
- For each requirement: find evidence in the codebase (file:line reference)
|
|
40
|
+
- Mark as: complete, partial, or missing
|
|
41
|
+
- Report completeness score (X/Y requirements met)
|
|
60
42
|
|
|
61
|
-
|
|
43
|
+
## Phase 3: Correctness
|
|
62
44
|
|
|
63
|
-
|
|
64
|
-
| ------------- | -------- | ------ |
|
|
65
|
-
| `prd.md` | Yes | [ ] |
|
|
66
|
-
| `plan.md` | Yes | [ ] |
|
|
67
|
-
| `research.md` | No | [ ] |
|
|
68
|
-
| `design.md` | No | [ ] |
|
|
45
|
+
Detect project type and run the appropriate verification gates:
|
|
69
46
|
|
|
70
|
-
|
|
47
|
+
| Project Type | Detect Via | Build | Test | Lint | Typecheck |
|
|
48
|
+
| --------------- | ----------------------------- | ---------------- | --------------- | ----------------------------- | ------------------------------------- |
|
|
49
|
+
| Node/TypeScript | `package.json` | `npm run build` | `npm test` | `npm run lint` | `npm run typecheck` or `tsc --noEmit` |
|
|
50
|
+
| Rust | `Cargo.toml` | `cargo build` | `cargo test` | `cargo clippy -- -D warnings` | (included in build) |
|
|
51
|
+
| Python | `pyproject.toml` / `setup.py` | — | `pytest` | `ruff check .` | `mypy .` |
|
|
52
|
+
| Go | `go.mod` | `go build ./...` | `go test ./...` | `golangci-lint run` | (included in build) |
|
|
71
53
|
|
|
72
|
-
|
|
54
|
+
Check `package.json` scripts, `Makefile`, or `justfile` for project-specific commands first — prefer those over generic defaults.
|
|
73
55
|
|
|
74
|
-
|
|
75
|
-
## Completeness Report
|
|
56
|
+
If `--fix` flag provided, run the project's auto-fix command (e.g., `npm run lint:fix`, `ruff check --fix`, `cargo clippy --fix`).
|
|
76
57
|
|
|
77
|
-
|
|
78
|
-
| ----------------- | ---------- | ----------------------- |
|
|
79
|
-
| [Req 1 from spec] | ✓ Complete | `src/foo.ts:42` |
|
|
80
|
-
| [Req 2 from spec] | ✓ Complete | `src/bar.ts:15` |
|
|
81
|
-
| [Req 3 from spec] | ⚠ Partial | Missing edge case tests |
|
|
82
|
-
| [Req 4 from spec] | ✗ Missing | Not implemented |
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
**Completeness Score:** X/Y requirements met
|
|
86
|
-
|
|
87
|
-
---
|
|
88
|
-
|
|
89
|
-
## Phase 4: Correctness Check
|
|
90
|
-
|
|
91
|
-
**Do the automated gates pass?**
|
|
92
|
-
|
|
93
|
-
```bash
|
|
94
|
-
# Detect project type and run gates
|
|
95
|
-
ls package.json Cargo.toml pyproject.toml go.mod 2>/dev/null
|
|
96
|
-
```
|
|
97
|
-
|
|
98
|
-
**Node/TypeScript:**
|
|
99
|
-
|
|
100
|
-
```bash
|
|
101
|
-
npm run build 2>&1 | tail -10
|
|
102
|
-
npm test 2>&1 | tail -20
|
|
103
|
-
npm run lint 2>&1 | tail -10
|
|
104
|
-
npm run typecheck 2>&1 | tail -10
|
|
105
|
-
```
|
|
58
|
+
Report gate results (pass/warn/fail for each).
|
|
106
59
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
```bash
|
|
110
|
-
cargo build 2>&1 | tail -10
|
|
111
|
-
cargo test 2>&1 | tail -20
|
|
112
|
-
cargo clippy -- -D warnings 2>&1 | tail -10
|
|
113
|
-
```
|
|
114
|
-
|
|
115
|
-
**Python:**
|
|
116
|
-
|
|
117
|
-
```bash
|
|
118
|
-
pytest 2>&1 | tail -20
|
|
119
|
-
ruff check . 2>&1 | tail -10
|
|
120
|
-
mypy . 2>&1 | tail -10
|
|
121
|
-
```
|
|
122
|
-
|
|
123
|
-
**Go:**
|
|
124
|
-
|
|
125
|
-
```bash
|
|
126
|
-
go build ./... 2>&1 | tail -10
|
|
127
|
-
go test ./... 2>&1 | tail -20
|
|
128
|
-
golangci-lint run 2>&1 | tail -10
|
|
129
|
-
```
|
|
130
|
-
|
|
131
|
-
```markdown
|
|
132
|
-
## Correctness Report
|
|
133
|
-
|
|
134
|
-
| Gate | Status | Details |
|
|
135
|
-
| --------- | ------ | ------------------------- |
|
|
136
|
-
| Build | ✓ Pass | |
|
|
137
|
-
| Tests | ✓ Pass | 42 tests, 0 failures |
|
|
138
|
-
| Lint | ⚠ Warn | 2 warnings (non-blocking) |
|
|
139
|
-
| Typecheck | ✓ Pass | |
|
|
140
|
-
```
|
|
141
|
-
|
|
142
|
-
**Correctness Score:** X/Y gates passed
|
|
143
|
-
|
|
144
|
-
---
|
|
145
|
-
|
|
146
|
-
## Phase 5: Coherence Check (skip with --quick)
|
|
147
|
-
|
|
148
|
-
**Do artifacts agree with each other?**
|
|
60
|
+
## Phase 4: Coherence (skip with --quick)
|
|
149
61
|
|
|
150
62
|
Cross-reference artifacts for contradictions:
|
|
151
63
|
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
| plan.md ↔ implementation | ✓ | Code follows plan structure |
|
|
156
|
-
| research.md ↔ implementation | ⚠ | Didn't use recommended approach |
|
|
157
|
-
| design.md ↔ implementation | ✓ | Follows design patterns |
|
|
158
|
-
|
|
159
|
-
**Common coherence issues:**
|
|
160
|
-
|
|
161
|
-
- Plan says X, implementation does Y
|
|
162
|
-
- Research recommended approach A, used approach B (without justification)
|
|
163
|
-
- Spec says must-have, implementation treats as optional
|
|
164
|
-
- Design specifies pattern, implementation uses different pattern
|
|
64
|
+
- PRD vs implementation (does code address all PRD requirements?)
|
|
65
|
+
- Plan vs implementation (did code follow the plan?)
|
|
66
|
+
- Research recommendations vs actual approach (if different, is it justified?)
|
|
165
67
|
|
|
166
|
-
|
|
167
|
-
## Coherence Report
|
|
168
|
-
|
|
169
|
-
Contradictions found: 1
|
|
170
|
-
|
|
171
|
-
1. **Research vs Implementation**
|
|
172
|
-
- Research recommended: Use `zod` for validation
|
|
173
|
-
- Implementation uses: Manual validation
|
|
174
|
-
- Impact: Medium - works but less maintainable
|
|
175
|
-
- Action: Document decision or refactor
|
|
176
|
-
```
|
|
68
|
+
Flag contradictions with specific file references.
|
|
177
69
|
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
---
|
|
181
|
-
|
|
182
|
-
## Phase 6: Verification Summary
|
|
183
|
-
|
|
184
|
-
```
|
|
185
|
-
Verification: $ARGUMENTS
|
|
186
|
-
━━━━━━━━━━━━━━━━━━━━━━━
|
|
187
|
-
|
|
188
|
-
Dimension Score Status
|
|
189
|
-
───────────────────────────────
|
|
190
|
-
Completeness 4/5 ⚠ PARTIAL
|
|
191
|
-
Correctness 4/4 ✓ PASS
|
|
192
|
-
Coherence 3/4 ⚠ PARTIAL
|
|
193
|
-
|
|
194
|
-
Overall: ⚠ NEEDS ATTENTION
|
|
195
|
-
|
|
196
|
-
Issues Found:
|
|
197
|
-
─────────────
|
|
198
|
-
BLOCKING (must fix):
|
|
199
|
-
• [Req 4] Not implemented
|
|
200
|
-
|
|
201
|
-
NON-BLOCKING (should fix):
|
|
202
|
-
• [Req 3] Missing edge case tests
|
|
203
|
-
• Research recommendation not followed
|
|
204
|
-
|
|
205
|
-
Recommendations:
|
|
206
|
-
────────────────
|
|
207
|
-
1. Implement [Req 4] before closing
|
|
208
|
-
2. Add tests for edge case X
|
|
209
|
-
3. Document why zod was not used, or refactor to use it
|
|
210
|
-
```
|
|
211
|
-
|
|
212
|
-
---
|
|
213
|
-
|
|
214
|
-
## Phase 7: Auto-Fix (if --fix)
|
|
215
|
-
|
|
216
|
-
For fixable issues, attempt automatic resolution:
|
|
217
|
-
|
|
218
|
-
```typescript
|
|
219
|
-
// If lint issues are fixable
|
|
220
|
-
if (hasLintWarnings && canAutoFix) {
|
|
221
|
-
bash({ command: "npm run lint -- --fix" });
|
|
222
|
-
}
|
|
223
|
-
|
|
224
|
-
// If missing tests detected
|
|
225
|
-
if (missingTests) {
|
|
226
|
-
console.log("Consider adding tests for: [list uncovered code]");
|
|
227
|
-
}
|
|
228
|
-
```
|
|
229
|
-
|
|
230
|
-
---
|
|
231
|
-
|
|
232
|
-
## Phase 8: Update Bead Notes
|
|
233
|
-
|
|
234
|
-
Record verification results in bead:
|
|
70
|
+
## Phase 5: Report
|
|
235
71
|
|
|
236
72
|
```bash
|
|
237
73
|
br comments add $ARGUMENTS "Verification: [PASS|PARTIAL|FAIL] - [summary]"
|
|
238
74
|
```
|
|
239
75
|
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
## Phase 9: Record Findings
|
|
243
|
-
|
|
244
|
-
If significant issues or patterns discovered:
|
|
245
|
-
|
|
246
|
-
```typescript
|
|
247
|
-
observation({
|
|
248
|
-
type: "discovery",
|
|
249
|
-
title: "Verification findings for $ARGUMENTS",
|
|
250
|
-
narrative: "[Summary of issues found, patterns discovered, or lessons learned]",
|
|
251
|
-
concepts: "verification, testing, quality",
|
|
252
|
-
bead_id: "$ARGUMENTS",
|
|
253
|
-
confidence: "high",
|
|
254
|
-
});
|
|
255
|
-
```
|
|
256
|
-
|
|
257
|
-
---
|
|
258
|
-
|
|
259
|
-
## Output
|
|
260
|
-
|
|
261
|
-
```
|
|
262
|
-
Verification Complete: $ARGUMENTS
|
|
263
|
-
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
|
264
|
-
|
|
265
|
-
Result: ✓ READY TO SHIP | ⚠ NEEDS WORK | ✗ BLOCKED
|
|
266
|
-
|
|
267
|
-
Completeness: [score] - [status]
|
|
268
|
-
Correctness: [score] - [status]
|
|
269
|
-
Coherence: [score] - [status]
|
|
270
|
-
|
|
271
|
-
[If READY TO SHIP]
|
|
272
|
-
Next: /ship $ARGUMENTS
|
|
273
|
-
|
|
274
|
-
[If NEEDS WORK]
|
|
275
|
-
Fix these before shipping:
|
|
276
|
-
• [issue 1]
|
|
277
|
-
• [issue 2]
|
|
278
|
-
|
|
279
|
-
[If BLOCKED]
|
|
280
|
-
Cannot proceed until:
|
|
281
|
-
• [blocker 1]
|
|
282
|
-
```
|
|
283
|
-
|
|
284
|
-
---
|
|
285
|
-
|
|
286
|
-
## Examples
|
|
287
|
-
|
|
288
|
-
```bash
|
|
289
|
-
# Full verification
|
|
290
|
-
/verify br-feature-auth
|
|
291
|
-
|
|
292
|
-
# Quick check (gates only)
|
|
293
|
-
/verify br-feature-auth --quick
|
|
76
|
+
Output:
|
|
294
77
|
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
78
|
+
1. **Result**: READY TO SHIP / NEEDS WORK / BLOCKED
|
|
79
|
+
2. **Completeness**: score and status
|
|
80
|
+
3. **Correctness**: gate results
|
|
81
|
+
4. **Coherence**: contradictions found (if not --quick)
|
|
82
|
+
5. **Blocking issues** to fix before shipping
|
|
83
|
+
6. **Next step**: `/ship $ARGUMENTS` if ready, or list fixes needed
|
|
298
84
|
|
|
299
|
-
|
|
85
|
+
Record significant findings with `observation()`.
|
|
300
86
|
|
|
301
87
|
## Related Commands
|
|
302
88
|
|
|
303
89
|
| Need | Command |
|
|
304
90
|
| ----------------- | ------------------ |
|
|
305
|
-
| Ship after verify | `/ship
|
|
91
|
+
| Ship after verify | `/ship <id>` |
|
|
306
92
|
| Review code | `/review-codebase` |
|
|
307
93
|
| Check status | `/status` |
|
|
Binary file
|
|
Binary file
|
|
@@ -3,11 +3,10 @@
|
|
|
3
3
|
"agent": {
|
|
4
4
|
"build": {
|
|
5
5
|
"description": "Primary development agent with full codebase access",
|
|
6
|
-
"model": "
|
|
6
|
+
"model": "github-copilot/claude-opus-4.6"
|
|
7
7
|
},
|
|
8
8
|
"compaction": {
|
|
9
|
-
"description": "Session summarizer for context continuity across compactions"
|
|
10
|
-
"model": "opencode/minimax-m2.1-free"
|
|
9
|
+
"description": "Session summarizer for context continuity across compactions"
|
|
11
10
|
},
|
|
12
11
|
"explore": {
|
|
13
12
|
"description": "Fast codebase search specialist",
|
|
@@ -27,7 +26,7 @@
|
|
|
27
26
|
},
|
|
28
27
|
"plan": {
|
|
29
28
|
"description": "Primary planning agent for architecture and multi-phase execution",
|
|
30
|
-
"model": "
|
|
29
|
+
"model": "openai/gpt-5.3-codex"
|
|
31
30
|
},
|
|
32
31
|
"review": {
|
|
33
32
|
"description": "Code review, debugging, and security audit specialist",
|
|
@@ -45,26 +44,65 @@
|
|
|
45
44
|
"autoupdate": false,
|
|
46
45
|
"formatter": {
|
|
47
46
|
"biome": {
|
|
48
|
-
"command": [
|
|
49
|
-
|
|
47
|
+
"command": [
|
|
48
|
+
"npx",
|
|
49
|
+
"@biomejs/biome",
|
|
50
|
+
"check",
|
|
51
|
+
"--write",
|
|
52
|
+
"$FILE"
|
|
53
|
+
],
|
|
54
|
+
"extensions": [
|
|
55
|
+
".js",
|
|
56
|
+
".jsx",
|
|
57
|
+
".ts",
|
|
58
|
+
".tsx",
|
|
59
|
+
".json",
|
|
60
|
+
".jsonc"
|
|
61
|
+
]
|
|
50
62
|
},
|
|
51
63
|
"cargo-fmt": {
|
|
52
|
-
"command": [
|
|
53
|
-
|
|
64
|
+
"command": [
|
|
65
|
+
"cargo",
|
|
66
|
+
"fmt",
|
|
67
|
+
"--",
|
|
68
|
+
"$FILE"
|
|
69
|
+
],
|
|
70
|
+
"extensions": [
|
|
71
|
+
".rs"
|
|
72
|
+
]
|
|
54
73
|
},
|
|
55
74
|
"java-formatter": {
|
|
56
|
-
"command": [
|
|
75
|
+
"command": [
|
|
76
|
+
"google-java-format",
|
|
77
|
+
"--replace",
|
|
78
|
+
"$FILE"
|
|
79
|
+
],
|
|
57
80
|
"environment": {
|
|
58
81
|
"JAVA_HOME": "{env:JAVA_HOME}"
|
|
59
82
|
},
|
|
60
|
-
"extensions": [
|
|
83
|
+
"extensions": [
|
|
84
|
+
".java"
|
|
85
|
+
]
|
|
61
86
|
},
|
|
62
87
|
"laravel-pint": {
|
|
63
|
-
"command": [
|
|
64
|
-
|
|
88
|
+
"command": [
|
|
89
|
+
"npx",
|
|
90
|
+
"laravel-pint",
|
|
91
|
+
"--preset",
|
|
92
|
+
"psr12",
|
|
93
|
+
"$FILE"
|
|
94
|
+
],
|
|
95
|
+
"extensions": [
|
|
96
|
+
".php"
|
|
97
|
+
]
|
|
65
98
|
},
|
|
66
99
|
"oxfmt": {
|
|
67
|
-
"command": [
|
|
100
|
+
"command": [
|
|
101
|
+
"npx",
|
|
102
|
+
"oxfmt",
|
|
103
|
+
"--write",
|
|
104
|
+
"$FILE"
|
|
105
|
+
],
|
|
68
106
|
"extensions": [
|
|
69
107
|
".js",
|
|
70
108
|
".jsx",
|
|
@@ -275,7 +313,9 @@
|
|
|
275
313
|
"tool_call": true,
|
|
276
314
|
"variants": {
|
|
277
315
|
"high": {
|
|
278
|
-
"include": [
|
|
316
|
+
"include": [
|
|
317
|
+
"reasoning.encrypted_content"
|
|
318
|
+
],
|
|
279
319
|
"reasoningEffort": "high",
|
|
280
320
|
"reasoningSummary": "auto"
|
|
281
321
|
},
|
|
@@ -304,7 +344,9 @@
|
|
|
304
344
|
"disabled": true
|
|
305
345
|
},
|
|
306
346
|
"high": {
|
|
307
|
-
"include": [
|
|
347
|
+
"include": [
|
|
348
|
+
"reasoning.encrypted_content"
|
|
349
|
+
],
|
|
308
350
|
"reasoningEffort": "high",
|
|
309
351
|
"reasoningSummary": "auto",
|
|
310
352
|
"textVerbosity": "medium"
|
|
@@ -375,13 +417,17 @@
|
|
|
375
417
|
"disabled": true
|
|
376
418
|
},
|
|
377
419
|
"high": {
|
|
378
|
-
"include": [
|
|
420
|
+
"include": [
|
|
421
|
+
"reasoning.encrypted_content"
|
|
422
|
+
],
|
|
379
423
|
"reasoningEffort": "high",
|
|
380
424
|
"reasoningSummary": "auto",
|
|
381
425
|
"textVerbosity": "low"
|
|
382
426
|
},
|
|
383
427
|
"medium": {
|
|
384
|
-
"include": [
|
|
428
|
+
"include": [
|
|
429
|
+
"reasoning.encrypted_content"
|
|
430
|
+
],
|
|
385
431
|
"reasoningEffort": "medium",
|
|
386
432
|
"reasoningSummary": "auto",
|
|
387
433
|
"textVerbosity": "low"
|
|
@@ -394,13 +440,17 @@
|
|
|
394
440
|
"disabled": true
|
|
395
441
|
},
|
|
396
442
|
"high": {
|
|
397
|
-
"include": [
|
|
443
|
+
"include": [
|
|
444
|
+
"reasoning.encrypted_content"
|
|
445
|
+
],
|
|
398
446
|
"reasoningEffort": "high",
|
|
399
447
|
"reasoningSummary": "auto",
|
|
400
448
|
"textVerbosity": "low"
|
|
401
449
|
},
|
|
402
450
|
"medium": {
|
|
403
|
-
"include": [
|
|
451
|
+
"include": [
|
|
452
|
+
"reasoning.encrypted_content"
|
|
453
|
+
],
|
|
404
454
|
"reasoningEffort": "medium",
|
|
405
455
|
"reasoningSummary": "auto",
|
|
406
456
|
"textVerbosity": "low"
|
|
@@ -471,8 +521,14 @@
|
|
|
471
521
|
"output": 65536
|
|
472
522
|
},
|
|
473
523
|
"modalities": {
|
|
474
|
-
"input": [
|
|
475
|
-
|
|
524
|
+
"input": [
|
|
525
|
+
"text",
|
|
526
|
+
"image",
|
|
527
|
+
"pdf"
|
|
528
|
+
],
|
|
529
|
+
"output": [
|
|
530
|
+
"text"
|
|
531
|
+
]
|
|
476
532
|
},
|
|
477
533
|
"name": "Gemini 2 5 Flash"
|
|
478
534
|
},
|
|
@@ -482,8 +538,14 @@
|
|
|
482
538
|
"output": 65536
|
|
483
539
|
},
|
|
484
540
|
"modalities": {
|
|
485
|
-
"input": [
|
|
486
|
-
|
|
541
|
+
"input": [
|
|
542
|
+
"text",
|
|
543
|
+
"image",
|
|
544
|
+
"pdf"
|
|
545
|
+
],
|
|
546
|
+
"output": [
|
|
547
|
+
"text"
|
|
548
|
+
]
|
|
487
549
|
},
|
|
488
550
|
"name": "Gemini 2 5 Flash Lite"
|
|
489
551
|
},
|
|
@@ -493,8 +555,14 @@
|
|
|
493
555
|
"output": 65536
|
|
494
556
|
},
|
|
495
557
|
"modalities": {
|
|
496
|
-
"input": [
|
|
497
|
-
|
|
558
|
+
"input": [
|
|
559
|
+
"text",
|
|
560
|
+
"image",
|
|
561
|
+
"pdf"
|
|
562
|
+
],
|
|
563
|
+
"output": [
|
|
564
|
+
"text"
|
|
565
|
+
]
|
|
498
566
|
},
|
|
499
567
|
"name": "Gemini 2 5 Pro"
|
|
500
568
|
},
|
|
@@ -504,8 +572,14 @@
|
|
|
504
572
|
"output": 65536
|
|
505
573
|
},
|
|
506
574
|
"modalities": {
|
|
507
|
-
"input": [
|
|
508
|
-
|
|
575
|
+
"input": [
|
|
576
|
+
"text",
|
|
577
|
+
"image",
|
|
578
|
+
"pdf"
|
|
579
|
+
],
|
|
580
|
+
"output": [
|
|
581
|
+
"text"
|
|
582
|
+
]
|
|
509
583
|
},
|
|
510
584
|
"name": "Gemini 3 Flash Preview",
|
|
511
585
|
"options": {
|
|
@@ -542,8 +616,14 @@
|
|
|
542
616
|
"output": 65536
|
|
543
617
|
},
|
|
544
618
|
"modalities": {
|
|
545
|
-
"input": [
|
|
546
|
-
|
|
619
|
+
"input": [
|
|
620
|
+
"text",
|
|
621
|
+
"image",
|
|
622
|
+
"pdf"
|
|
623
|
+
],
|
|
624
|
+
"output": [
|
|
625
|
+
"text"
|
|
626
|
+
]
|
|
547
627
|
},
|
|
548
628
|
"name": "Gemini 3 Pro Preview",
|
|
549
629
|
"options": {
|
|
@@ -573,8 +653,14 @@
|
|
|
573
653
|
"output": 64000
|
|
574
654
|
},
|
|
575
655
|
"modalities": {
|
|
576
|
-
"input": [
|
|
577
|
-
|
|
656
|
+
"input": [
|
|
657
|
+
"text",
|
|
658
|
+
"image",
|
|
659
|
+
"pdf"
|
|
660
|
+
],
|
|
661
|
+
"output": [
|
|
662
|
+
"text"
|
|
663
|
+
]
|
|
578
664
|
},
|
|
579
665
|
"name": "Gemini Claude Opus 4 5 Thinking",
|
|
580
666
|
"options": {
|
|
@@ -603,8 +689,14 @@
|
|
|
603
689
|
"output": 64000
|
|
604
690
|
},
|
|
605
691
|
"modalities": {
|
|
606
|
-
"input": [
|
|
607
|
-
|
|
692
|
+
"input": [
|
|
693
|
+
"text",
|
|
694
|
+
"image",
|
|
695
|
+
"pdf"
|
|
696
|
+
],
|
|
697
|
+
"output": [
|
|
698
|
+
"text"
|
|
699
|
+
]
|
|
608
700
|
},
|
|
609
701
|
"name": "Gemini Claude Sonnet 4 5"
|
|
610
702
|
},
|
|
@@ -614,8 +706,14 @@
|
|
|
614
706
|
"output": 64000
|
|
615
707
|
},
|
|
616
708
|
"modalities": {
|
|
617
|
-
"input": [
|
|
618
|
-
|
|
709
|
+
"input": [
|
|
710
|
+
"text",
|
|
711
|
+
"image",
|
|
712
|
+
"pdf"
|
|
713
|
+
],
|
|
714
|
+
"output": [
|
|
715
|
+
"text"
|
|
716
|
+
]
|
|
619
717
|
},
|
|
620
718
|
"name": "Gemini Claude Sonnet 4 5 Thinking",
|
|
621
719
|
"options": {
|