Merge branch 'dev' into sqlite2

This commit is contained in:
Dax Raad 2026-01-31 16:08:47 -05:00
commit db908deee5
146 changed files with 17204 additions and 8559 deletions

View file

@ -1,7 +1,7 @@
{
"$schema": "https://json.schemastore.org/package.json",
"name": "@opencode-ai/sdk",
"version": "1.1.45",
"version": "1.1.48",
"type": "module",
"license": "MIT",
"scripts": {

View file

@ -1786,26 +1786,6 @@ export type Config = {
prune?: boolean
}
experimental?: {
hook?: {
file_edited?: {
[key: string]: Array<{
command: Array<string>
environment?: {
[key: string]: string
}
}>
}
session_completed?: Array<{
command: Array<string>
environment?: {
[key: string]: string
}
}>
}
/**
* Number of retries for chat completions on failure
*/
chatMaxRetries?: number
disable_paste_summary?: boolean
/**
* Enable the batch tool
@ -2143,7 +2123,7 @@ export type Command = {
description?: string
agent?: string
model?: string
mcp?: boolean
source?: "command" | "mcp" | "skill"
template: string
subtask?: boolean
hints: Array<string>
@ -4940,6 +4920,7 @@ export type AppSkillsResponses = {
name: string
description: string
location: string
content: string
}>
}