create_wiki_page
Automate wiki page creation in Azure DevOps with a structured input system, specifying project, wiki name, path, and content for streamlined documentation.
Instructions
Create a new wiki page
Input Schema
Name | Required | Description | Default |
---|---|---|---|
content | Yes | Content of the wiki page | |
path | Yes | Path of the wiki page | |
project | Yes | Name of the Azure DevOps project | |
wiki | Yes | Name of the wiki |
Input Schema (JSON Schema)
{
"properties": {
"content": {
"description": "Content of the wiki page",
"type": "string"
},
"path": {
"description": "Path of the wiki page",
"type": "string"
},
"project": {
"description": "Name of the Azure DevOps project",
"type": "string"
},
"wiki": {
"description": "Name of the wiki",
"type": "string"
}
},
"required": [
"project",
"wiki",
"path",
"content"
],
"type": "object"
}