aidelly_create_task
ActiveTool of io.github.wilzer/aidelly
declared in 0.3.0
Create a new task in the workspace.
Parameters schema
{
"type": "object",
"required": [
"idempotency_key",
"title"
],
"properties": {
"body": {
"type": "object",
"description": "Optional body override for endpoints with sparse parameter schemas.",
"additionalProperties": true
},
"query": {
"type": "object",
"description": "Optional query overrides for endpoints with sparse parameter schemas.",
"additionalProperties": true
},
"title": {
"type": "string",
"maxLength": 500,
"minLength": 1,
"description": "Task title."
},
"due_at": {
"type": "string",
"format": "date-time",
"nullable": true,
"description": "ISO 8601 due date/time."
},
"status": {
"enum": [
"todo",
"in_progress",
"blocked",
"done",
"canceled"
],
"type": "string",
"description": "Task status (default \"todo\")."
},
"brand_id": {
"type": "string"
},
"priority": {
"enum": [
"low",
"normal",
"high",
"urgent"
],
"type": "string",
"description": "Task priority (default \"normal\")."
},
"description": {
"type": "string",
"nullable": true,
"maxLength": 20000,
"description": "Task description."
},
"workspace_id": {
"type": "string",
"format": "uuid",
"description": "Workspace to operate in. Do not ask the user for this UUID — call aidelly_list_workspaces and use the `id` of the matching workspace. Optional for read operations; required when creating content."
},
"linked_idea_id": {
"type": "string",
"format": "uuid",
"nullable": true,
"description": "UUID of linked idea (mutually exclusive with linked_post_id)."
},
"linked_post_id": {
"type": "string",
"format": "uuid",
"nullable": true,
"description": "UUID of linked post (mutually exclusive with linked_idea_id)."
},
"idempotency_key": {
"type": "string"
},
"assignee_user_id": {
"type": "string",
"format": "uuid",
"nullable": true,
"description": "UUID of assignee (must be an active workspace member)."
}
},
"additionalProperties": false
}No endpoints wrapped at confidence ≥ 0.50.
Parent server
io.github.wilzer/aidelly
https://github.com/Aidelly/claude-plugin
1/7 registries