-[Skyvern](https://www.skyvern.com) automates browser-based workflows using LLMs and computer vision. It provides a simple API endpoint to fully automate manual workflows on a large number of websites, replacing brittle or unreliable automation solutions.
+[Skyvern](https://www.skyvern.com) automates browser-based workflows using LLMs and computer vision. It provides a simple API endpoint to fully automate manual workflows on a large number of websites, replacing brittle or unreliable automation solutions.
@@ -31,11 +31,10 @@
Traditional approaches to browser automations required writing custom scripts for websites, often relying on DOM parsing and XPath-based interactions which would break whenever the website layouts changed.
-Instead of only relying on code-defined XPath interactions, Skyvern relies on Vision LLMs to interact with the websites.
+Instead of only relying on code-defined XPath interactions, Skyvern relies on Vision LLMs to learn and interact with the websites.
Want to see examples of Skyvern in action? Jump to [#real-world-examples-of-skyvern](#real-world-examples-of-skyvern)
-
# Quickstart
## Skyvern Cloud
@@ -44,7 +43,6 @@ Want to see examples of Skyvern in action? Jump to [#real-world-examples-of-skyv
If you'd like to try it out, navigate to [app.skyvern.com](https://app.skyvern.com) and create an account.
## Install & Run
-> ⚠️ **Supported Python Versions**: Python 3.11, 3.12, 3.13 ⚠️
### 1. Install Skyvern
@@ -60,6 +58,18 @@ skyvern quickstart
### 3. Run task
+#### UI (Recommended)
+
+Start the Skyvern service and UI
+
+```bash
+skyvern run all
+```
+
+Go to http://localhost:8080 and use the UI to run a task
+
+#### Code
+
```python
from skyvern import Skyvern
@@ -67,27 +77,66 @@ skyvern = Skyvern()
task = await skyvern.run_task(prompt="Find the top post on hackernews today")
print(task)
```
-Skyvern starts running the task in a browser that pops up and closes it when the task is done. You will be able to review the task from http://localhost:8080/history
+Skyvern starts running the task in a browser that pops up and closes it when the task is done. You will be able to view the task from http://localhost:8080/history
-You can also run a task on Skyvern Cloud:
+You can also run a task on different targets:
```python
from skyvern import Skyvern
+# Run on Skyvern Cloud
skyvern = Skyvern(api_key="SKYVERN API KEY")
-task = await skyvern.run_task(prompt="Find the top post on hackernews today")
-print(task)
-```
-Or your local Skyvern service from step 2:
-```python
-# Find your API KEY in .env
+# Local Skyvern service
skyvern = Skyvern(base_url="http://localhost:8000", api_key="LOCAL SKYVERN API KEY")
+
task = await skyvern.run_task(prompt="Find the top post on hackernews today")
print(task)
```
-Check out more features to use for Skyvern task in our [official doc](https://docs.skyvern.com/running-tasks/run-tasks). Here are a couple of interesting examples:
-#### Control your own browser (Chrome)
+# How it works
+Skyvern was inspired by the Task-Driven autonomous agent design popularized by [BabyAGI](https://github.com/yoheinakajima/babyagi) and [AutoGPT](https://github.com/Significant-Gravitas/AutoGPT) -- with one major bonus: we give Skyvern the ability to interact with websites using browser automation libraries like [Playwright](https://playwright.dev/).
+
+Skyvern uses a swarm of agents to comprehend a website, and plan and execute its actions:
+
+
+
+
+
+
+This approach has a few advantages:
+
+1. Skyvern can operate on websites it's never seen before, as it's able to map visual elements to actions necessary to complete a workflow, without any customized code
+1. Skyvern is resistant to website layout changes, as there are no pre-determined XPaths or other selectors our system is looking for while trying to navigate
+1. Skyvern is able to take a single workflow and apply it to a large number of websites, as it's able to reason through the interactions necessary to complete the workflow
+1. Skyvern leverages LLMs to reason through interactions to ensure we can cover complex situations. Examples include:
+ 1. If you wanted to get an auto insurance quote from Geico, the answer to a common question "Were you eligible to drive at 18?" could be inferred from the driver receiving their license at age 16
+ 1. If you were doing competitor analysis, it's understanding that an Arnold Palmer 22 oz can at 7/11 is almost definitely the same product as a 23 oz can at Gopuff (even though the sizes are slightly different, which could be a rounding error!)
+
+A detailed technical report can be found [here](https://blog.skyvern.com/skyvern-2-0-state-of-the-art-web-navigation-with-85-8-on-webvoyager-eval/).
+
+# Demo
+
+https://github.com/user-attachments/assets/5cab4668-e8e2-4982-8551-aab05ff73a7f
+
+# Performance & Evaluation
+
+Skyvern has SOTA performance on the [WebBench benchmark](webbench.ai) with a 64.4% accuracy. The technical report + evaluation can be found [here](https://blog.skyvern.com/web-bench-a-new-way-to-compare-ai-browser-agents/)
+
+
+
+
+
+## Performance on WRITE tasks (eg filling out forms, logging in, downloading files, etc)
+
+Skyvern is the best performing agent on WRITE tasks (eg filling out forms, logging in, downloading files, etc), which is primarily used for RPA (Robotic Process Automation) adjacent tasks.
+
+
+
+
+
+## Advanced Usage
+
+### Control your own browser (Chrome)
> ⚠️ WARNING: Since [Chrome 136](https://developer.chrome.com/blog/remote-debugging-port), Chrome refuses any CDP connect to the browser using the default user_data_dir. In order to use your browser data, Skyvern copies your default user_data_dir to `./tmp/user_data_dir` the first time connecting to your local browser. ⚠️
1. Just With Python Code
@@ -115,20 +164,9 @@ CHROME_EXECUTABLE_PATH="/Applications/Google Chrome.app/Contents/MacOS/Google Ch
BROWSER_TYPE=cdp-connect
```
-Restart Skyvern service `skyvern run all` and run the task through UI or code:
-```python
-from skyvern import Skyvern
+Restart Skyvern service `skyvern run all` and run the task through UI or code
-skyvern = Skyvern(
- base_url="http://localhost:8000",
- api_key="YOUR_API_KEY",
-)
-task = await skyvern.run_task(
- prompt="Find the top post on hackernews today",
-)
-```
-
-#### Run Skyvern with any remote browser
+### Run Skyvern with any remote browser
Grab the cdp connection url and pass it to Skyvern
```python
@@ -140,7 +178,7 @@ task = await skyvern.run_task(
)
```
-#### Get consistent output schema from your run
+### Get consistent output schema from your run
You can do this by adding the `data_extraction_schema` parameter:
```python
from skyvern import Skyvern
@@ -170,37 +208,24 @@ task = await skyvern.run_task(
### Helpful commands to debug issues
-**Launch the Skyvern Server Separately**
```bash
+# Launch the Skyvern Server Separately*
skyvern run server
-```
-**Launch the Skyvern UI**
-
-```bash
+# Launch the Skyvern UI
skyvern run ui
-```
-**Check status of the Skyvern service**
-
-```bash
+# Check status of the Skyvern service
skyvern status
-```
-**Stop the Skyvern service**
-```bash
+# Stop the Skyvern service
skyvern stop all
-```
-**Stop the Skyvern UI**
-```bash
+# Stop the Skyvern UI
skyvern stop ui
-```
-**Stop the Skyvern Server Separately**
-
-```bash
+# Stop the Skyvern Server Separately
skyvern stop server
```
@@ -225,36 +250,13 @@ skyvern stop server
If you encounter any database related errors while using Docker to run Skyvern, check which Postgres container is running with `docker ps`.
-# How it works
-Skyvern was inspired by the Task-Driven autonomous agent design popularized by [BabyAGI](https://github.com/yoheinakajima/babyagi) and [AutoGPT](https://github.com/Significant-Gravitas/AutoGPT) -- with one major bonus: we give Skyvern the ability to interact with websites using browser automation libraries like [Playwright](https://playwright.dev/).
-
-Skyvern uses a swarm of agents to comprehend a website, and plan and execute its actions:
-
-
-
-
-
-
-This approach has a few advantages:
-
-1. Skyvern can operate on websites it's never seen before, as it's able to map visual elements to actions necessary to complete a workflow, without any customized code
-1. Skyvern is resistant to website layout changes, as there are no pre-determined XPaths or other selectors our system is looking for while trying to navigate
-1. Skyvern is able to take a single workflow and apply it to a large number of websites, as it's able to reason through the interactions necessary to complete the workflow
-1. Skyvern leverages LLMs to reason through interactions to ensure we can cover complex situations. Examples include:
- 1. If you wanted to get an auto insurance quote from Geico, the answer to a common question "Were you eligible to drive at 18?" could be inferred from the driver receiving their license at age 16
- 1. If you were doing competitor analysis, it's understanding that an Arnold Palmer 22 oz can at 7/11 is almost definitely the same product as a 23 oz can at Gopuff (even though the sizes are slightly different, which could be a rounding error!)
-
-
-# Demo
-
-https://github.com/user-attachments/assets/5cab4668-e8e2-4982-8551-aab05ff73a7f
# Skyvern Features
## Skyvern Tasks
-Tasks are the fundamental building block inside Skyvern. Each task is a single request to Skyvern, instructing it to navigate through a website and accomplish a specific goal.
+Tasks are the fundamental building block inside Skyvern. Each task is a single request to Skyvern, instructing it to navigate through a website and accomplish a specific goal.
-Tasks require you to specify a `url`, `prompt`, and can optionally include a `data schema` (if you want the output to conform to a specific schema) and `error codes` (if you want Skyvern to stop running in specific situations).
+Tasks require you to specify a `url`, `prompt`, and can optionally include a `data schema` (if you want the output to conform to a specific schema) and `error codes` (if you want Skyvern to stop running in specific situations).
@@ -262,7 +264,7 @@ Tasks require you to specify a `url`, `prompt`, and can optionally include a `da
## Skyvern Workflows
-Workflows are a way to chain multiple tasks together to form a cohesive unit of work.
+Workflows are a way to chain multiple tasks together to form a cohesive unit of work.
For example, if you wanted to download all invoices newer than January 1st, you could create a workflow that first navigated to the invoices page, then filtered down to only show invoices newer than January 1st, extracted a list of all eligible invoices, and iterated through each invoice to download it.
@@ -308,10 +310,10 @@ Skyvern supports a number of different authentication methods to make it easier
### 🔐 2FA Support (TOTP)
-Skyvern supports a number of different 2FA methods to allow you to automate workflows that require 2FA.
+Skyvern supports a number of different 2FA methods to allow you to automate workflows that require 2FA.
Examples include:
-1. QR-based 2FA (e.g. Google Authenticator, Authy)
+1. QR-based 2FA (e.g. Google Authenticator, Authy)
1. Email based 2FA
1. SMS based 2FA
@@ -319,7 +321,7 @@ Examples include:
### Password Manager Integrations
Skyvern currently supports the following password manager integrations:
-- [x] Bitwarden
+- [x] Bitwarden
- [ ] 1Password
- [ ] LastPass
@@ -336,6 +338,8 @@ Skyvern supports Zapier, Make.com, and N8N to allow you to connect your Skyvern
* [Make.com](https://docs.skyvern.com/integrations/make.com)
* [N8N](https://docs.skyvern.com/integrations/n8n)
+🔐 Learn more about 2FA support [here](https://docs.skyvern.com/credentials/totp).
+
# Real-world examples of Skyvern
We love to see how Skyvern is being used in the wild. Here are some examples of how Skyvern is being used to automate workflows in the real world. Please open PRs to add your own examples!
@@ -359,7 +363,7 @@ We love to see how Skyvern is being used in the wild. Here are some examples of
-## Navigating to government websites to register accounts or fill out forms
+## Navigating to government websites to register accounts or fill out forms
[💡 See it in action](https://app.skyvern.com/tasks/create/california_edd)
@@ -410,11 +414,9 @@ More extensive documentation can be found on our [📕 docs page](https://docs.s
| Anthropic | Claude 3 (Haiku, Sonnet, Opus), Claude 3.5 (Sonnet) |
| Azure OpenAI | Any GPT models. Better performance with a multimodal llm (azure/gpt4-o) |
| AWS Bedrock | Anthropic Claude 3 (Haiku, Sonnet, Opus), Claude 3.5 (Sonnet) |
+| Gemini | Gemini 2.5 Pro and flash, Gemini 2.0 |
| Ollama | Run any locally hosted model via [Ollama](https://github.com/ollama/ollama) |
| OpenRouter | Access models through [OpenRouter](https://openrouter.ai) |
-| Gemini | Coming soon (contributions welcome) |
-| Llama 3.2 | Coming soon (contributions welcome) |
-| Novita AI | Llama 3.1 (8B, 70B), Llama 3.2 (1B, 3B, 11B Vision) |
| OpenAI-compatible | Any custom API endpoint that follows OpenAI's API format (via [liteLLM](https://docs.litellm.ai/docs/providers/openai_compatible)) |
#### Environment Variables
@@ -427,7 +429,7 @@ More extensive documentation can be found on our [📕 docs page](https://docs.s
| `OPENAI_API_BASE` | OpenAI API Base, optional | String | `https://openai.api.base` |
| `OPENAI_ORGANIZATION` | OpenAI Organization ID, optional | String | `your-org-id` |
-Supported LLM Keys: `OPENAI_GPT4_TURBO`, `OPENAI_GPT4V`, `OPENAI_GPT4O`, `OPENAI_GPT4O_MINI`
+Recommended `LLM_KEY`: `OPENAI_GPT4O`, `OPENAI_GPT4O_MINI`, `OPENAI_GPT4_1`, `OPENAI_O4_MINI`, `OPENAI_O3`
##### Anthropic
| Variable | Description| Type | Sample Value|
@@ -435,7 +437,7 @@ Supported LLM Keys: `OPENAI_GPT4_TURBO`, `OPENAI_GPT4V`, `OPENAI_GPT4O`, `OPENAI
| `ENABLE_ANTHROPIC` | Register Anthropic models| Boolean | `true`, `false` |
| `ANTHROPIC_API_KEY` | Anthropic API key| String | `sk-1234567890` |
-Supported LLM Keys: `ANTHROPIC_CLAUDE3`, `ANTHROPIC_CLAUDE3_OPUS`, `ANTHROPIC_CLAUDE3_SONNET`, `ANTHROPIC_CLAUDE3_HAIKU`, `ANTHROPIC_CLAUDE3.5_SONNET`
+Recommended`LLM_KEY`: `ANTHROPIC_CLAUDE3.5_SONNET`, `ANTHROPIC_CLAUDE3.7_SONNET`, `ANTHROPIC_CLAUDE4_OPUS`, `ANTHROPIC_CLAUDE4_SONNET`
##### Azure OpenAI
| Variable | Description| Type | Sample Value|
@@ -446,14 +448,14 @@ Supported LLM Keys: `ANTHROPIC_CLAUDE3`, `ANTHROPIC_CLAUDE3_OPUS`, `ANTHROPIC_CL
| `AZURE_API_BASE` | Azure deployment api base url| String | `https://skyvern-deployment.openai.azure.com/`|
| `AZURE_API_VERSION` | Azure API Version| String | `2024-02-01`|
-Supported LLM Key: `AZURE_OPENAI`
+Recommended `LLM_KEY`: `AZURE_OPENAI`
##### AWS Bedrock
| Variable | Description| Type | Sample Value|
| -------- | ------- | ------- | ------- |
| `ENABLE_BEDROCK` | Register AWS Bedrock models. To use AWS Bedrock, you need to make sure your [AWS configurations](https://github.com/boto/boto3?tab=readme-ov-file#using-boto3) are set up correctly first. | Boolean | `true`, `false` |
-Supported LLM Keys: `BEDROCK_ANTHROPIC_CLAUDE3_OPUS`, `BEDROCK_ANTHROPIC_CLAUDE3_SONNET`, `BEDROCK_ANTHROPIC_CLAUDE3_HAIKU`, `BEDROCK_ANTHROPIC_CLAUDE3.5_SONNET`, `BEDROCK_AMAZON_NOVA_PRO`, `BEDROCK_AMAZON_NOVA_LITE`
+Recommended `LLM_KEY`: `BEDROCK_ANTHROPIC_CLAUDE3.7_SONNET_INFERENCE_PROFILE`, `BEDROCK_ANTHROPIC_CLAUDE4_OPUS_INFERENCE_PROFILE`, `BEDROCK_ANTHROPIC_CLAUDE4_SONNET_INFERENCE_PROFILE`
##### Gemini
| Variable | Description| Type | Sample Value|
@@ -461,15 +463,7 @@ Supported LLM Keys: `BEDROCK_ANTHROPIC_CLAUDE3_OPUS`, `BEDROCK_ANTHROPIC_CLAUDE3
| `ENABLE_GEMINI` | Register Gemini models| Boolean | `true`, `false` |
| `GEMINI_API_KEY` | Gemini API Key| String | `your_google_gemini_api_key`|
-Supported LLM Keys: `GEMINI_PRO`, `GEMINI_FLASH`
-
-##### Novita AI
-| Variable | Description| Type | Sample Value|
-| -------- | ------- | ------- | ------- |
-| `ENABLE_NOVITA`| Register Novita AI models | Boolean | `true`, `false` |
-| `NOVITA_API_KEY` | Novita AI API Key| String | `your_novita_api_key`|
-
-Supported LLM Keys: `NOVITA_DEEPSEEK_R1`, `NOVITA_DEEPSEEK_V3`, `NOVITA_LLAMA_3_3_70B`, `NOVITA_LLAMA_3_2_1B`, `NOVITA_LLAMA_3_2_3B`, `NOVITA_LLAMA_3_2_11B_VISION`, `NOVITA_LLAMA_3_1_8B`, `NOVITA_LLAMA_3_1_70B`, `NOVITA_LLAMA_3_1_405B`, `NOVITA_LLAMA_3_8B`, `NOVITA_LLAMA_3_70B`
+Recommended `LLM_KEY`: `GEMINI_2.5_PRO_PREVIEW`, `GEMINI_2.5_FLASH_PREVIEW`
##### Ollama
| Variable | Description| Type | Sample Value|
@@ -478,7 +472,9 @@ Supported LLM Keys: `NOVITA_DEEPSEEK_R1`, `NOVITA_DEEPSEEK_V3`, `NOVITA_LLAMA_3_
| `OLLAMA_SERVER_URL` | URL for your Ollama server | String | `http://host.docker.internal:11434` |
| `OLLAMA_MODEL` | Ollama model name to load | String | `qwen2.5:7b-instruct` |
-Supported LLM Key: `OLLAMA`
+Recommended `LLM_KEY`: `OLLAMA`
+
+Note: Ollama does not support vision yet.
##### OpenRouter
| Variable | Description| Type | Sample Value|
@@ -488,7 +484,7 @@ Supported LLM Key: `OLLAMA`
| `OPENROUTER_MODEL` | OpenRouter model name | String | `mistralai/mistral-small-3.1-24b-instruct` |
| `OPENROUTER_API_BASE` | OpenRouter API base URL | String | `https://api.openrouter.ai/v1` |
-Supported LLM Key: `OPENROUTER`
+Recommended `LLM_KEY`: `OPENROUTER`
##### OpenAI-Compatible
| Variable | Description| Type | Sample Value|
@@ -515,7 +511,7 @@ Supported LLM Key: `OPENAI_COMPATIBLE`
This is our planned roadmap for the next few months. If you have any suggestions or would like to see a feature added, please don't hesitate to reach out to us [via email](mailto:founders@skyvern.com) or [discord](https://discord.gg/fG2XXEuQX3).
- [x] **Open Source** - Open Source Skyvern's core codebase
-- [x] **[BETA] Workflow support** - Allow support to chain multiple Skyvern calls together
+- [x] **Workflow support** - Allow support to chain multiple Skyvern calls together
- [x] **Improved context** - Improve Skyvern's ability to understand content around interactable elements by introducing feeding relevant label context through the text prompt
- [x] **Cost Savings** - Improve Skyvern's stability and reduce the cost of running Skyvern by optimizing the context tree passed into Skyvern
- [x] **Self-serve UI** - Deprecate the Streamlit UI in favour of a React-based UI component that allows users to kick off new jobs in Skyvern
@@ -523,14 +519,14 @@ This is our planned roadmap for the next few months. If you have any suggestions
- [x] **Chrome Viewport streaming** - Introduce a way to live-stream the Chrome viewport to the user's browser (as a part of the self-serve UI)
- [x] **Past Runs UI** - Deprecate the Streamlit UI in favour of a React-based UI that allows you to visualize past runs and their results
- [X] **Auto workflow builder ("Observer") mode** - Allow Skyvern to auto-generate workflows as it's navigating the web to make it easier to build new workflows
-- [ ] **Prompt Caching** - Introduce a caching layer to the LLM calls to dramatically reduce the cost of running Skyvern (memorize past actions and repeat them!)
-- [ ] **Web Evaluation Dataset** - Integrate Skyvern with public benchmark tests to track the quality of our models over time
+- [x] **Prompt Caching** - Introduce a caching layer to the LLM calls to dramatically reduce the cost of running Skyvern (memorize past actions and repeat them!)
+- [x] **Web Evaluation Dataset** - Integrate Skyvern with public benchmark tests to track the quality of our models over time
- [ ] **Improved Debug mode** - Allow Skyvern to plan its actions and get "approval" before running them, allowing you to debug what it's doing and more easily iterate on the prompt
- [ ] **Chrome Extension** - Allow users to interact with Skyvern through a Chrome extension (incl voice mode, saving tasks, etc.)
- [ ] **Skyvern Action Recorder** - Allow Skyvern to watch a user complete a task and then automatically generate a workflow for it
- [ ] **Interactable Livestream** - Allow users to interact with the livestream in real-time to intervene when necessary (such as manually submitting sensitive forms)
- [ ] **Integrate LLM Observability tools** - Integrate LLM Observability tools to allow back-testing prompt changes with specific data sets + visualize the performance of Skyvern over time
-- [ ] **Langchain Integration** - Create langchain integration in langchain_community to use Skyvern as a "tool".
+- [x] **Langchain Integration** - Create langchain integration in langchain_community to use Skyvern as a "tool".
# Contributing
@@ -545,9 +541,9 @@ If you want to chat with the skyvern repository to get a high level overview of
By Default, Skyvern collects basic usage statistics to help us understand how Skyvern is being used. If you would like to opt-out of telemetry, please set the `SKYVERN_TELEMETRY` environment variable to `false`.
# License
-Skyvern's open source repository is supported via a managed cloud. All of the core logic powering Skyvern is available in this open source repository licensed under the [AGPL-3.0 License](LICENSE), with the exception of anti-bot measures available in our managed cloud offering.
+Skyvern's open source repository is supported via a managed cloud. All of the core logic powering Skyvern is available in this open source repository licensed under the [AGPL-3.0 License](LICENSE), with the exception of anti-bot measures available in our managed cloud offering.
-If you have any questions or concerns around licensing, please [contact us](mailto:founders@skyvern.com) and we would be happy to help.
+If you have any questions or concerns around licensing, please [contact us](mailto:support@skyvern.com) and we would be happy to help.
# Star History
diff --git a/fern/credentials/introduction.mdx b/fern/credentials/introduction.mdx
index af311487..e5b705df 100644
--- a/fern/credentials/introduction.mdx
+++ b/fern/credentials/introduction.mdx
@@ -4,10 +4,29 @@ subtitle: Never send your credentials to LLMs.
slug: credentials/introduction
---
-Agents need access to sensitive information to complete tasks. For example, usernames and passwords to login, credit cards for payments, etc. With Skyvern's credential management tool, you can run agents securely without exposing your credentials to LLMs.
+Need to give Skyvern access to your credentials? Usernames and passwords, 2FA, credit cards for payments, etc. Skyvern's credential management provides a secure way to manage and use credentials. Agents can then without exposing those credentials to LLMs.
-## Credential Support
-
+### 2FA Support (TOTP)
+
+Many websites require entering a TOTP (2FA/MFA/Verification) code during login. Skyvern has TOTP (2FA/MFA/Verification Code) support natively.
+
+**Supported authentication methods**:
+- Phone verification code
+- Email verification code
+- Authenticator app
+- Confirmation link sent to email. Click the link and create an account
+- One time login link sent to email. Click and login
+
+If you have any questions about how to set these up, please contact [Skyvern Support](mailto:support@skyvern.com).
+
+## Credit Card Management
+
+Skyvern can manage your credit cards and use them to complete tasks.
+
+**Supported credit card types**:
+- Visa
+- Mastercard
+
Manage and use credit cards with Skyvern Agent
-
-
-## 2FA Support (TOTP)
-
-Many websites require entering a TOTP (2FA/MFA/Verification) code during login. Skyvern has the TOTP (2FA/MFA/Verification Code) support natively.
-
-**Supported authentication methods**:
-- Phone verification code
-- Email verification code
-- Authenticator app
-
-**Coming soon**:
-- Confirmation link sent to email. Click the link and create an account. (Talk to Skyvern Support if you need this)
-- One time login link sent to email. Click and login. (Talk to Skyvern Support if you need this)
-
-See [2FA Support (TOTP)](/credentials/totp) for more details.
-
-
-## Bitwarden Integration
-Skyvern can integrate with your Bitwarden account. Skyvern agent can read the credentials on the fly to complete tasks while keeping your credentials secure. Skyvern never stores your Bitwarden credentials or sends them to LLMs.
+## Password Manager Integrations
-See [Bitwarden Integration](/credentials/bitwarden) for more details.
+If you have your own password manager, Skyvern can integrate with it. Skyvern can read the credentials on the fly to complete tasks while keeping your credentials secure. Skyvern never stores your credentials or sends them to any third parties (including LLMs).
-## Coming Soon
-(Contact support@skyvern.com if you need any password integration to help us prioritize)
+**Supported password manager types**:
+- Bitwarden
+- 1Password Integration (Private beta)
-- 1Password Integration
+**Coming Soon**:
- LastPass Integration
+- Keeper Integration
+- Azure Key Vault Integration
+
+Contact [Skyvern Support](mailto:support@skyvern.com) if you want access to the private beta for these integrations.
+
+
+
+ Securely manage your passwords with Bitwarden
+
+
+ Securely manage your passwords with 1Password (Private beta)
+
+
+ (coming soon) Securely manage your passwords with LastPass
+
+
+ (coming soon) Securely manage your passwords with Keeper
+
+
+ (coming soon) Securely manage your secrets with Azure Key Vault
+
+
+ (coming soon) Securely manage your secrets with AWS Secret Manager
+
+
diff --git a/fern/credentials/totp.mdx b/fern/credentials/totp.mdx
index 48d0e044..0c97f66c 100644
--- a/fern/credentials/totp.mdx
+++ b/fern/credentials/totp.mdx
@@ -1,58 +1,32 @@
---
title: 2FA Support (TOTP)
-subtitle: How to send 2FA codes (TOTP) to Skyvern
+subtitle: How to send TOTP codes (2FA/MFA/Verification Code) to Skyvern
slug: credentials/totp
---
-Skyvern supports one-time password (see https://www.twilio.com/docs/glossary/totp for more information), also known as 2FA/MFA. For Skyvern to get the code, there are three options:
-- [Option 1: Store your 2FA/MFA secret in Skyvern Credential tool](#option-1-store-your-2famfa-secret-in-the-skyvern-credential-tool)
-- [Option 2: Skyvern gets the code from your endpoint](#option-2-get-code-from-your-endpoint)
-- [Option 3: You push the code to Skyvern](#option-3-push-code-to-skyvern)
+Skyvern supports logging into websites that require a 2FA/MFA/Verification code. There are 5 kinds of 2FA we support today:
+- [Option 1: Google Authenticator (TOTP)](#option-1-google-authenticator-totp)
+- [Option 2: Email Verification Code](#option-2-email-verification-code)
+- [Option 3: Phone Verification Code](#option-3-phone-verification-code)
+- [Option 4: Let Skyvern get the code from your server (webhook)](#option-4-let-skyvern-get-the-code-from-your-server-webhook)
+- [Option 5: One Time Login Link](#option-5-one-time-login-link)
-## Option 1: Store your 2FA/MFA secret in the Skyvern Credential tool
+## Option 1: Google Authenticator (TOTP)
-Save your username and password in [Skyvern Credential](https://app.skyvern.com/credentials) where you can also store your 2FA/MFA key/secret.
+Step 1: Save your username and password in [Skyvern Credential](https://app.skyvern.com/credentials). See [Password Management](/credentials/passwords#manage-passwords-in-skyvern-cloud) for more details.
-See [Password Management](/credentials/passwords#manage-passwords-in-skyvern-cloud) for more details.
-## Option 2: Get Code From Your Endpoint
-You can pass `totp_url` when running [a task](/api-reference/api-reference/agent/run-task) or a [workflow](/api-reference/api-reference/agent/run-workflow). Inside this endpoint hosted by you, you have to conform to the following schema:
+Step 2: Add your account by manually entering the secret key (extracted from the QR code). Not sure how to get it? [Follow this guide](https://bitwarden.com/help/integrated-authenticator/).
-### Set Up Your TOTP Endpoint
-For websites that require a verification code to complete a task, you have to set up a TOTP endpoint for Skyvern to fetch the verification code.
+> 💡 Don't have the key? Contact [Skyvern Support](mailto:support@skyvern.com) and we can help you get it.
-Here's the TOTP endpoint contract you should use:
+## Option 2: Email Verification Code
+Email verification codes require you to set up a forwarding rule that forwards these emails to a Skyvern endpoint.
-Request (POST):
-| Parameter | Type | Required? | Sample Value | Description |
-| --- | --- | --- | --- | --- |
-| task_id | String | yes | tsk_123 | The task ID that needs the verification to be done |
+The forwarding rule can be set up using [Gmail + Zapier](https://zapier.com/app/home) or similar tools. (instructions below)
-Response:
-| Parameter | Type | Required? | Sample Value | Description |
-| --- | --- | --- | --- | --- |
-| task_id | String | yes | tsk_123 | The task ID that needs the verification to be done |
-| verification_code | String | no | 123456 | The verification code |
+> 💡 *Coming Soon*: We plan to provide email forwarding addresses that make this easier to set up
-### Validate The Sender of The Request
-Same as the webhook API, your server needs to make sure it’s Skyvern that’s making the request.
-
-- a python example for how to generate and validate the signature:
-
-```python
-def validate_skyvern_request_headers(request: Request) -> bool:
- header_skyvern_signature = request.headers["x-skyvern-signature"]
- payload = request.body() # this is a bytes
- hash_obj = hmac.new(SKYVERN_API_KEY.encode("utf-8"), msg=payload, digestmod=hashlib.sha256)
- client_generated_signature = hash_obj.hexdigest()
- return header_skyvern_signature == client_generated_signature
-```
-
-SKYVERN_API_KEY: you can get the API KEY from [Skyvern Settings](https://app.skyvern.com/settings).
-
-## Option 3: Push Code To Skyvern
-Find TOTP API doc [here](/api-reference/api-reference/credentials/send-totp-code).
-
-You can pass `totp_identifier` when running [a task](/api-reference/api-reference/agent/run-task) or a [workflow](/api-reference/api-reference/agent/run-workflow). When the TOTP code arrives at your inbox, all you need to do is to send the email/message (Gmail + Zapier integration can be a good solution to set up email forwarding) to Skyvern's TOTP endpoint.
+You can pass `totp_identifier` when running [a task](/api-reference/api-reference/agent/run-task) or a [workflow](/api-reference/api-reference/agent/run-workflow). When the TOTP code arrives at your inbox, all you need to do is to send the email/message to Skyvern's [TOTP endpoint](/api-reference/api-reference/credentials/send-totp-code).
### Forwarding Your Email To Skyvern (Gmail + Zapier)
This setup requires a Zapier Pro plan account.
@@ -132,4 +106,108 @@ In Zapier: under the “Test” of the Webhooks action, send a request to test i
-
\ No newline at end of file
+
+
+
+## Option 3: Phone Verification Code
+
+Phone verification codes are supported the same way as email verification codes. You will need to set up a forwarding rule that forwards these messages to a Skyvern endpoint.
+
+A good solution to set up this forwarding rule is to use virtual phone number services such as [Twilio](https://www.twilio.com/en-us/docs/usage/tutorials/how-to-use-your-free-trial-account) or [Pilvo](https://www.pilvo.com/en/us/virtual-phone-number).
+
+
+Make sure you pass `totp_identifier` when running [a task](/api-reference/api-reference/agent/run-task) or a [workflow](/api-reference/api-reference/agent/run-workflow). When the TOTP code arrives at your virtual phone number, all you need to do is to send the message to Skyvern's TOTP endpoint.
+
+You can use the following code to forward the message to Skyvern:
+
+```python
+// Twilio Function to post 2FA data to Skyvern API
+
+exports.handler = async function(context, event, callback) {
+ const axios = require('axios');
+ const apiUrl = 'https://api.skyvern.com/v1/credentials/totp';
+ const apiKey = '{{your api key}}';
+ const totpIdentifier = '{{your totp identifier (could be phone number)}}';
+
+ const requestBody = {
+ totp_identifier: totpIdentifier,
+ content: event.Body || "Default 2FA message",
+ source: "phone"
+ };
+
+ const response = new Twilio.Response();
+ response.appendHeader('Content-Type', 'application/json');
+
+ try {
+ const apiResponse = await axios.post(apiUrl, requestBody, {
+ headers: {
+ 'Content-Type': 'application/json',
+ 'x-api-key': apiKey
+ }
+ });
+
+ response.setStatusCode(200);
+ response.setBody({
+ status: 'success',
+ message: '2FA message sent',
+ data: apiResponse.data
+ });
+ } catch (error) {
+ response.setStatusCode(500);
+ response.setBody({
+ status: 'error',
+ message: error.message,
+ details: error.response?.data || null
+ });
+ }
+
+ return callback(null, response);
+};
+
+```
+
+
+## Option 4: Let Skyvern get the code from your server (webhook)
+You can pass `totp_url` when running [a task](/api-reference/api-reference/agent/run-task) or a [workflow](/api-reference/api-reference/agent/run-workflow). Inside this endpoint hosted by you, you have to conform to the following schema:
+
+### Set Up Your TOTP Endpoint
+For websites that requires a verification code to complete a task, you have to set up a TOTP endpoint for Skyvern to fetch the verification code.
+
+Here's the TOTP endpoint contract you should use:
+
+Request (POST):
+| Parameter | Type | Required? | Sample Value | Description |
+| --- | --- | --- | --- | --- |
+| task_id | String | yes | tsk_123 | The task ID that needs the verification to be done |
+
+Response:
+| Parameter | Type | Required? | Sample Value | Description |
+| --- | --- | --- | --- | --- |
+| task_id | String | yes | tsk_123 | The task ID that needs the verification to be done |
+| verification_code | String | no | 123456 | The verification code |
+
+### Validate The Sender of The Request
+Same as the webhook API, your server needs to make sure it’s Skyvern that’s making the request.
+
+- a python example for how to generate and validate the signature:
+
+```python
+def validate_skyvern_request_headers(request: Request) -> bool:
+ header_skyvern_signature = request.headers["x-skyvern-signature"]
+ payload = request.body() # this is a bytes
+ hash_obj = hmac.new(SKYVERN_API_KEY.encode("utf-8"), msg=payload, digestmod=hashlib.sha256)
+ client_generated_signature = hash_obj.hexdigest()
+ return header_skyvern_signature == client_generated_signature
+```
+
+`SKYVERN_API_KEY`: you can get the API KEY from [Skyvern Settings](https://app.skyvern.com/settings).
+
+## Option 5: One Time Login Link
+
+One time login links are supported by breaking your workflow / task into two parts:
+1. Login to trigger the one time login link
+2. Trigger the rest of your task / workflow based on the one time login link as the starting point
+
+You will need to set up something (e.g. Zapier) that monitors the email inbox for incoming magic links. Once you get the link, you can use it to trigger the rest of your task / workflow.
+
+When triggering the rest of your task / workflow, you can pass the one time login link as the starting point (e.g. url parameter), and Skyvern will start the new session already logged in.
diff --git a/fern/images/performance/webbench_overall.png b/fern/images/performance/webbench_overall.png
new file mode 100644
index 0000000000000000000000000000000000000000..03c25779d205f1bb8c51a4ffb3aec3579827d059
GIT binary patch
literal 111246
zcmeGEcT`hp7dDKeFfdUR2gXrmC^kR=K|xBWqGO>egkBvf(uELuQ9zlo0D{y60xDpF
z1f)vnSZE=H6ON_32lx+i^Rf$EMC3Om;lCZ`cE?sk
zL=K6V|7iw`K`m1tZ6VwZ)1>Pb6?T{ZxpF2!+sp21z_BOhXO2JqwWC5j!Qspiug@0e
z?yf5^mSDt7Wl`dpjT147
z3~p?vDIWtaL3osA3cd*}|9vg8PhIriSHt<`1j=(%Ua2QU!C(c-G$p7!GWqn{}aTKeXp2(0U7X+8=
zWV=2&mucED6*+3%o2Xke(MHoDpKP8P;nyb%rm5Ju48zbKf4vXhsY_K}n}IsWy#`-O
zAynjq;?_!fAZ}xgl&pa}U*p7kKNVEt5r)q1+*lyvT3N1%%hwgFlGaDjj@#=KowVTg
z0~hsXZk`WED#U#$gX0z0iR^fZsfnQKM#n}Lp5gdM=&NguZ+~-x)x=X6OV@evRDma=
zS3a7sXpo5w?!}ZOGhWo&G`_$1hl5*KJA#|n+*V#>nw*4KTgZ3f&%jA3ThQI*$WT1S
zV7d17yQZ%+WSFPoT*&tKUQ?`Q^4cId$V)I4xXGQU83!K_m@Xgn+=Smka!B45P$kw&
zW`g#beE+!K7TBRSDEEzXDj(O*n+mL|Zu;HOk^kX(=92KvQan$Bm_H(n5kE3-I?T)X
z;|{6kEI3;5pj~0D?~yK_O52)3+CoZUYVf^e<@GL$JK|xG7z!z+j*X_gQ*V|cO5ghrQ+nbD#t&b9>
zuU!2KeX%OWi{|9%SzeRD^NMAs&UJ_I_>NC|!U{&YG2ALI9i&38EijC`$DY>FK
zx4|KyN4W|YnyE>G22v+j;TLgz=N0VG$+iifWvV7Rx47hodb6)elkK>@rdux!*1tTh
zvbTYj>8Rq`<;~I#`O;%&%n`n(m{RkF;2IH{rPsP0f=`L&Z*1sHxZ67!
zMw=qB4MyM4*1LmhXBdt1*_PwEkDDn`)2Qn09-nKw^91b?xQe2+Z=<&8QG}w-C?qew
zT{^C!D7H>xPyGUT{?!>!TEWs!nlWa^BA>F(@5Qi~S}Vut=Tp{$UyHpHusf5vU}YM&
z1d-Qb=!R66lkML|xSP)!DB2(Y0-JK#?R3e&w|4$){EV>%zv-vO8gDJxhWvZ$w3)uI
z=nRN|F=9N$QwQu7>3{bMl#a5O$YDzGFnyLcW=NRI5?A9nS<)BTre}%QU9)%*i{<$l
zRgOWP0Yiyki#pW@jHN8J*|odT&S!#wy*6S+w+W-2{8NWR$C@^jb0xnV7w4n7_4}
z-#Io4G1^`u)kuiyn2iZ$`5jBM>db0WP9f<*EBhIz$6TfO%=p3)hqac@Gi4D5F3+ra
zZx496S2s-sUPrqntu3fDkXTOD8)KCwjU99@qhiNySJ!3J%|%;9epp@P-~EW)A|lF1
zK?U)4^eyR!-9e;glbyWU@f@OId=l%a;^vL7@S&iGI^$m^OQ0t&%ZQ&byUelpdj)Kc
zR@{d|>!%0R>D*EY}ahJFi_k9oQXFUo)yeHhRg=@NR+RYrguJ0u}7>M<+(f
z>z7Y8w=3{@-fP$@T+wj#5z#^|uY|dk*HSgp9(u{>wRxG#D*J5o9?(cK&)Kc)j<;-c
zE_@4T?D0BDz^rsFjBmHvpM9t$G2=xGt%$7G@%7