mirror of
https://github.com/openai/codex.git
synced 2026-04-24 22:54:54 +00:00
skills/remote/list: params=hazelnutScope, productSurface, enabled;
returns=data: { id, name, description }[]
skills/remote/export: params=hazelnutId; returns={ id, path }
48 lines
847 B
JSON
48 lines
847 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"definitions": {
|
|
"HazelnutScope": {
|
|
"enum": [
|
|
"example",
|
|
"workspace-shared",
|
|
"all-shared",
|
|
"personal"
|
|
],
|
|
"type": "string"
|
|
},
|
|
"ProductSurface": {
|
|
"enum": [
|
|
"chatgpt",
|
|
"codex",
|
|
"api",
|
|
"atlas"
|
|
],
|
|
"type": "string"
|
|
}
|
|
},
|
|
"properties": {
|
|
"enabled": {
|
|
"default": false,
|
|
"type": "boolean"
|
|
},
|
|
"hazelnutScope": {
|
|
"allOf": [
|
|
{
|
|
"$ref": "#/definitions/HazelnutScope"
|
|
}
|
|
],
|
|
"default": "example"
|
|
},
|
|
"productSurface": {
|
|
"allOf": [
|
|
{
|
|
"$ref": "#/definitions/ProductSurface"
|
|
}
|
|
],
|
|
"default": "codex"
|
|
}
|
|
},
|
|
"title": "SkillsRemoteReadParams",
|
|
"type": "object"
|
|
}
|