jules_create_task
Create tasks for Google Jules AI coding assistant to automate development workflows in GitHub repositories with specific branch targeting.
Instructions
Create a new task in Google Jules with repository and description
Input Schema
Name | Required | Description | Default |
---|---|---|---|
branch | No | Git branch to work on (optional, defaults to main) | |
description | Yes | Task description - what you want Jules to do | |
repository | Yes | GitHub repository in format owner/repo-name |
Input Schema (JSON Schema)
{
"properties": {
"branch": {
"description": "Git branch to work on (optional, defaults to main)",
"type": "string"
},
"description": {
"description": "Task description - what you want Jules to do",
"type": "string"
},
"repository": {
"description": "GitHub repository in format owner/repo-name",
"type": "string"
}
},
"required": [
"description",
"repository"
],
"type": "object"
}