Every automation you build in Skyvern Cloud is composed of the same nine building blocks. This page is a quick tour of each one — what it is, where you find it in the dashboard, and when to reach for it. If you’ve already poked around the dashboard, this map will tie what you’ve seen to the underlying concepts.Documentation Index
Fetch the complete documentation index at: https://skyvern.com/docs/llms.txt
Use this file to discover all available pages before exploring further.
Tasks
A Task is a single automation job. You describe what you want, Skyvern opens a browser and does it. You create tasks from the Discover page. Type your prompt and target URL into the input bar, pick an engine, and hit send.
Run a task →
Walkthrough of every option on the Discover page.
Workflows
A Workflow is a reusable automation built by chaining blocks together on a visual canvas. Workflows are versioned, parameterized, and shareable across your team. You build them on the Workflows page. Click any workflow to open the editor, where blocks appear as connected nodes you can drag and configure.
- The same flow needs to run repeatedly with different inputs
- You need to loop over a list, branch on a condition, or pass data between steps
- You want to schedule the automation to run on a cadence
- You want a teammate to be able to re-run it without re-deriving the logic
Build a workflow →
Tutorial covering blocks, parameters, branching, and execution.
Blocks
Blocks are the units a workflow is built from. Each block performs one thing — navigate, log in, extract data, branch on a condition, send an email — and passes its output to the next block. In the workflow editor, click the + button on any node to insert a new block. The picker groups every available block by category.
- Browser automation — Browser Task, Browser Action, Login, Extraction, Go to URL, Print Page
- Data and extraction — Text Prompt, File Parser
- Control flow — Loop, Conditional, AI Validation, Code, Wait
- Files — File Download, Cloud Storage Upload
- Communication — Send Email, HTTP Request, Human Interaction
Runs
Every time a task or workflow executes, Skyvern creates a Run — a record of what happened, with a video, screenshots, action log, and any extracted data. The Runs page is your history. Filter by status, search by run ID, click any row to drill in.
- Live viewer / recording — full video of the browser as it executed
- Actions — every step the agent took, with the LLM’s reasoning
- Output — the structured data extracted (matches the schema you defined)
- Code — auto-generated Python/TypeScript/cURL to reproduce this run via API
- Downloaded files — anything Skyvern saved, with signed URLs and checksums
queued, running, completed, failed, terminated, timed_out, or canceled. You’re billed per step — one screenshot + LLM decision + browser action.
Read run details →
How to interpret the actions tab, recordings, and output.
Browser sessions
A browser session is a live browser instance you keep open across multiple runs. Sessions preserve everything that lives in the browser — cookies, login state, cached pages, the current tab — so a follow-up task picks up exactly where the previous one left off. You manage sessions on the Browsers page. Create a session, run tasks against it, then close it when you’re done.
- Log in once, then run a sequence of tasks behind that login
- Hand off a partially-completed flow between an agent and a human (Take Control)
- Keep a long-running automation warm without re-authenticating each step
Browser sessions →
Create, attach, and reuse sessions across runs.
Browser profiles
A browser profile is the persistent counterpart to a session. Where a session is a live browser that times out, a profile is a saved snapshot — cookies, auth tokens, local storage — that you can reload weeks later to skip the login flow entirely. Profiles are listed on the Browsers page under the Profiles tab. You create one from any completed run, then attach it to future runs to start in an already-authenticated state.| Browser session | Browser profile | |
|---|---|---|
| Live or saved? | Live, in-memory browser | Saved snapshot of state |
| Lifetime | 5 min – 24 hr | Indefinite |
| Best for | Chaining tasks in real time | Skipping login on repeat runs |
Browser profiles →
Save and reuse authenticated state across days or weeks.
Credentials
A credential is a stored login, credit card, or 2FA secret that Skyvern injects directly into the browser at runtime. Credentials are encrypted at rest and never sent to the LLM — the agent decides where the password field is, and the value is filled in via the browser layer. The Credentials page is where you manage them.
- Password — username + password, optionally with a TOTP secret or email/SMS 2FA
- Credit card — card number, expiry, CVC, billing address
- Secret — any single value you want to keep out of the LLM context
Credentials overview →
Security model, supported types, and external vault integration.
Schedules
A schedule runs a workflow automatically on a recurring cadence. You set a cron expression and timezone, and Skyvern fires the workflow at every interval — no manual trigger needed. Schedules are configured per workflow. Open any workflow’s actions menu and choose Schedule.
Scheduling →
Cron syntax, timezones, and managing scheduled runs.
Engines
An engine is the AI model Skyvern uses to drive the browser. Different engines have different strengths — speed, accuracy on complex pages, cost — and you can pick one per task or per block. The engine picker appears on the Discover page (for tasks) and on every browser-driven block in the workflow editor.| Engine | When to use |
|---|---|
| Skyvern 2.0 | Default. Best balance of accuracy and speed for most automations. |
| Skyvern 1.0 | Lighter and faster for simple, single-page interactions. |
| OpenAI CUA | OpenAI’s Computer Use Agent. Good for visual reasoning. |
| Anthropic CUA | Anthropic’s Claude Computer Use. Strong at multi-step planning. |
| UI-TARS | Lightweight CUA model option. |
How they fit together
A typical day in the dashboard:- Prototype with a Task on the Discover page. Iterate on the prompt until it works.
- Productionize by turning the prompt into a Workflow with Blocks, Parameters, and a Schedule.
- Persist state by saving a Browser Profile after the first authenticated run, so future runs skip login.
- Audit every execution on the Runs page — recording, actions, output, downloaded files.
Next steps
Run Your First Task
Hands-on tutorial — go from prompt to extracted data in a few minutes.
Build a Workflow
Wire blocks together into a reusable, parameterized automation.

