moveToRealm
Transfer tasks or projects to specified realms within the ADD framework—Assess, Decide, or Do—to align with workflow stages using addTaskManager MCP Server.
Instructions
Move a task or project to a specific realm.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
itemRecordName | Yes | Record name of the task or project to move | |
itemType | Yes | Type of item to move | |
realmId | Yes | Target realm (assess=1, decide=2, do=3) |
Input Schema (JSON Schema)
{
"properties": {
"itemRecordName": {
"description": "Record name of the task or project to move",
"type": "string"
},
"itemType": {
"description": "Type of item to move",
"enum": [
"Task",
"Project"
],
"type": "string"
},
"realmId": {
"description": "Target realm (assess=1, decide=2, do=3)",
"enum": [
"assess",
"decide",
"do"
],
"type": "string"
}
},
"required": [
"itemRecordName",
"itemType",
"realmId"
],
"type": "object"
}