decide_assign_context
Assign specified contexts to tasks or projects within the Decide realm, ensuring proper organization and alignment with the ADD (Assess-Decide-Do) framework for efficient task management.
Instructions
Assign contexts to tasks/projects in Decide realm.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
contextRecordName | Yes | Record name of the context to assign | |
itemRecordName | Yes | Record name of the task or project | |
itemType | Yes | Type of item (Task or Project) |
Input Schema (JSON Schema)
{
"properties": {
"contextRecordName": {
"description": "Record name of the context to assign",
"type": "string"
},
"itemRecordName": {
"description": "Record name of the task or project",
"type": "string"
},
"itemType": {
"description": "Type of item (Task or Project)",
"enum": [
"Task",
"Project"
],
"type": "string"
}
},
"required": [
"itemRecordName",
"itemType",
"contextRecordName"
],
"type": "object"
}