assess_create_task
Create a new task in the Assess realm for content editing, specifying task name, optional priority, and parent project or collection. Integrates with addTaskManager for structured task management.
Instructions
Create a new task in Assess realm (content editing, no contexts/dates).
Input Schema
Name | Required | Description | Default |
---|---|---|---|
collectionRecordName | No | Optional recordName of the parent collection. | |
projectRecordName | No | Optional recordName of the parent project. | |
startDate | No | Optional start date (ISO format) | |
taskName | Yes | Task name/description (max 1000 chars) | |
taskPriority | No | Optional task priority (1-5, default 3) |
Input Schema (JSON Schema)
{
"properties": {
"collectionRecordName": {
"description": "Optional recordName of the parent collection.",
"type": "string"
},
"projectRecordName": {
"description": "Optional recordName of the parent project.",
"type": "string"
},
"startDate": {
"description": "Optional start date (ISO format)",
"format": "date-time",
"type": "string"
},
"taskName": {
"description": "Task name/description (max 1000 chars)",
"type": "string"
},
"taskPriority": {
"description": "Optional task priority (1-5, default 3)",
"maximum": 5,
"minimum": 1,
"type": "integer"
}
},
"required": [
"taskName"
],
"type": "object"
}