assess_remove_task_from_project
Remove a task from a project in the Assess realm to manage task organization and project structure.
Instructions
Remove a task from a project in Assess realm.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| taskRecordName | Yes | Record name of the task | |
| projectRecordName | Yes | Record name of the project |
Implementation Reference
- src/index.ts:378-388 (registration)Tool registration in ListToolsRequestSchema including name, description, and input schema definition.name: 'assess_remove_task_from_project', description: 'Remove a task from a project in Assess realm.', inputSchema: { type: 'object', properties: { taskRecordName: { type: 'string', description: 'Record name of the task' }, projectRecordName: { type: 'string', description: 'Record name of the project' } }, required: ['taskRecordName', 'projectRecordName'] } },
- src/index.ts:689-691 (registration)Handler dispatch in CallToolRequestSchema switch statement that validates arguments and calls the removeTaskFromProject method.case 'assess_remove_task_from_project': this.validateArgs(args, ['taskRecordName', 'projectRecordName']); return await this.removeTaskFromProject(args.taskRecordName, args.projectRecordName);
- src/index.ts:1360-1363 (handler)The main handler function implementing the tool logic. Currently a mock that returns a success message; in production would interact with CloudKitService to update references.private async removeTaskFromProject(taskRecordName: string, projectRecordName: string) { // Mock removing task from project via CloudKit return { content: [{ type: 'text', text: `Task ${taskRecordName} removed from project ${projectRecordName}` }] }; }