Create an org-scoped custom skill. The skill will be searchable via /skills/resolve alongside curated skills.
curl --request POST \
--url https://api.case.dev/skills \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"content": "<string>",
"slug": "<string>",
"summary": "<string>",
"tags": [
"<string>"
],
"metadata": {}
}
'{
"slug": "<string>",
"name": "<string>",
"summary": "<string>",
"content": "<string>",
"tags": [
"<string>"
],
"metadata": {},
"version": 123,
"created_at": "2023-11-07T05:31:56Z"
}API key starting with sk_case_
Skill definition
Skill name
1 - 256Full skill content in markdown
1 - 65536URL-safe slug. Auto-generated from name if omitted.
128Brief description (1-2 sentences)
1000Tags for categorization and search boosting
Arbitrary metadata (author, license, etc.)
Was this page helpful?
curl --request POST \
--url https://api.case.dev/skills \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"content": "<string>",
"slug": "<string>",
"summary": "<string>",
"tags": [
"<string>"
],
"metadata": {}
}
'{
"slug": "<string>",
"name": "<string>",
"summary": "<string>",
"content": "<string>",
"tags": [
"<string>"
],
"metadata": {},
"version": 123,
"created_at": "2023-11-07T05:31:56Z"
}