### Start a Workflow Task Source: https://docs.browseract.com/workflow/api-reference/tasks/run-a-workflow-create-a-task Use this example to start a basic workflow task with a specified workflow ID and input parameters. ```json { "workflow_id": "wf_123456789", "input_parameters": [ { "name": "keyword", "value": "laptops" } ] } ``` -------------------------------- ### Start Workflow Task with Webhooks and Data Saving Source: https://docs.browseract.com/workflow/api-reference/tasks/run-a-workflow-create-a-task This example demonstrates how to start a workflow task, save browser data for reuse, and configure webhook URLs for notifications on task completion and status changes. ```json { "workflow_id": "wf_123456789", "input_parameters": [ { "name": "keyword", "value": "laptops" } ], "save_browser_data": true, "callback_url": "https://your-server.com/webhooks/workflow-callback", "status_change_callback_url": "https://your-server.com/webhooks/task-status-change-callback" } ``` -------------------------------- ### Install Browser-act Entry Skill Source: https://docs.browseract.com/agent-cli/skill-system Use this command to install the Browser-act Skill. After installation, the agent can recognize Browser-act tasks and call `get-skills` before using the CLI. ```text Install the browser-act Skill from: https://github.com/browser-act/skills/tree/main/browser-act ``` -------------------------------- ### Install Skill Forge Source: https://docs.browseract.com/agent-cli/skill-forge Install the browser-act-skill-forge using the provided command. After installation, verify its availability. ```text Install browser-act-skill-forge. Skill URL: https://github.com/browser-act/skills/tree/main/browser-act-skill-forge After installation, verify that it is available. ``` -------------------------------- ### Agent-based Browser-act Installation Source: https://docs.browseract.com/agent-cli/installation Instruct an agent to install Browser-act by providing the installation command and the Skill URL. This method is suitable for agents that support skills. ```text Install browser-act. Skill URL: https://github.com/browser-act/skills/tree/main/browser-act After installation, verify that the CLI is available. ``` -------------------------------- ### Agent Confirmation Prompt Example Source: https://docs.browseract.com/agent-cli/designed-for-agents This example demonstrates how an agent should prompt the user for confirmation before performing a sensitive operation, specifying the details of the planned action. ```text Agent: I plan to create a stealth browser for price monitoring. Type: stealth Name: price-monitor Proxy: US dynamic proxy Continue? User: Yes. Agent: Running browser create. ``` -------------------------------- ### Browser State Example Source: https://docs.browseract.com/agent-cli/quick-start An example of the 'state' output, showing the current URL, title, and indexed elements on a login page. ```text url=https://example.com/login title=Login *[1]
*[2] *[3] *[4]