Recipes
Practical Guida automation recipes based on real scripts from the app.
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.jsScrape and store page data
Extract page content, save it to the workspace store, and index it for full-text search.
scrape_and_store.jsQueue URLs and process them
Add URLs to a workspace queue, dequeue each item, and commit completed work.
queue_and_process.jsRun parallel workers
Create queue items and start a worker pool that processes them in parallel browser tabs.
parallel_workers.jsCapture network traffic
Enable network capture, load a page, and inspect the requests Guida observed.
capture_network.jsAsk the local LLM
Send a prompt to the configured local LLM and optionally summarize the active page.
ask_the_llm.js