customize_template
Create or update custom documentation templates with placeholders and metadata to streamline content creation and improve knowledge base organization.
Instructions
Create or update a custom documentation template
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Template content with {title} placeholder | |
metadata | No | Default metadata for the template | |
templateName | Yes | Name of the template |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Template content with {title} placeholder",
"type": "string"
},
"metadata": {
"description": "Default metadata for the template",
"properties": {
"category": {
"type": "string"
},
"tags": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
},
"templateName": {
"description": "Name of the template",
"type": "string"
}
},
"required": [
"templateName",
"content"
],
"type": "object"
}