Skip to main content
POST
/
skills
Create skill
curl --request POST \
  --url https://api.duvo.ai/v1/skills \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "description": "<string>",
  "content": "<string>",
  "license": "<string>",
  "compatibility": "<string>",
  "metadata": {},
  "allowed-tools": "<string>"
}
'
{
  "skill": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "description": "<string>",
    "team_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.duvo.ai/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

API key authentication. Get your API key from the Duvo dashboard.

Body

application/json
name
string
required

Skill name. 1-64 lowercase alphanumeric chars and hyphens; no leading/trailing or consecutive hyphens.

Required string length: 1 - 64
description
string
required

1-1024 chars describing what the skill does and when to invoke it.

Required string length: 1 - 1024
content
string
required

Markdown body of SKILL.md without YAML frontmatter. The server prepends the frontmatter from the other fields.

license
string

Optional: license name or reference to a bundled license file.

compatibility
string

Optional: 1-500 chars describing environment requirements.

Maximum string length: 500
metadata
object

Optional: arbitrary key-value metadata.

allowed-tools
string

Optional (experimental): space-delimited list of pre-approved tools.

Response

Default Response

skill
object
required

The created or updated skill