chore: generate

thinking-toggle-wip
GitHub Action 2025-12-22 23:24:39 +00:00 committed by Aiden Cline
parent d3eb85e330
commit 6f4ddd15c9
4 changed files with 73 additions and 3 deletions

View File

@ -24,4 +24,4 @@
"typescript": "catalog:",
"@typescript/native-preview": "catalog:"
}
}
}

View File

@ -29,4 +29,4 @@
"publishConfig": {
"directory": "dist"
}
}
}

View File

@ -1170,6 +1170,13 @@ export type AgentConfig = {
| {
[key: string]: "ask" | "allow" | "deny"
}
skill?:
| "ask"
| "allow"
| "deny"
| {
[key: string]: "ask" | "allow" | "deny"
}
webfetch?: "ask" | "allow" | "deny"
doom_loop?: "ask" | "allow" | "deny"
external_directory?: "ask" | "allow" | "deny"
@ -1196,6 +1203,13 @@ export type AgentConfig = {
| {
[key: string]: "ask" | "allow" | "deny"
}
skill?:
| "ask"
| "allow"
| "deny"
| {
[key: string]: "ask" | "allow" | "deny"
}
webfetch?: "ask" | "allow" | "deny"
doom_loop?: "ask" | "allow" | "deny"
external_directory?: "ask" | "allow" | "deny"
@ -1515,6 +1529,13 @@ export type Config = {
| {
[key: string]: "ask" | "allow" | "deny"
}
skill?:
| "ask"
| "allow"
| "deny"
| {
[key: string]: "ask" | "allow" | "deny"
}
webfetch?: "ask" | "allow" | "deny"
doom_loop?: "ask" | "allow" | "deny"
external_directory?: "ask" | "allow" | "deny"
@ -1795,6 +1816,9 @@ export type Agent = {
bash: {
[key: string]: "ask" | "allow" | "deny"
}
skill: {
[key: string]: "ask" | "allow" | "deny"
}
webfetch?: "ask" | "allow" | "deny"
doom_loop?: "ask" | "allow" | "deny"
external_directory?: "ask" | "allow" | "deny"

View File

@ -7697,6 +7697,24 @@
}
]
},
"skill": {
"anyOf": [
{
"type": "string",
"enum": ["ask", "allow", "deny"]
},
{
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {
"type": "string",
"enum": ["ask", "allow", "deny"]
}
}
]
},
"webfetch": {
"type": "string",
"enum": ["ask", "allow", "deny"]
@ -8405,6 +8423,24 @@
}
]
},
"skill": {
"anyOf": [
{
"type": "string",
"enum": ["ask", "allow", "deny"]
},
{
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {
"type": "string",
"enum": ["ask", "allow", "deny"]
}
}
]
},
"webfetch": {
"type": "string",
"enum": ["ask", "allow", "deny"]
@ -9214,6 +9250,16 @@
"enum": ["ask", "allow", "deny"]
}
},
"skill": {
"type": "object",
"propertyNames": {
"type": "string"
},
"additionalProperties": {
"type": "string",
"enum": ["ask", "allow", "deny"]
}
},
"webfetch": {
"type": "string",
"enum": ["ask", "allow", "deny"]
@ -9227,7 +9273,7 @@
"enum": ["ask", "allow", "deny"]
}
},
"required": ["edit", "bash"]
"required": ["edit", "bash", "skill"]
},
"model": {
"type": "object",