Longer Intro Tutorial
A more complete walkthrough including AI and branching logic.
This quick intro walks you through installing the extension, creating your first workflow, and combining browser automation with simple data processing.
No deep theory — just hands‑on steps to see it working.
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 — no backend setup required.
Install from your browser’s extension store:
After installing, click the extension icon in your toolbar to open the workflow builder UI.
Once open, you can navigate to Key Concepts to get familiar with workflows, nodes, and triggers.
To make it more useful:
From the Get Selected Text node, click Add node.
Search and add Edit Fields.
In its configuration:
Add a field name like processed_text
Use an expression to format the extracted text, e.g.:
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:
These are the building blocks: browser data + transformation = useful output.
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.