Unlike traditional automation steps that require explicit action definitions, the AI Instruction step can understand and execute a sequence of actions from a single natural language instruction. The AI agent reasons through the prompt and determines the required steps to accomplish the goal.
"instruction": "Fill out the registration form with: Name: John Smith, Email: [email protected], Phone: 555-0123, Address: 123 Main St, and select 'Premium' as the subscription plan"
Be Specific: While the AI is powerful, clear and specific instructions yield the best results
Copy
Ask AI
// Good"instruction": "Click the 'Subscribe' button in the footer and enter email: [email protected]"// Less Optimal"instruction": "Subscribe to the newsletter"
Include Expected Values: When dealing with forms or inputs, explicitly state the values
Copy
Ask AI
// Good"instruction": "Search for product 'XYZ-123' and select the first result"// Less Optimal"instruction": "Search for a product"
Use Natural Language: Write instructions as you would explain them to a person
Copy
Ask AI
// Good"instruction": "Add 3 items of the red shirt to the cart and proceed to checkout"// Less Optimal"instruction": "click+add,quantity=3,goto:checkout"