Skip to main content
PUT
/
api
/
v1
/
skills
/
orchestrator
/
{name}
Update orchestrator skill
curl --request PUT \
  --url http://localhost:3000/api/v1/skills/orchestrator/{name} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "<string>",
  "content": "<string>",
  "allowedTools": [
    "<string>"
  ]
}
'
{
  "ok": true,
  "data": {
    "name": "<string>"
  }
}

Authorizations

Authorization
string
header
required

API key passed as a Bearer token. Configure via the apiKeys field in polpo.json or the POLPO_API_KEY environment variable.

Path Parameters

name
string
required

Body

application/json
description
string
content
string
allowedTools
string[]

Response

Skill updated

ok
boolean
required
data
object
required