yuque_create_repo
Create a knowledge repository on Yuque platform to organize and manage documents. Specify repository name, optional description, and visibility settings to establish structured documentation space.
Instructions
创建知识库 (Create knowledge repository)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | 知识库名称 (Repository name) | |
| description | No | 知识库描述,可选 (Repository description, optional) | |
| isPublic | No | 是否公开,默认false (Whether public, default false) |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "知识库描述,可选 (Repository description, optional)",
"maxLength": 500,
"type": "string"
},
"isPublic": {
"description": "是否公开,默认false (Whether public, default false)",
"type": "boolean"
},
"name": {
"description": "知识库名称 (Repository name)",
"maxLength": 100,
"minLength": 1,
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}