curl --request POST \
--url https://developer.creao.ai/v1/skills \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"source": "github"
}
'
{
"skill_id": "<string>",
"kind": "builtin",
"name": "<string>",
"display_name": "<string>",
"description": "<string>",
"enabled": true,
"core": true,
"source_url": "<string>",
"tags": [
"<string>"
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"content": "<string>",
"files": {}
}
Skills
Install a skill
Install a custom Agent Brain skill from GitHub or content.
POST
/
v1
/
skills
curl --request POST \
--url https://developer.creao.ai/v1/skills \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"source": "github"
}
'
{
"skill_id": "<string>",
"kind": "builtin",
"name": "<string>",
"display_name": "<string>",
"description": "<string>",
"enabled": true,
"core": true,
"source_url": "<string>",
"tags": [
"<string>"
],
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"content": "<string>",
"files": {}
}
Authorizations
bearerAuthapiKeyQuery
Account API key from Developer Console. Keys start with cr_sk_.
Body
application/json
Available options:
github, content Required when source is github.
Maximum string length:
1024SKILL.md text. Required when source is content.
Maximum string length:
262144Supporting files. Combined size must be 5 MB or smaller.
Show child attributes
Show child attributes
Maximum string length:
64Maximum string length:
2000Maximum array length:
10Maximum string length:
50Response
Existing custom skill updated.
Public skill id. Custom skills use custom-{name}.
Available options:
builtin, custom Custom-skill row UUID. Null for built-ins. Read-only metadata; not used in paths.
SKILL.md body. Present on GET and install, omitted from list.
Supporting files for custom skills. Present on GET and install.
Show child attributes
Show child attributes