jules_bulk_create_tasks
Create multiple coding tasks simultaneously by providing descriptions and repository details for automated development workflows.
Instructions
Create multiple tasks from a list of descriptions and repositories
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tasks | Yes | Array of task objects to create |
Input Schema (JSON Schema)
{
"properties": {
"tasks": {
"description": "Array of task objects to create",
"items": {
"properties": {
"branch": {
"type": "string"
},
"description": {
"type": "string"
},
"repository": {
"type": "string"
}
},
"required": [
"description",
"repository"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"tasks"
],
"type": "object"
}