create-batch-events
Create multiple calendar events in macOS Calendar simultaneously using a predefined list of event details to streamline scheduling and organization.
Instructions
批量创建事件
Input Schema
Name | Required | Description | Default |
---|---|---|---|
calendar | No | 目标日历 | 工作 |
events | Yes | 事件列表 |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"calendar": {
"default": "工作",
"description": "目标日历",
"type": "string"
},
"events": {
"description": "事件列表",
"items": {
"properties": {
"description": {
"default": "",
"type": "string"
},
"endDate": {
"type": "string"
},
"location": {
"default": "",
"type": "string"
},
"startDate": {
"type": "string"
},
"title": {
"type": "string"
}
},
"required": [
"title",
"startDate",
"endDate"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"events"
],
"type": "object"
}