Skip to main content
GET
/
api
/
v1
/
skills
/
{id}
Get skill
curl --request GET \
  --url http://localhost:3001/api/v1/skills/{id} \
  --cookie nut-session=
{
  "success": true,
  "document": {
    "id": "<string>",
    "name": "<string>",
    "description": "<string>",
    "license": "<string>",
    "compatibility": "<string>",
    "allowedTools": "<string>",
    "metadata": {},
    "content": "<string>"
  }
}

Authorizations

nut-session
string
cookie
required

Session cookie authentication

Path Parameters

id
string
required

Skill identifier (directory name under .nut/skills/)

Response

Skill details

success
boolean
document
object

A skill document following the Agent Skills specification. Stored as .nut/skills/<id>/SKILL.md with YAML frontmatter.