{
  "markdown": "<!-- DOCTOC SKIP -->\n\n<h1 align=\"center\">\n <a href=\"https://www.skyvern.com\">\n  <picture>\n    <source media=\"(prefers-color-scheme: dark)\" srcset=\"fern/images/skyvern_logo.png\"/>\n    <img height=\"120\" src=\"fern/images/skyvern_logo_blackbg.png\"/>\n  </picture>\n </a>\n <br />\n</h1>\n<p align=\"center\">\n🐉 Automate Browser-based workflows using LLMs and Computer Vision 🐉\n</p>\n<p align=\"center\">\n  <a href=\"https://www.skyvern.com/\"><img src=\"https://img.shields.io/badge/Website-blue?logo=googlechrome&logoColor=black\"/></a>\n  <a href=\"https://www.skyvern.com/docs/\"><img src=\"https://img.shields.io/badge/Docs-yellow?logo=gitbook&logoColor=black\"/></a>\n  <a href=\"https://discord.gg/fG2XXEuQX3\"><img src=\"https://img.shields.io/discord/1212486326352617534?logo=discord&label=discord\"/></a>\n  <!-- <a href=\"https://pepy.tech/project/skyvern\" target=\"_blank\"><img src=\"https://static.pepy.tech/badge/skyvern\" alt=\"Total Downloads\"/></a> -->\n  <a href=\"https://github.com/skyvern-ai/skyvern\"><img src=\"https://img.shields.io/github/stars/skyvern-ai/skyvern\" /></a>\n  <a href=\"https://github.com/Skyvern-AI/skyvern/blob/main/LICENSE\"><img src=\"https://img.shields.io/github/license/skyvern-ai/skyvern\"/></a>\n  <a href=\"https://twitter.com/skyvernai\"><img src=\"https://img.shields.io/twitter/follow/skyvernai?style=social\"/></a>\n  <a href=\"https://www.linkedin.com/company/95726232\"><img src=\"https://img.shields.io/badge/Follow%20 on%20LinkedIn-8A2BE2?logo=linkedin\"/></a>\n</p>\n\n[Skyvern](https://www.skyvern.com) automates browser-based workflows using LLMs and computer vision. It provides a Playwright-compatible SDK that adds AI functionality on top of playwright, as well as a no-code workflow builder to help both technical and non-technical users automate manual workflows on any website, replacing brittle or unreliable automation solutions.\n\n<p align=\"center\">\n  <img src=\"fern/images/geico_shu_recording_cropped.gif\"/>\n</p>\n\nTraditional 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.\n\nInstead of only relying on code-defined XPath interactions, Skyvern relies on Vision LLMs to learn and interact with the websites.\n\n# How it works\nSkyvern 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/).\n\nSkyvern uses a swarm of agents to comprehend a website, and plan and execute its actions:\n\n<picture>\n  <source media=\"(prefers-color-scheme: dark)\" srcset=\"fern/images/skyvern_2_0_system_diagram.png\" />\n  <img src=\"fern/images/skyvern_2_0_system_diagram.png\" />\n</picture>\n\nThis approach has a few advantages:\n\n1. 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\n1. 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\n1. 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\nA detailed technical report can be found [here](https://www.skyvern.com/blog/skyvern-2-0-state-of-the-art-web-navigation-with-85-8-on-webvoyager-eval/).\n\n# Demo\n<!-- Redo demo -->\nhttps://github.com/user-attachments/assets/5cab4668-e8e2-4982-8551-aab05ff73a7f\n\n# Quickstart\n\n## Skyvern Cloud\n[Skyvern Cloud](https://app.skyvern.com) is a managed cloud version of Skyvern that allows you to run Skyvern without worrying about the infrastructure. It allows you to run multiple Skyvern instances in parallel and comes bundled with anti-bot detection mechanisms, proxy network, and CAPTCHA solvers.\n\nIf you'd like to try it out, navigate to [app.skyvern.com](https://app.skyvern.com) and create an account.\n\n## Run Locally (UI + Server)\n\nChoose your preferred setup method:\n\n> **Database default**: `skyvern quickstart` and `skyvern run server` default to a SQLite database at `~/.skyvern/data.db` so the pip path works without Postgres or Docker. To use Postgres instead, pass `--database-string` for an existing database (or omit `--no-postgres` so `quickstart` starts its own Postgres container). Docker Compose always uses the bundled Postgres service.\n\n### Option A: pip install (Recommended for Python-managed local setup)\n\nDependencies needed:\n- [Python 3.11, 3.12, or 3.13](https://www.python.org/downloads/)\n\nAdditionally, for Windows:\n- [Rust](https://rustup.rs/)\n- VS Code with C++ dev tools and Windows SDK\n\n#### 1. Install Skyvern\n\n```bash\npip install \"skyvern[all]\"\n```\n\n#### 2. Run Skyvern\n\n```bash\nskyvern quickstart\n```\n\nThe pip quickstart uses SQLite by default. To use a local Postgres container instead, run `skyvern quickstart` (Postgres container is started unless you pass `--no-postgres`), or connect to an existing database with `--database-string=postgresql+psycopg://user:pass@host:5432/dbname`.\n\n### Option B: Docker Compose\n\nUse this option if you want everything containerized (Postgres, API, UI) and don't want to install Python/Node locally.\n\n1. Install [Docker Desktop](https://www.docker.com/products/docker-desktop/)\n2. Clone the repository:\n   ```bash\n   git clone https://github.com/skyvern-ai/skyvern.git && cd skyvern\n   ```\n3. Configure your LLM provider in `.env` (the `quickstart --docker-compose` command below will create it from `.env.example` if missing):\n   ```bash\n   cp .env.example .env  # if not already created\n   # edit .env to add your LLM API key\n   ```\n4. Start everything:\n   ```bash\n   docker compose up -d\n   ```\n5. Open http://localhost:8080\n\n### Troubleshooting\n\n**`(sqlite3.OperationalError) table organizations already exists`** — You hit a known bug in `pip install skyvern==1.0.31`. Fix:\n\n```bash\nrm ~/.skyvern/data.db   # remove the leftover SQLite file\npip install --upgrade skyvern   # 1.0.32+ contains the fix\nskyvern quickstart\n```\n\nIf you are still on 1.0.31 and cannot upgrade, install via uv instead:\n\n```bash\nuv pip install skyvern\n```\n\n**`pip install skyvern` fails with ResolutionImpossible (litellm / fastmcp)** — You hit a dependency-resolution conflict in 1.0.31. Either upgrade to 1.0.32+ or use uv: `uv pip install skyvern`.\n\n## SDK\n\n**Skyvern is a Playwright extension that adds AI-powered browser automation.** It gives you the full power of Playwright with additional AI capabilities—use natural language prompts to interact with elements, extract data, and automate complex multi-step workflows.\n\n**Installation:**\n- Python SDK / cloud API: `pip install skyvern`\n- Local server + packaged UI: `pip install \"skyvern[all]\"` then run `skyvern quickstart`\n- Local server + packaged UI with Postgres: `pip install \"skyvern[all]\"` then run `skyvern quickstart --database-string=postgresql+psycopg://user:pass@host:5432/dbname`\n- Packaged UI for an existing API: `pip install \"skyvern[ui]\"` then set `VITE_API_BASE_URL` (and `VITE_SKYVERN_API_KEY` if your API requires a key) and run `skyvern run ui`\n- TypeScript: `npm install @skyvern/client`\n\n### AI-Powered Page Commands\n\nSkyvern adds four core AI commands directly on the page object:\n\n| Command | Description |\n|---------|-------------|\n| `page.act(prompt)` | Perform actions using natural language (e.g., \"Click the login button\") |\n| `page.extract(prompt, schema)` | Extract structured data from the page with optional JSON schema |\n| `page.validate(prompt)` | Validate page state, returns `bool` (e.g., \"Check if user is logged in\") |\n| `page.prompt(prompt, schema)` | Send arbitrary prompts to the LLM with optional response schema |\n\nAdditionally, `page.agent` provides higher-level workflow commands:\n\n| Command | Description |\n|---------|-------------|\n| `page.agent.run_task(prompt)` | Execute complex multi-step tasks |\n| `page.agent.login(credential_type, credential_id)` | Authenticate with stored credentials (Skyvern, Bitwarden, 1Password) |\n| `page.agent.download_files(prompt)` | Navigate and download files |\n| `page.agent.run_workflow(workflow_id)` | Execute pre-built workflows |\n\n### AI-Augmented Playwright Actions\n\nAll standard Playwright actions support an optional `prompt` parameter for AI-powered element location:\n\n| Action | Playwright | AI-Augmented |\n|--------|------------|--------------|\n| Click | `page.click(\"#btn\")` | `page.click(prompt=\"Click login button\")` |\n| Fill | `page.fill(\"#email\", \"a@b.com\")` | `page.fill(prompt=\"Email field\", value=\"a@b.com\")` |\n| Select | `page.select_option(\"#country\", \"US\")` | `page.select_option(prompt=\"Country dropdown\", value=\"US\")` |\n| Upload | `page.upload_file(\"#file\", \"doc.pdf\")` | `page.upload_file(prompt=\"Upload area\", files=\"doc.pdf\")` |\n\n**Three interaction modes:**\n```python\n# 1. Traditional Playwright - CSS/XPath selectors\nawait page.click(\"#submit-button\")\n\n# 2. AI-powered - natural language\nawait page.click(prompt=\"Click the green Submit button\")\n\n# 3. AI fallback - tries selector first, falls back to AI if it fails\nawait page.click(\"#submit-btn\", prompt=\"Click the Submit button\")\n```\n\n### Core AI Commands - Examples\n\n```python\n# act - Perform actions using natural language\nawait page.act(\"Click the login button and wait for the dashboard to load\")\n\n# extract - Extract structured data with optional JSON schema\nresult = await page.extract(\"Get the product name and price\")\nresult = await page.extract(\n    prompt=\"Extract order details\",\n    schema={\"order_id\": \"string\", \"total\": \"number\", \"items\": \"array\"}\n)\n\n# validate - Check page state (returns bool)\nis_logged_in = await page.validate(\"Check if the user is logged in\")\n\n# prompt - Send arbitrary prompts to the LLM\nsummary = await page.prompt(\"Summarize what's on this page\")\n```\n\n### Quick Start Examples\n\n**Run via UI:**\n```bash\nskyvern run all\n```\nNavigate to http://localhost:8080 to run tasks through the web interface. If the packaged UI is missing, `skyvern run ui` will offer to install the matching UI package.\n\nTo run only the packaged UI against an existing Skyvern API, install `skyvern[ui]` and set the\nenvironment variables below before running `skyvern run ui`:\n\n- `VITE_API_BASE_URL` (e.g. `http://localhost:8000/api/v1`) — points the UI at your Skyvern API\n- `VITE_SKYVERN_API_KEY` — the API key if your API requires one\n- `VITE_WSS_BASE_URL` — WebSocket endpoint (inferred from `VITE_API_BASE_URL` if unset)\n- `VITE_ARTIFACT_API_BASE_URL` — base URL for artifact downloads\n- `VITE_BROWSER_STREAMING_MODE` — browser viewport streaming mode\n\n**Python SDK:**\n```python\nfrom skyvern import Skyvern\n\n# Local mode\nskyvern = Skyvern.local()\n\n# Or connect to Skyvern Cloud\nskyvern = Skyvern(api_key=\"your-api-key\")\n\n# Launch browser and get page\nbrowser = await skyvern.launch_cloud_browser()\npage = await browser.get_working_page()\n\n# Mix Playwright with AI-powered actions\nawait page.goto(\"https://example.com\")\nawait page.click(\"#login-button\")  # Traditional Playwright\nawait page.agent.login(credential_type=\"skyvern\", credential_id=\"cred_123\")  # AI login\nawait page.click(prompt=\"Add first item to cart\")  # AI-augmented click\nawait page.agent.run_task(\"Complete checkout with: John Snow, 12345\")  # AI task\n```\n\n**TypeScript SDK:**\n```typescript\nimport { Skyvern } from \"@skyvern/client\";\n\nconst skyvern = new Skyvern({ apiKey: \"your-api-key\" });\nconst browser = await skyvern.launchCloudBrowser();\nconst page = await browser.getWorkingPage();\n\n// Mix Playwright with AI-powered actions\nawait page.goto(\"https://example.com\");\nawait page.click(\"#login-button\");  // Traditional Playwright\nawait page.agent.login(\"skyvern\", { credentialId: \"cred_123\" });  // AI login\nawait page.click({ prompt: \"Add first item to cart\" });  // AI-augmented click\nawait page.agent.runTask(\"Complete checkout with: John Snow, 12345\");  // AI task\n\nawait browser.close();\n```\n\n**Simple task execution:**\n```python\nfrom skyvern import Skyvern\n\nskyvern = Skyvern()\ntask = await skyvern.run_task(prompt=\"Find the top post on hackernews today\")\nprint(task)\n```\n\n## Advanced Usage\n\n### Control your own browser (Chrome)\n\nLet Skyvern control your existing Chrome browser — with all your cookies, logins, and extensions.\n\n#### Step 1: Enable remote debugging in Chrome\n\n1. Open Chrome and navigate to `chrome://inspect/#remote-debugging`\n2. Click **Enable** to start the debugging server\n3. You should see: **Server running at: 127.0.0.1:9222**\n\n> [!TIP]\n> The `skyvern init browser` command can do this automatically — it opens `chrome://inspect/#remote-debugging`, waits for you to enable it, and saves the config.\n\n#### Step 2: Connect Skyvern\n\n**Option A — Python Code:**\n```python\nfrom skyvern import Skyvern\n\nskyvern = Skyvern(\n    base_url=\"http://localhost:8000\",\n    api_key=\"YOUR_API_KEY\",\n    browser_address=\"http://127.0.0.1:9222\",\n)\ntask = await skyvern.run_task(\n    prompt=\"Find the top post on hackernews today\",\n)\n```\n\n**Option B — Skyvern Service:**\n\nAdd two variables to your .env file:\n```bash\nBROWSER_TYPE=cdp-connect\nBROWSER_REMOTE_DEBUGGING_URL=http://127.0.0.1:9222\n```\n\nRestart Skyvern service `skyvern run all` and run the task through UI or code\n\n### Connect Skyvern Cloud to your local browser\n\nLet Skyvern Cloud control a Chrome browser running on your machine — with all your existing cookies, logins, and extensions. Useful for automating sites where you're already logged in or behind a VPN.\n\n```bash\n# One command to start Chrome + create a tunnel to Skyvern Cloud\nskyvern browser serve --tunnel\n```\n\nThen use the tunnel URL in your task:\n\n```python\nfrom skyvern import Skyvern\n\nskyvern = Skyvern(api_key=\"your-api-key\")\ntask = await skyvern.run_task(\n    prompt=\"Download the latest invoice from my account\",\n    browser_address=\"https://abc123.ngrok-free.dev\",\n)\n```\n\n> [!WARNING]\n> Always use `--api-key` when exposing your browser via a tunnel. Without it, anyone with the URL has full control of your browser. See the [security docs](https://www.skyvern.com/docs/optimization/browser-tunneling#security).\n\nSee the [full documentation](https://www.skyvern.com/docs/optimization/browser-tunneling) for all options, manual tunnel setup, and troubleshooting.\n\n### Get consistent output schema from your run\nYou can do this by adding the `data_extraction_schema` parameter:\n```python\nfrom skyvern import Skyvern\n\nskyvern = Skyvern()\ntask = await skyvern.run_task(\n    prompt=\"Find the top post on hackernews today\",\n    data_extraction_schema={\n        \"type\": \"object\",\n        \"properties\": {\n            \"title\": {\n                \"type\": \"string\",\n                \"description\": \"The title of the top post\"\n            },\n            \"url\": {\n                \"type\": \"string\",\n                \"description\": \"The URL of the top post\"\n            },\n            \"points\": {\n                \"type\": \"integer\",\n                \"description\": \"Number of points the post has received\"\n            }\n        }\n    }\n)\n```\n\n### Helpful commands to debug issues\n\n\n```bash\n# Launch the Skyvern Server Separately*\nskyvern run server\n\n# Launch the Skyvern UI\nskyvern run ui\n\n# Check status of the Skyvern service\nskyvern status\n\n# Stop the Skyvern service\nskyvern stop all\n\n# Stop the Skyvern UI\nskyvern stop ui\n\n# Stop the Skyvern Server Separately\nskyvern stop server\n```\n\n# Performance & Evaluation\n\nSkyvern has SOTA performance on the [WebBench benchmark](webbench.ai) with a 64.4% accuracy. The technical report + evaluation can be found [here](https://www.skyvern.com/blog/web-bench-a-new-way-to-compare-ai-browser-agents/)\n\n<p align=\"center\">\n  <img src=\"fern/images/performance/webbench_overall.png\"/>\n</p>\n\n## Performance on WRITE tasks (eg filling out forms, logging in, downloading files, etc)\n\nSkyvern 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.\n\n<p align=\"center\">\n  <img src=\"fern/images/performance/webbench_write.png\"/>\n</p>\n\n# Skyvern Features\n\n## Skyvern Tasks\nTasks 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.\n\nTasks 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).\n\n<p align=\"center\">\n  <img src=\"fern/images/skyvern_2_0_screenshot.png\"/>\n</p>\n\n\n## Skyvern Workflows\nWorkflows are a way to chain multiple tasks together to form a cohesive unit of work.\n\nFor 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.\n\nAnother example is if you wanted to automate purchasing products from an e-commerce store, you could create a workflow that first navigated to the desired product, then added it to a cart. Second, it would navigate to the cart and validate the cart state. Finally, it would go through the checkout process to purchase the items.\n\nSupported workflow features include:\n1. Browser Task\n1. Browser Action\n1. Data Extraction\n1. Validation\n1. For Loops\n1. File parsing\n1. Sending emails\n1. Text Prompts\n1. HTTP Request Block\n1. Custom Code Block\n1. Uploading files to block storage\n1. (Coming soon) Conditionals\n\n<p align=\"center\">\n  <img src=\"fern/images/block_example_v2.png\"/>\n</p>\n\n## Livestreaming\nSkyvern allows you to livestream the viewport of the browser to your local machine so that you can see exactly what Skyvern is doing on the web. This is useful for debugging and understanding how Skyvern is interacting with a website, and intervening when necessary\n\n## Form Filling\nSkyvern is natively capable of filling out form inputs on websites. Passing in information via the `navigation_goal` will allow Skyvern to comprehend the information and fill out the form accordingly.\n\n## Data Extraction\nSkyvern is also capable of extracting data from a website.\n\nYou can also specify a `data_extraction_schema` directly within the main prompt to tell Skyvern exactly what data you'd like to extract from the website, in jsonc format. Skyvern's output will be structured in accordance to the supplied schema.\n\n## File Downloading\nSkyvern is also capable of downloading files from a website. All downloaded files are automatically uploaded to block storage (if configured), and you can access them via the UI.\n\n## Authentication\nSkyvern supports a number of different authentication methods to make it easier to automate tasks behind a login. If you'd like to try it out, please reach out to us [via email](mailto:founders@skyvern.com) or [discord](https://discord.gg/fG2XXEuQX3).\n\n<p align=\"center\">\n  <img src=\"fern/images/secure_password_task_example.png\"/>\n</p>\n\n\n### 🔐 2FA Support (TOTP)\nSkyvern supports a number of different 2FA methods to allow you to automate workflows that require 2FA.\n\nExamples include:\n1. QR-based 2FA (e.g. Google Authenticator, Authy)\n1. Email based 2FA\n1. SMS based 2FA\n\n🔐 Learn more about 2FA support [here](https://www.skyvern.com/docs/credentials/totp).\n\n### Password Manager Integrations\nSkyvern currently supports the following password manager integrations:\n- [x] Bitwarden\n- [x] Custom Credential Service (HTTP API)\n- [ ] 1Password\n- [ ] LastPass\n\n\n## Model Context Protocol (MCP)\n\nSkyvern supports the Model Context Protocol (MCP) to allow you to use any LLM that supports MCP.\n\nSee the MCP documentation [here](https://www.skyvern.com/docs/integrations/mcp#mcp-server)\n\n## Zapier / Make.com / N8N Integration\nSkyvern supports Zapier, Make.com, and N8N to allow you to connect your Skyvern workflows to other apps.\n\n* [Zapier](https://www.skyvern.com/docs/integrations/zapier)\n* [Make.com](https://www.skyvern.com/docs/integrations/make.com)\n* [N8N](https://www.skyvern.com/docs/integrations/n8n)\n\n🔐 Learn more about 2FA support [here](https://www.skyvern.com/docs/credentials/totp).\n\n\n# Real-world examples of Skyvern\nWe 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!\n\n## Invoice Downloading on many different websites\n[Book a demo to see it live](https://meetings.hubspot.com/skyvern/demo)\n\n<p align=\"center\">\n  <img src=\"fern/images/invoice_downloading.gif\"/>\n</p>\n\n## Automate the job application process\n[💡 See it in action](https://app.skyvern.com/tasks/create/job_application)\n<p align=\"center\">\n  <img src=\"fern/images/job_application_demo.gif\"/>\n</p>\n\n## Automate materials procurement for a manufacturing company\n[💡 See it in action](https://app.skyvern.com/tasks/create/finditparts)\n<p align=\"center\">\n  <img src=\"fern/images/finditparts_recording_crop.gif\"/>\n</p>\n\n## Navigating to government websites to register accounts or fill out forms\n[💡 See it in action](https://app.skyvern.com/tasks/create/california_edd)\n<p align=\"center\">\n  <img src=\"fern/images/edd_services.gif\"/>\n</p>\n<!-- Add example of delaware entity lookups x2 -->\n\n## Filling out random contact us forms\n[💡 See it in action](https://app.skyvern.com/tasks/create/contact_us_forms)\n<p align=\"center\">\n  <img src=\"fern/images/contact_forms.gif\"/>\n</p>\n\n\n## Retrieving insurance quotes from insurance providers in any language\n[💡 See it in action](https://app.skyvern.com/tasks/create/bci_seguros)\n<p align=\"center\">\n  <img src=\"fern/images/bci_seguros_recording.gif\"/>\n</p>\n\n[💡 See it in action](https://app.skyvern.com/tasks/create/geico)\n\n<p align=\"center\">\n  <img src=\"fern/images/geico_shu_recording_cropped.gif\"/>\n</p>\n\n# Contributor Setup\nMake sure to have [uv](https://docs.astral.sh/uv/getting-started/installation/) installed.\n1. Run this to create your virtual environment (`.venv`)\n    ```bash\n    uv sync --group dev\n    ```\n2. Perform initial server configuration\n    ```bash\n    uv run skyvern quickstart\n    ```\n3. Navigate to `http://localhost:8080` in your browser to start using the UI\n   *The Skyvern CLI supports Windows, WSL, macOS, and Linux environments.*\n\n# Documentation\n\nMore extensive documentation can be found on our [📕 docs page](https://www.skyvern.com/docs). Please let us know if something is unclear or missing by opening an issue or reaching out to us [via email](mailto:founders@skyvern.com) or [discord](https://discord.gg/fG2XXEuQX3).\n\n# Supported LLMs\n| Provider | Supported Models |\n| -------- | ------- |\n| OpenAI   | GPT-5.5, GPT-5.4, GPT-5, GPT-4.1, o3, o4-mini |\n| Anthropic | Claude 4.7 Opus, Claude 4.6 (Sonnet, Opus), Claude 4.5 (Haiku, Sonnet, Opus) |\n| Azure OpenAI | Any GPT models deployed to your Azure subscription |\n| AWS Bedrock | Claude 4.7, Claude 4.6 (Sonnet, Opus), Claude 4.5 (Sonnet, Opus) |\n| Gemini | Gemini 3.1 Pro, Gemini 3 Flash, Gemini 2.5 Pro/Flash |\n| Ollama | Run any locally hosted model via [Ollama](https://github.com/ollama/ollama) |\n| OpenRouter | Access models through [OpenRouter](https://openrouter.ai) |\n| OpenAI-compatible | Any custom API endpoint that follows OpenAI's API format (via [liteLLM](https://docs.litellm.ai/docs/providers/openai_compatible)) |\n\nFor detailed LLM configuration including all available model keys, environment variables, and multi-model setups, see the [LLM Configuration docs](https://www.skyvern.com/docs/self-hosted/llm-configuration).\n\n# Contributing\n\nWe welcome PRs and suggestions! Don't hesitate to open a PR/issue or to reach out to us [via email](mailto:founders@skyvern.com) or [discord](https://discord.gg/fG2XXEuQX3).\nPlease have a look at our [contribution guide](CONTRIBUTING.md) and\n[\"Help Wanted\" issues](https://github.com/skyvern-ai/skyvern/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22) to get started!\n\nIf you want to chat with the skyvern repository to get a high level overview of how it is structured, how to build off it, and how to resolve usage questions, check out [Code Sage](https://sage.storia.ai?utm_source=github&utm_medium=referral&utm_campaign=skyvern-readme).\n\n# Telemetry\n\nBy 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`.\n\n# License\nSkyvern'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.\n\nIf you have any questions or concerns around licensing, please [contact us](mailto:support@skyvern.com) and we would be happy to help.\n\n# Star History\n\n[![Star History Chart](https://api.star-history.com/svg?repos=Skyvern-AI/skyvern&type=Date)](https://star-history.com/#Skyvern-AI/skyvern&Date)\n",
  "bytes": 25255,
  "sha": "68fda945255825907aeada13d19de19209708c14504ac975e63a235f0cd9343b",
  "repo_slug": "skyvern-ai/skyvern",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_io_github_skyvern_ai_skyvern_c6d1ef84/readme"
}