codex: update skills list schema fixtures

This commit is contained in:
starr-openai
2026-05-28 19:50:02 -07:00
parent fefc6e139c
commit a436b1ce6d
5 changed files with 32 additions and 0 deletions

View File

@@ -3011,6 +3011,13 @@
},
"type": "array"
},
"environmentId": {
"description": "Environment whose filesystem should be used for all requested cwd values.",
"type": [
"string",
"null"
]
},
"forceReload": {
"description": "When true, bypass the skills cache and re-scan skills from disk.",
"type": "boolean"

View File

@@ -15201,6 +15201,13 @@
},
"type": "array"
},
"environmentId": {
"description": "Environment whose filesystem should be used for all requested cwd values.",
"type": [
"string",
"null"
]
},
"forceReload": {
"description": "When true, bypass the skills cache and re-scan skills from disk.",
"type": "boolean"

View File

@@ -13025,6 +13025,13 @@
},
"type": "array"
},
"environmentId": {
"description": "Environment whose filesystem should be used for all requested cwd values.",
"type": [
"string",
"null"
]
},
"forceReload": {
"description": "When true, bypass the skills cache and re-scan skills from disk.",
"type": "boolean"

View File

@@ -8,6 +8,13 @@
},
"type": "array"
},
"environmentId": {
"description": "Environment whose filesystem should be used for all requested cwd values.",
"type": [
"string",
"null"
]
},
"forceReload": {
"description": "When true, bypass the skills cache and re-scan skills from disk.",
"type": "boolean"

View File

@@ -7,6 +7,10 @@ export type SkillsListParams = {
* When empty, defaults to the current session working directory.
*/
cwds?: Array<string>,
/**
* Environment whose filesystem should be used for all requested cwd values.
*/
environmentId?: string | null,
/**
* When true, bypass the skills cache and re-scan skills from disk.
*/