opencodekit 0.23.1 → 0.23.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.
- package/dist/index.js +354 -825
- package/dist/template/.opencode/AGENTS.md +12 -0
- package/dist/template/.opencode/command/init.md +198 -34
- package/dist/template/.opencode/context/fallow.md +137 -0
- package/dist/template/.opencode/opencode.json +12 -315
- package/dist/template/.opencode/plugin/memory/compile.ts +171 -186
- package/dist/template/.opencode/plugin/memory/index-generator.ts +118 -133
- package/dist/template/.opencode/plugin/memory/lint.ts +253 -275
- package/dist/template/.opencode/plugin/memory/tools.ts +224 -268
- package/dist/template/.opencode/plugin/memory/validate.ts +154 -164
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/web-search-preview.ts +13 -30
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/web-search-shared.ts +25 -0
- package/dist/template/.opencode/plugin/sdk/copilot/responses/tool/web-search.ts +17 -34
- package/dist/template/.opencode/plugin/srcwalk.ts +775 -661
- package/dist/template/.opencode/skill/condition-based-waiting/example.ts +15 -2
- package/dist/template/.opencode/skill/fallow/SKILL.md +409 -0
- package/dist/template/.opencode/skill/fallow/references/cli-reference.md +1905 -0
- package/dist/template/.opencode/skill/fallow/references/gotchas.md +644 -0
- package/dist/template/.opencode/skill/fallow/references/patterns.md +791 -0
- package/package.json +1 -1
|
@@ -47,9 +47,8 @@
|
|
|
47
47
|
},
|
|
48
48
|
"instructions": [
|
|
49
49
|
".opencode/memory/project/user.md",
|
|
50
|
-
".opencode/
|
|
51
|
-
".opencode/
|
|
52
|
-
".opencode/context/git-context.md"
|
|
50
|
+
".opencode/context/git-context.md",
|
|
51
|
+
".opencode/context/fallow.md"
|
|
53
52
|
],
|
|
54
53
|
"keybinds": {
|
|
55
54
|
"leader": "ctrl+x",
|
|
@@ -115,318 +114,8 @@
|
|
|
115
114
|
"*token*": "deny"
|
|
116
115
|
}
|
|
117
116
|
},
|
|
118
|
-
"plugin": ["@tarquinen/opencode-dcp@latest", "openslimedit@latest"
|
|
117
|
+
"plugin": ["@tarquinen/opencode-dcp@latest", "openslimedit@latest"],
|
|
119
118
|
"provider": {
|
|
120
|
-
"github-copilot": {
|
|
121
|
-
"models": {
|
|
122
|
-
"claude-haiku-4.5": {
|
|
123
|
-
"attachment": true,
|
|
124
|
-
"limit": {
|
|
125
|
-
"context": 216000,
|
|
126
|
-
"output": 32000
|
|
127
|
-
},
|
|
128
|
-
"options": {
|
|
129
|
-
"reasoningEffort": "high"
|
|
130
|
-
},
|
|
131
|
-
"reasoning": true,
|
|
132
|
-
"temperature": true,
|
|
133
|
-
"tool_call": true,
|
|
134
|
-
"variants": {
|
|
135
|
-
"high": {
|
|
136
|
-
"options": {
|
|
137
|
-
"reasoningEffort": "high"
|
|
138
|
-
}
|
|
139
|
-
},
|
|
140
|
-
"low": {
|
|
141
|
-
"options": {
|
|
142
|
-
"reasoningEffort": "low"
|
|
143
|
-
}
|
|
144
|
-
},
|
|
145
|
-
"medium": {
|
|
146
|
-
"options": {
|
|
147
|
-
"reasoningEffort": "medium"
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
}
|
|
151
|
-
},
|
|
152
|
-
"claude-opus-4.7": {
|
|
153
|
-
"attachment": true,
|
|
154
|
-
"limit": {
|
|
155
|
-
"context": 216000,
|
|
156
|
-
"output": 64000
|
|
157
|
-
},
|
|
158
|
-
"options": {
|
|
159
|
-
"reasoningEffort": "medium"
|
|
160
|
-
},
|
|
161
|
-
"reasoning": true,
|
|
162
|
-
"temperature": true,
|
|
163
|
-
"tool_call": true,
|
|
164
|
-
"variants": {
|
|
165
|
-
"medium": {
|
|
166
|
-
"options": {
|
|
167
|
-
"reasoningEffort": "medium"
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
}
|
|
171
|
-
},
|
|
172
|
-
"claude-opus-4.6": {
|
|
173
|
-
"attachment": true,
|
|
174
|
-
"limit": {
|
|
175
|
-
"context": 216000,
|
|
176
|
-
"output": 64000
|
|
177
|
-
},
|
|
178
|
-
"options": {
|
|
179
|
-
"reasoningEffort": "high"
|
|
180
|
-
},
|
|
181
|
-
"reasoning": true,
|
|
182
|
-
"temperature": true,
|
|
183
|
-
"tool_call": true,
|
|
184
|
-
"variants": {
|
|
185
|
-
"high": {
|
|
186
|
-
"options": {
|
|
187
|
-
"reasoningEffort": "high"
|
|
188
|
-
}
|
|
189
|
-
},
|
|
190
|
-
"low": {
|
|
191
|
-
"options": {
|
|
192
|
-
"reasoningEffort": "low"
|
|
193
|
-
}
|
|
194
|
-
},
|
|
195
|
-
"medium": {
|
|
196
|
-
"options": {
|
|
197
|
-
"reasoningEffort": "medium"
|
|
198
|
-
}
|
|
199
|
-
}
|
|
200
|
-
}
|
|
201
|
-
},
|
|
202
|
-
"claude-sonnet-4.6": {
|
|
203
|
-
"attachment": true,
|
|
204
|
-
"limit": {
|
|
205
|
-
"context": 216000,
|
|
206
|
-
"output": 32000
|
|
207
|
-
},
|
|
208
|
-
"options": {
|
|
209
|
-
"reasoningEffort": "high"
|
|
210
|
-
},
|
|
211
|
-
"reasoning": true,
|
|
212
|
-
"temperature": true,
|
|
213
|
-
"tool_call": true,
|
|
214
|
-
"variants": {
|
|
215
|
-
"high": {
|
|
216
|
-
"options": {
|
|
217
|
-
"reasoningEffort": "high"
|
|
218
|
-
}
|
|
219
|
-
},
|
|
220
|
-
"low": {
|
|
221
|
-
"options": {
|
|
222
|
-
"reasoningEffort": "low"
|
|
223
|
-
}
|
|
224
|
-
},
|
|
225
|
-
"medium": {
|
|
226
|
-
"options": {
|
|
227
|
-
"reasoningEffort": "medium"
|
|
228
|
-
}
|
|
229
|
-
}
|
|
230
|
-
}
|
|
231
|
-
},
|
|
232
|
-
"gemini-3-flash-preview": {
|
|
233
|
-
"attachment": true,
|
|
234
|
-
"limit": {
|
|
235
|
-
"context": 173000,
|
|
236
|
-
"output": 64000
|
|
237
|
-
},
|
|
238
|
-
"reasoning": true,
|
|
239
|
-
"temperature": true,
|
|
240
|
-
"tool_call": true
|
|
241
|
-
},
|
|
242
|
-
"gemini-3-pro-preview": {
|
|
243
|
-
"attachment": true,
|
|
244
|
-
"limit": {
|
|
245
|
-
"context": 173000,
|
|
246
|
-
"output": 64000
|
|
247
|
-
},
|
|
248
|
-
"reasoning": true,
|
|
249
|
-
"temperature": true,
|
|
250
|
-
"tool_call": true
|
|
251
|
-
},
|
|
252
|
-
"gemini-3.1-pro-preview": {
|
|
253
|
-
"attachment": true,
|
|
254
|
-
"limit": {
|
|
255
|
-
"context": 173000,
|
|
256
|
-
"output": 64000
|
|
257
|
-
},
|
|
258
|
-
"reasoning": true,
|
|
259
|
-
"temperature": true,
|
|
260
|
-
"tool_call": true
|
|
261
|
-
},
|
|
262
|
-
"gpt-5.3-codex": {
|
|
263
|
-
"attachment": true,
|
|
264
|
-
"limit": {
|
|
265
|
-
"context": 400000,
|
|
266
|
-
"input": 400000,
|
|
267
|
-
"output": 128000
|
|
268
|
-
},
|
|
269
|
-
"name": "Gpt 5 3 Codex",
|
|
270
|
-
"options": {
|
|
271
|
-
"reasoningEffort": "medium",
|
|
272
|
-
"reasoningSummary": "auto",
|
|
273
|
-
"textVerbosity": "medium"
|
|
274
|
-
},
|
|
275
|
-
"reasoning": true,
|
|
276
|
-
"temperature": true,
|
|
277
|
-
"tool_call": true,
|
|
278
|
-
"variants": {
|
|
279
|
-
"fast": {
|
|
280
|
-
"disabled": true
|
|
281
|
-
},
|
|
282
|
-
"xhigh": {
|
|
283
|
-
"include": ["reasoning.encrypted_content"],
|
|
284
|
-
"reasoningEffort": "xhigh",
|
|
285
|
-
"reasoningSummary": "auto"
|
|
286
|
-
},
|
|
287
|
-
"high": {
|
|
288
|
-
"include": ["reasoning.encrypted_content"],
|
|
289
|
-
"reasoningEffort": "high",
|
|
290
|
-
"reasoningSummary": "auto",
|
|
291
|
-
"textVerbosity": "medium"
|
|
292
|
-
},
|
|
293
|
-
"low": {
|
|
294
|
-
"reasoningEffort": "low",
|
|
295
|
-
"reasoningSummary": "auto"
|
|
296
|
-
},
|
|
297
|
-
"medium": {
|
|
298
|
-
"reasoningEffort": "medium",
|
|
299
|
-
"reasoningSummary": "auto",
|
|
300
|
-
"textVerbosity": "medium"
|
|
301
|
-
}
|
|
302
|
-
}
|
|
303
|
-
},
|
|
304
|
-
"gpt-5.4-mini": {
|
|
305
|
-
"attachment": true,
|
|
306
|
-
"limit": {
|
|
307
|
-
"context": 400000,
|
|
308
|
-
"input": 400000,
|
|
309
|
-
"output": 128000
|
|
310
|
-
},
|
|
311
|
-
"modalities": {
|
|
312
|
-
"input": ["text", "image"],
|
|
313
|
-
"output": ["text"]
|
|
314
|
-
},
|
|
315
|
-
"options": {
|
|
316
|
-
"reasoningEffort": "low",
|
|
317
|
-
"reasoningSummary": "auto",
|
|
318
|
-
"textVerbosity": "medium"
|
|
319
|
-
},
|
|
320
|
-
"reasoning": true,
|
|
321
|
-
"temperature": true,
|
|
322
|
-
"tool_call": true,
|
|
323
|
-
"variants": {
|
|
324
|
-
"xhigh": {
|
|
325
|
-
"include": ["reasoning.encrypted_content"],
|
|
326
|
-
"reasoningEffort": "xhigh",
|
|
327
|
-
"reasoningSummary": "auto"
|
|
328
|
-
},
|
|
329
|
-
"high": {
|
|
330
|
-
"include": ["reasoning.encrypted_content"],
|
|
331
|
-
"reasoningEffort": "high",
|
|
332
|
-
"reasoningSummary": "auto"
|
|
333
|
-
},
|
|
334
|
-
"low": {
|
|
335
|
-
"reasoningEffort": "low",
|
|
336
|
-
"reasoningSummary": "auto"
|
|
337
|
-
},
|
|
338
|
-
"medium": {
|
|
339
|
-
"reasoningEffort": "medium",
|
|
340
|
-
"reasoningSummary": "auto"
|
|
341
|
-
}
|
|
342
|
-
}
|
|
343
|
-
},
|
|
344
|
-
"gpt-5.4": {
|
|
345
|
-
"attachment": true,
|
|
346
|
-
"limit": {
|
|
347
|
-
"context": 400000,
|
|
348
|
-
"input": 400000,
|
|
349
|
-
"output": 128000
|
|
350
|
-
},
|
|
351
|
-
"modalities": {
|
|
352
|
-
"input": ["text", "image"],
|
|
353
|
-
"output": ["text"]
|
|
354
|
-
},
|
|
355
|
-
"options": {
|
|
356
|
-
"reasoningEffort": "low",
|
|
357
|
-
"reasoningSummary": "auto",
|
|
358
|
-
"textVerbosity": "medium"
|
|
359
|
-
},
|
|
360
|
-
"reasoning": true,
|
|
361
|
-
"temperature": true,
|
|
362
|
-
"tool_call": true,
|
|
363
|
-
"variants": {
|
|
364
|
-
"xhigh": {
|
|
365
|
-
"include": ["reasoning.encrypted_content"],
|
|
366
|
-
"reasoningEffort": "xhigh",
|
|
367
|
-
"reasoningSummary": "auto"
|
|
368
|
-
},
|
|
369
|
-
"high": {
|
|
370
|
-
"include": ["reasoning.encrypted_content"],
|
|
371
|
-
"reasoningEffort": "high",
|
|
372
|
-
"reasoningSummary": "auto"
|
|
373
|
-
},
|
|
374
|
-
"low": {
|
|
375
|
-
"reasoningEffort": "low",
|
|
376
|
-
"reasoningSummary": "auto"
|
|
377
|
-
},
|
|
378
|
-
"medium": {
|
|
379
|
-
"reasoningEffort": "medium",
|
|
380
|
-
"reasoningSummary": "auto"
|
|
381
|
-
}
|
|
382
|
-
}
|
|
383
|
-
},
|
|
384
|
-
"gpt-5.5": {
|
|
385
|
-
"name": "GPT-5.5",
|
|
386
|
-
"attachment": true,
|
|
387
|
-
"limit": {
|
|
388
|
-
"context": 400000,
|
|
389
|
-
"input": 400000,
|
|
390
|
-
"output": 128000
|
|
391
|
-
},
|
|
392
|
-
"modalities": {
|
|
393
|
-
"input": ["text", "image"],
|
|
394
|
-
"output": ["text"]
|
|
395
|
-
},
|
|
396
|
-
"options": {
|
|
397
|
-
"reasoningEffort": "medium",
|
|
398
|
-
"reasoningSummary": "auto",
|
|
399
|
-
"textVerbosity": "medium"
|
|
400
|
-
},
|
|
401
|
-
"reasoning": true,
|
|
402
|
-
"temperature": true,
|
|
403
|
-
"tool_call": true,
|
|
404
|
-
"variants": {
|
|
405
|
-
"xhigh": {
|
|
406
|
-
"include": ["reasoning.encrypted_content"],
|
|
407
|
-
"reasoningEffort": "xhigh",
|
|
408
|
-
"reasoningSummary": "auto"
|
|
409
|
-
},
|
|
410
|
-
"high": {
|
|
411
|
-
"include": ["reasoning.encrypted_content"],
|
|
412
|
-
"reasoningEffort": "high",
|
|
413
|
-
"reasoningSummary": "auto"
|
|
414
|
-
},
|
|
415
|
-
"low": {
|
|
416
|
-
"reasoningEffort": "low",
|
|
417
|
-
"reasoningSummary": "auto"
|
|
418
|
-
},
|
|
419
|
-
"medium": {
|
|
420
|
-
"reasoningEffort": "medium",
|
|
421
|
-
"reasoningSummary": "auto"
|
|
422
|
-
}
|
|
423
|
-
}
|
|
424
|
-
}
|
|
425
|
-
},
|
|
426
|
-
"options": {
|
|
427
|
-
"timeout": 600000
|
|
428
|
-
}
|
|
429
|
-
},
|
|
430
119
|
"proxypal": {
|
|
431
120
|
"models": {
|
|
432
121
|
"claude-opus-4.6": {
|
|
@@ -781,6 +470,14 @@
|
|
|
781
470
|
"share": "manual",
|
|
782
471
|
"small_model": "opencode/gpt-5-nano",
|
|
783
472
|
"watcher": {
|
|
784
|
-
"ignore": [
|
|
473
|
+
"ignore": [
|
|
474
|
+
"node_modules/**",
|
|
475
|
+
".git/**",
|
|
476
|
+
"dist/**",
|
|
477
|
+
"build/**",
|
|
478
|
+
".fallow/**",
|
|
479
|
+
"*.log",
|
|
480
|
+
".DS_Store"
|
|
481
|
+
]
|
|
785
482
|
}
|
|
786
483
|
}
|