jules_setup_wizard
Configure automated Google authentication for the Jules AI coding assistant. Set up sessions across local, cloud, or auto-detected environments with customizable preferences for session management.
Instructions
Interactive session setup wizard for automated Google authentication configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
environment | No | Deployment environment (auto-detect will analyze current setup) | |
preferences | No |
Input Schema (JSON Schema)
{
"properties": {
"environment": {
"description": "Deployment environment (auto-detect will analyze current setup)",
"enum": [
"local",
"cloud",
"smithery",
"auto-detect"
],
"type": "string"
},
"preferences": {
"properties": {
"cloudDeployment": {
"description": "Whether deploying to cloud platforms",
"type": "boolean"
},
"hasChrome": {
"description": "Whether user has local Chrome browser access",
"type": "boolean"
},
"priority": {
"description": "User priority for session management",
"enum": [
"ease-of-use",
"reliability",
"portability",
"performance"
],
"type": "string"
}
},
"type": "object"
}
},
"type": "object"
}