mirror of
https://github.com/openai/codex.git
synced 2026-05-01 03:42:05 +03:00
feat: support disabling bundled system skills (#13792)
Support disable bundled system skills with a config: [skills.bundled] enabled = false
This commit is contained in:
@@ -284,6 +284,16 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"BundledSkillsConfig": {
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"enabled": {
|
||||
"default": true,
|
||||
"type": "boolean"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"ConfigProfile": {
|
||||
"additionalProperties": false,
|
||||
"description": "Collection of common configuration options that a user can define as a unit in `config.toml`.",
|
||||
@@ -1463,6 +1473,9 @@
|
||||
"SkillsConfig": {
|
||||
"additionalProperties": false,
|
||||
"properties": {
|
||||
"bundled": {
|
||||
"$ref": "#/definitions/BundledSkillsConfig"
|
||||
},
|
||||
"config": {
|
||||
"items": {
|
||||
"$ref": "#/definitions/SkillConfig"
|
||||
|
||||
Reference in New Issue
Block a user