create_wiki
Create a new wiki in an Azure DevOps project to document project information, processes, and team knowledge for improved collaboration.
Instructions
Creates a new wiki in a project.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | The name of the wiki to create. | |
project | Yes | The name or ID of the project. |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "The name of the wiki to create.",
"type": "string"
},
"project": {
"description": "The name or ID of the project.",
"type": "string"
}
},
"required": [
"project",
"name"
],
"type": "object"
}