create_task
Create and assign categorized tasks with requirements and dependencies to agents for automated execution in a repository.
Instructions
Create and assign task to agents with enhanced capabilities
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| repositoryPath | Yes | Absolute path to the repository where the task will be created. This determines the context and scope of the task. | |
| taskType | Yes | Type of task being created (e.g., "feature", "bug", "enhancement", "documentation", "testing"). This helps categorize and prioritize the task. | |
| title | Yes | Short, descriptive title for the task that summarizes what needs to be done. | |
| description | Yes | Detailed description of the task including requirements, context, and expected outcomes. Should be comprehensive enough for an agent to understand and execute. | |
| requirements | No | Optional object containing specific requirements, configuration, or parameters for the task. Can include priority, estimated duration, assigned agent ID, and other task-specific data. | |
| dependencies | No | Optional array of task IDs that this task depends on. The task will only be eligible for assignment after all dependencies are completed. |