Longer Intro Tutorial
A more complete walkthrough including AI and branching logic.
This quick intro helps you get your first automation running in a few minutes.
You’ll:
graph TB A[Install Extension] --> B[Open Workflow Builder] B --> C[Create First Workflow] C --> D[Add Get Selected Text Node] D --> E[Select Text on Page] E --> F[Execute Workflow] F --> G[Add Processing Node] G --> H[Configure Step] H --> I[Run Workflow End to End] I --> J[Workflow Complete]
Agentic WorkFlow works directly in your browser — there’s nothing to install on a server.
Install from your browser’s extension store:
After installing, click the extension icon in your toolbar to open the Workflow Builder.
Once open, you can navigate to Key Concepts to get familiar with workflows, nodes, and triggers.
You should now see the selected text as the output of that node.
Now let’s make the result easier to reuse by creating a formatted output.
From the Get Selected Text node, click Add node.
Search and add Edit Fields.
In its configuration:
Add a field name like processed_text
Copy and paste this template into the editor:
Text: {{ $json.text }}Length: {{ $json.text.length }} charactersRun Execute Workflow again — now you see processed output.
You’ve built a simple two‑node workflow that:
This is the basic pattern you’ll use again and again:
Get something from the page → transform it → use or save the result.
Longer Intro Tutorial
A more complete walkthrough including AI and branching logic.
Browser Nodes
Explore all the browser automation actions (clicks, scroll, extract, etc.).
AI & Local Models
Learn how to combine your workflows with intelligent reasoning and summarization.
Key Concepts
Understand workflow structure, triggers, data flow, and debugging.
Once you’re comfortable here, move on to building intermediate workflows in your Learning Path or dive into AI workflows.