AI Skill Hub 强烈推荐:skyvern Agent工作流 是一款优质的AI工具。在 GitHub 上收获超过 21.6k 颗 Star,AI 综合评分 8.2 分,在同类工具中表现稳健。如果你正在寻找可靠的AI工具解决方案,这是一个值得深入了解的选择。
skyvern Agent工作流 是一款基于 Python 开发的开源工具,专注于 浏览器自动化、AI工作流、RPA 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
skyvern Agent工作流 是一款基于 Python 开发的开源工具,专注于 浏览器自动化、AI工作流、RPA 等核心功能。作为 GitHub 开源项目,它拥有活跃的社区支持和持续的版本迭代,代码完全透明可审计,支持本地部署以保护数据隐私。无论是个人使用还是集成到企业工作流,都能提供稳定可靠的解决方案。
# 方式一:pip 安装(推荐)
pip install skyvern
# 方式二:虚拟环境安装(推荐生产环境)
python -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install skyvern
# 方式三:从源码安装(获取最新功能)
git clone https://github.com/Skyvern-AI/skyvern
cd skyvern
pip install -e .
# 验证安装
python -c "import skyvern; print('安装成功')"
# 命令行使用
skyvern --help
# 基本用法
skyvern input_file -o output_file
# Python 代码中调用
import skyvern
# 示例
result = skyvern.process("input")
print(result)
# skyvern 配置文件示例(config.yml) app: name: "skyvern" debug: false log_level: "INFO" # 运行时指定配置文件 skyvern --config config.yml # 或通过环境变量配置 export SKYVERN_API_KEY="your-key" export SKYVERN_OUTPUT_DIR="./output"
🐉 Automate Browser-based workflows using LLMs and Computer Vision 🐉
Skyvern 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.
<p align="center"> <img src="fern/images/geico_shu_recording_cropped.gif"/> </p>
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 learn and interact with the websites.
Dependencies needed: - Python 3.11.x, works with 3.12, not ready yet for 3.13 - NodeJS & NPM
Additionally, for Windows: - Rust - VS Code with C++ dev tools and Windows SDK
pip install skyvern
skyvern quickstart
Use this option if you want everything containerized (Postgres, API, UI) and don't want to install Python/Node locally.
1. Install Docker Desktop 2. Clone the repository:
git clone https://github.com/skyvern-ai/skyvern.git && cd skyvern
3. Configure your LLM provider in .env (the quickstart --docker-compose command below will create it from .env.example if missing): cp .env.example .env # if not already created
# edit .env to add your LLM API key
4. Start everything: docker compose up -d
5. Open http://localhost:8080
Make sure to have uv installed. 1. Run this to create your virtual environment (.venv)
uv sync --group dev
2. Perform initial server configuration uv run skyvern quickstart
3. Navigate to http://localhost:8080 in your browser to start using the UI The Skyvern CLI supports Windows, WSL, macOS, and Linux environments.
```python
Run via UI:
skyvern run all Navigate to http://localhost:8080 to run tasks through the web interface.
Python SDK: ```python from skyvern import 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!
https://github.com/user-attachments/assets/5cab4668-e8e2-4982-8551-aab05ff73a7f
result = await page.extract("Get the product name and price") result = await page.extract( prompt="Extract order details", schema={"order_id": "string", "total": "number", "items": "array"} )
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.
Installation: - Python: pip install skyvern then run skyvern quickstart for local setup - TypeScript: npm install @skyvern/client
Skyvern supports Zapier, Make.com, and N8N to allow you to connect your Skyvern workflows to other apps.
🔐 Learn more about 2FA support here.
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.
Another 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.
Supported workflow features include: 1. Browser Task 1. Browser Action 1. Data Extraction 1. Validation 1. For Loops 1. File parsing 1. Sending emails 1. Text Prompts 1. HTTP Request Block 1. Custom Code Block 1. Uploading files to block storage 1. (Coming soon) Conditionals
<p align="center"> <img src="fern/images/block_example_v2.png"/> </p>
Skyvern currently supports the following password manager integrations: - [x] Bitwarden - [x] Custom Credential Service (HTTP API) - [ ] 1Password - [ ] LastPass
(sqlite3.OperationalError) table organizations already exists — You hit a known bug in pip install skyvern==1.0.31. Fix:
rm ~/.skyvern/data.db # remove the leftover SQLite file
pip install --upgrade skyvern # 1.0.32+ contains the fix
skyvern quickstart
If you are still on 1.0.31 and cannot upgrade, install via uv instead:
uv pip install skyvern
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.
简介:Skyvern 是一个使用 LLM 和计算机视觉来自动化浏览器工作流的项目。
功能介绍:Skyvern 提供了浏览器自动化的功能,使用自然语言提示来交互元素、提取数据和自动化复杂的多步工作流。
环境依赖与系统要求:Python 3.11.x、NodeJS & NPM、Rust、VS Code 等。
安装步骤说明:使用 pip、Docker Compose 等方式安装 Skyvern。
使用教程:使用 Skyvern 的快速入门,包括 UI 和 Python SDK 的使用。
配置说明:提取结构化数据、配置 LLM 提供商等。
API/接口说明:Skyvern 是一个 Playwright 扩展,提供了 AI 强化的浏览器自动化功能。
工作流 / 模块说明:工作流是通过多个任务组合而成的,用于自动化复杂的工作流程。
FAQ 摘要:解决常见问题,包括安装、配置和使用问题。
Skyvern融合AI视觉识别与浏览器自动化,降低RPA开发门槛。项目活跃维护,生态完善,是新一代无代码自动化工具代表。
该工具使用 AGPL-3.0 协议,商用场景请仔细阅读协议条款,必要时咨询法律意见。
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
⚠️ AGPL 3.0 — 最严格的 Copyleft,网络服务端使用也需开源,SaaS 使用受限。
总体来看,skyvern Agent工作流 是一款质量优秀的AI工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | skyvern |
| 原始描述 | 开源AI工作流:Automate browser based workflows with AI。⭐21.6k · Python |
| Topics | 浏览器自动化AI工作流RPA网页自动化无代码自动化 |
| GitHub | https://github.com/Skyvern-AI/skyvern |
| License | AGPL-3.0 |
| 语言 | Python |
收录时间:2026-05-14 · 更新时间:2026-05-16 · License:AGPL-3.0 · AI Skill Hub 不对第三方内容的准确性作法律背书。