Recipes

Practical Guida automation recipes based on real scripts from the app.

Browser Automation Beginner JavaScript

Open a page and inspect it

Create a browser tab, navigate to a URL, read the page title, and log the final URL.

open_a_page.js
Scraping and Extraction Beginner JavaScript

Scrape and store page data

Extract page content, save it to the workspace store, and index it for full-text search.

scrape_and_store.js
Queues and Workers Intermediate JavaScript

Queue URLs and process them

Add URLs to a workspace queue, dequeue each item, and commit completed work.

queue_and_process.js
Queues and Workers Intermediate JavaScript

Run parallel workers

Create queue items and start a worker pool that processes them in parallel browser tabs.

parallel_workers.js
Network and HTTP Intermediate JavaScript

Capture network traffic

Enable network capture, load a page, and inspect the requests Guida observed.

capture_network.js
MCP and AI Intermediate JavaScript

Ask the local LLM

Send a prompt to the configured local LLM and optionally summarize the active page.

ask_the_llm.js