Overview
Automation Tasks are reusable browser automations you define once and run reliably in production. Anchor generates a versioned task from your input — combining deterministic automation with AI-assisted steps where needed.Automation Tasks Overview
Visual tour of prompts, demonstrations, the workflow UI, runs, editing, and self-healing.
Ways to create a task
Both paths produce the same result: a task you can test and call from your application.
Create from a demonstration
Demonstrate a task in a live browser. Anchor captures your actions and builds a reusable task.
Create from a prompt
Describe what the task should accomplish. Anchor generates the task from your description.
Create from a demonstration
Demonstrate a task in a live browser — navigate, click, fill forms, download files. As you work, Anchor captures every browser event and compiles them into deterministic, repeatable code.In the Anchor UI
1
Open the Tasks page
Go to Tasks and click Create Task.
2
Set up identity and describe the task
The creation wizard walks you through four steps:
- Identity — enter the application URL (and an identity, if the task requires login).
- Task Definition — describe what the task should do in natural language.
- Demonstration — choose to demonstrate the task yourself.
- Review — confirm the task name, inputs, and outputs before saving.
3
Start the demonstration
On the Demonstration step, select the option to demonstrate the task manually, then click Continue.A live browser opens at your start URL. Perform the task — navigate, click, fill forms, download files. Anchor captures every browser event as you go.
4
Finish and create the task
Click Finish Demonstration when you’re done. Review the generated inputs and outputs on the Review step, then save the task.
Shareable demonstrations
To collect a demonstration from someone who works outside your Anchor workspace, use the Demonstrations API to issue a secure demonstration link. They complete the task in a hosted browser session; Anchor processes the session and delivers the generated task to your workspace.Demonstrations API
Create demonstration links, monitor session status, and retrieve the generated task.
Create from a prompt
Describe what the task should do. Anchor generates the automation from yourtaskPrompt.
How to structure your prompt
How to structure your prompt
Example prompt
In the UI
- Open Tasks and click Create Task.
- Enter a name and describe the task — what site to visit, what to click, what data to return.
- Wait for generation to finish, then test with sample inputs.
Via API
CallPOST /v2/tasks/generate, then poll GET /v2/tasks/{taskId}/generation-status until status is ready.
POST /v2/tasks/generate:
Next steps
- Run a Task — execute a task via API with inputs, identity, and session options
- Which task type? — compare Automation Tasks with Perform Web Task
- Demonstrations API — shareable links for demonstrating a task
- Task Examples — browse ready-made tasks in the library

