plan_and_execute
Process natural language instructions to plan and optionally execute domain management, mailbox operations, and third-party platform exports.
Instructions
Give a natural language instruction (e.g., 'buy 5 domains and connect Instantly') and the server will plan steps and optionally execute them.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
No | For third-party connection (if needed). | ||
execute | No | Execute the plan (true) or just return a dry-run plan (false). | |
instruction | Yes | Natural-language instruction. | |
password | No | For third-party connection (if needed). |
Input Schema (JSON Schema)
{
"properties": {
"email": {
"description": "For third-party connection (if needed).",
"type": "string"
},
"execute": {
"default": false,
"description": "Execute the plan (true) or just return a dry-run plan (false).",
"type": "boolean"
},
"instruction": {
"description": "Natural-language instruction.",
"type": "string"
},
"password": {
"description": "For third-party connection (if needed).",
"type": "string"
}
},
"required": [
"instruction"
],
"type": "object"
}