FruxonDocs
IntegrationsSkills

Generates a skill definition from markdown content.

Returns a draft skill definition for review — does not create the skill.

POST
/v1/tenants/{tenant}/skills:generateFromMarkdown
AuthorizationBearer <token>

JWT Authorization header using the Bearer scheme. Enter 'Bearer' [space] and then your token.

In: header

Path Parameters

tenant*string

The tenant identifier

The markdown content and optional file name.

markdownContent*string

Raw markdown content to transform into a skill definition.

Length1 <= length
fileName*string

Source file name, used as context for generating the skill ID and display name.

Length1 <= length
[key: string]?never

Response Body

curl -X POST "https://api.fruxon.com/v1/tenants/string/skills:generateFromMarkdown" \  -H "Content-Type: application/json" \  -d '{    "markdownContent": "string",    "fileName": "string"  }'
{
  "id": "string",
  "displayName": "string",
  "description": "string",
  "instructions": "string",
  "tools": [
    {
      "integrationId": "string",
      "id": "string"
    }
  ],
  "resources": [
    {
      "assetId": "string",
      "description": "string",
      "vectorized": false
    }
  ]
}
{
  "type": "string",
  "title": "string",
  "status": 0,
  "detail": "string",
  "instance": "string",
  "property1": null,
  "property2": null
}
Empty
Empty