Vibe Kanban—AI 编程 Agent 协作看板
介绍
Get 10X more out of Claude Code, Codex or any coding agent
- 适合谁
- AI coding 开发者、小团队
- 使用门槛
- 低,需配置环境
- 安装入口
- npx vibe-kanban
从 Claude Code、GitHub Copilot、Amp 等编码代理中获得 10 倍以上的效率提升…
Vibe Kanban 即将停止运营。 查看公告。

概述
在软件工程师将大部分时间用于规划和审查编码代理的世界里,提高规划和审查效率是加快交付的最有效方式。
Vibe Kanban 正是为此而打造。使用看板问题来规划工作,可以是私密的或与团队一起。当准备开始时,创建工作空间,让编码代理可以执行任务。
- 用看板问题进行规划 — 在看板上创建、优先级排序和分配问题
- 在工作空间中运行编码代理 — 每个工作空间为代理提供分支、终端和开发服务器
- 审查代码差异并留下内联评论 — 无需离开界面即可直接向代理发送反馈
- 预览你的应用 — 内置浏览器,带开发工具、检查模式和设备模拟
- 在 10+ 编码代理之间切换 — Claude Code、Codex、GitHub Copilot、Amp、Cursor、OpenCode、Droid、CCR 和 Qwen Code
- 创建拉取请求并合并 — 使用 AI 生成的描述打开 PR,在 GitHub 上审查并合并

一条命令。描述工作内容,审查代码差异,交付。
npx vibe-kanban安装
请确保已对你喜欢的编码代理完成身份验证。支持的编码代理完整列表可在文档中找到。然后在终端中运行:
npx vibe-kanban文档
前往官网获取最新的文档和用户指南。
自托管
想要托管你自己的 Vibe Kanban Cloud 实例?参见我们的自托管指南。
支持
我们使用 GitHub Discussions 来处理功能请求。请发起讨论来创建功能请求。Bug 请在此仓库提交 issue。
贡献
我们希望首先通过 GitHub Discussions 或 Discord 与核心团队讨论想法和更改,这样可以讨论实现细节并与现有路线图保持一致。请勿在未先与团队讨论提案的情况下提交 PR。
开发
前置要求
其他开发工具:
cargo install cargo-watch
cargo install sqlx-cli安装依赖:
pnpm i运行开发服务器
pnpm run dev这将启动后端和 Web 应用。空白数据库将从 dev_assets_seed 文件夹复制。
构建 Web 应用
仅构建 Web 应用:
cd packages/local-web
pnpm run build从源码构建(macOS)
- 运行
./local-build.sh - 使用
cd npx-cli && node bin/cli.js测试
环境变量
以下环境变量可在构建时或运行时配置:
| 变量 | 类型 | 默认值 | 说明 |
|---|---|---|---|
POSTHOG_API_KEY | 构建时 | 空 | PostHog 分析 API 密钥(为空则禁用分析功能) |
POSTHOG_API_ENDPOINT | 构建时 | 空 | PostHog 分析端点(为空则禁用分析功能) |
PORT | 运行时 | 自动分配 | 生产环境:服务器端口。开发环境:前端端口(后端使用 PORT+1) |
BACKEND_PORT | 运行时 | 0(自动分配) | 后端服务器端口(仅开发模式,覆盖 PORT+1) |
FRONTEND_PORT | 运行时 | 3000 | 前端开发服务器端口(仅开发模式,覆盖 PORT) |
HOST | 运行时 | 127.0.0.1 | 后端服务器主机 |
MCP_HOST | 运行时 | HOST | MCP 服务器连接主机(在 Windows 上使用 127.0.0.1 时使用 HOST=0.0.0.0) |
MCP_PORT | 运行时 | BACKEND_PORT | MCP 服务器连接端口 |
DISABLE_WORKTREE_CLEANUP | 运行时 | 未设置 | 禁用所有 git worktree 清理,包括孤立和工作区过期清理(用于调试) |
VK_ALLOWED_ORIGINS | 运行时 | 未设置 | 允许向后端 API 发起请求的来源 origins 列表,用逗号分隔(例如 https://my-vibekanban-frontend.com) |
VK_SHARED_API_BASE | 运行时 | 未设置 | 本地桌面应用使用的远程/云 API 基础 URL |
VK_SHARED_RELAY_API_BASE | 运行时 | 未设置 | 隧道模式连接使用的中继 API 基础 URL |
VK_TUNNEL | 运行时 | 未设置 | 设置后启用中继隧道模式(需要中继 API 基础 URL) |
构建时变量必须在执行 pnpm run build 时设置。运行时变量在应用程序启动时读取。
使用反向代理或自定义域名自托管
当在反向代理(如 nginx、Caddy、Traefik)后运行 Vibe Kanban,或使用自定义域名时,必须设置 VK_ALLOWED_ORIGINS 环境变量。否则浏览器的 Origin 请求头将与后端预期的主机不匹配,API 请求将被拒绝并返回 403 Forbidden 错误。
请将其设置为前端可访问的完整源站 URL:
# Single origin
VK_ALLOWED_ORIGINS=https://vk.example.com
# Multiple origins (comma-separated)
VK_ALLOWED_ORIGINS=https://vk.example.com,https://vk-staging.example.com远程部署
在远程服务器上运行 Vibe Kanban(如通过 systemctl、Docker 或云托管)时,您可以配置编辑器通过 SSH 打开项目:
- 通过隧道访问:使用 Cloudflare Tunnel、ngrok 或类似工具暴露 Web UI
- 在"设置 → 编辑器集成"中配置远程 SSH:
- 将远程 SSH 主机设置为您服务器的 hostname 或 IP
- 将远程 SSH 用户设置为您 SSH 用户名(可选)
- 前提条件:
- 从本地机器到远程服务器的 SSH 访问权限
- SSH 密钥已配置(无密码认证)
- VSCode Remote-SSH 扩展
配置完成后,"在 VSCode 中打开"按钮将生成类似 vscode://vscode-remote/ssh-remote+user@host/path 的 URL,在本地编辑器中打开并连接到远程服务器。
详见文档中的详细设置说明。
源码获取
获取代码
复制仓库地址、使用 GitHub CLI,或下载当前默认分支源码包。
GitHub Releases
v0.1.44-20260424091429
最新 GitHub Release 发布于 ,当前页面已同步版本入口、更新说明和可下载资产。
相关入口
近期 Release
v0.1.45
v0.1.45-20260919085201· Pre-release
This release is only available through npx [email protected] What's Changed bump copilot version to 1.0.83 by @anastasiya1155 in https://github.com/BloopAI/vibe-kanban/pull/3454 Add script to bump version locally by @anastasiya1155 in https://github.com/Bloop…
Release v0.1.44
v0.1.44-20260424091429What's Changed Pre-register execution log stores before streaming normalized logs (Vibe Kanban) by @stunningpixels in https://github.com/BloopAI/vibe-kanban/pull/3370 Bump Claude Code CLI pin to 2.1.119 (Vibe Kanban) by @stunningpixels in https://github.com/Bl…
- Vibe.Kanban_0.1.44_x64-setup.exe37.1 MB · 504 downloads
- vibe-kanban-v0.1.44-20260424091429.zip22.8 MB · 463 downloads
- Vibe.Kanban_0.1.44_aarch64.dmg48.9 MB · 364 downloads
- Vibe-Kanban-0.1.44-x86_64.msi53 MB · 273 downloads
Release v0.1.43
v0.1.43-20260417125614What's Changed Pin npm publish workflow to Node 22.22.1 (Vibe Kanban) by @stunningpixels in https://github.com/BloopAI/vibe-kanban/pull/3345 ci: replace Blacksmith runners with GitHub runners by @ggordonhall in https://github.com/BloopAI/vibe-kanban/pull/3336 …
- Vibe.Kanban_0.1.43_x64-setup.exe37.2 MB · 85 downloads
- Vibe.Kanban_0.1.43_aarch64.dmg49 MB · 71 downloads
- Vibe-Kanban-0.1.43-x86_64.msi53.1 MB · 68 downloads
- vibe-kanban-0.1.43.tgz14.3 KB · 32 downloads
Pre-release v0.1.42-20260410131124
v0.1.42-20260410131124bloop, the company behind Vibe Kanban is shutting down Read more: https://vibekanban.com/blog/shutdown ✅ Published to npm registry
- Vibe.Kanban_0.1.42_x64-setup.exe36.7 MB · 63 downloads
- Vibe-Kanban-0.1.42-x86_64.msi52.2 MB · 47 downloads
- Vibe.Kanban_0.1.42_aarch64.dmg48.3 MB · 47 downloads
- vibe-kanban-0.1.42.tgz14.3 KB · 33 downloads
Pre-release v0.1.41-20260403182044
v0.1.41-20260403182044· Pre-release
What's Changed fix: revert execution processes from Zustand store to React Context to fix conversation history leakage (Vibe Kanban) by @LSRCT in https://github.com/BloopAI/vibe-kanban/pull/3314 Align workspace session invalidation with host-scoped query keys …
- vibe-kanban-0.1.41.tgz14.3 KB · 86 downloads
- Vibe.Kanban_0.1.41_aarch64.dmg48.4 MB · 33 downloads
- Vibe.Kanban_0.1.41_x64-setup.exe36.6 MB · 30 downloads
- Vibe.Kanban_0.1.41_x64.dmg50.1 MB · 18 downloads
Pre-release v0.1.40-20260401153532
v0.1.40-20260401153532· Pre-release
What's Changed fix: copy patches/ directory in Dockerfile fe-builder stage by @NguyenMinh1912 in https://github.com/BloopAI/vibe-kanban/pull/3301 Emit git-style diff headers in concatenate_diff_hunks to prevent parser crashes (Vibe Kanban) by @LSRCT in https:/…
- vibe-kanban-0.1.40.tgz14.3 KB · 42 downloads
- Vibe-Kanban-0.1.39-aarch64.msi50.2 MB · 17 downloads
- Vibe.Kanban_0.1.40_aarch64.dmg48.4 MB · 17 downloads
- Vibe.Kanban_0.1.40_x64-setup.exe36.6 MB · 15 downloads
Pre-release v0.1.39-20260331145823
v0.1.39-20260331145823· Pre-release
What's Changed perf: replace TanStack Virtual with Pierre Virtualizer, optimize diff viewer for 300+ file PRs by @vdmkotai in https://github.com/BloopAI/vibe-kanban/pull/3248 fix: make live diff stream accurate and self-correcting by @abcpro1 in https://github…
- vibe-kanban-v0.1.39-20260331145823.zip22.9 MB · 13 downloads
- Vibe.Kanban_0.1.39_x64-setup.exe36.5 MB · 13 downloads
- Vibe.Kanban_0.1.39_x64.dmg50 MB · 9 downloads
- vibe-kanban-0.1.39.tgz14.3 KB · 8 downloads
Pre-release v0.1.37-20260327170022
v0.1.37-20260327170022· Pre-release
What's Changed bump codex by @ggordonhall in https://github.com/BloopAI/vibe-kanban/pull/3264 Add WebRTC direct tunneling with relay fallback by @LSRCT in https://github.com/BloopAI/vibe-kanban/pull/3139 Full Changelog: https://github.com/BloopAI/vibe-kanban/c…
- Vibe.Kanban_0.1.37_aarch64.dmg48.3 MB · 27 downloads
- Vibe.Kanban_0.1.37_x64-setup.exe36.5 MB · 21 downloads
- Vibe-Kanban-0.1.37-x86_64.msi52 MB · 19 downloads
- vibe-kanban-v0.1.37-20260327170022.zip22.8 MB · 13 downloads
下载资产
- Vibe.Kanban_0.1.44_x64-setup.exe 37.1 MB · 504 downloads
- vibe-kanban-v0.1.44-20260424091429.zip 22.8 MB · 463 downloads
- Vibe.Kanban_0.1.44_aarch64.dmg 48.9 MB · 364 downloads
- Vibe-Kanban-0.1.44-x86_64.msi 53 MB · 273 downloads
- Vibe.Kanban_0.1.43_x64-setup.exe 37.2 MB · 267 downloads
- Vibe-Kanban-0.1.43-x86_64.msi 53.1 MB · 181 downloads
继续比较
相关资源
同专题 · 编程开发 · 技能 / 规则包
Superpowers
Superpowers 是一个 GitHub 开源项目。一种自主能力技能框架和软件开发方法论。
同专题 · 编程开发 · 脚本
AIDER
AIDER 是一个 GitHub 开源项目。aider 是一款在终端中使用的 AI 结对编程工具。
同专题 · 编程开发 · 软件应用
Cursor
Cursor 是面向开发者的 AI IDE,突出代码理解、生成、重构和基于项目上下文的任务协作。
同场景 · 编程开发 · 技能 / 规则包
Boyue · 博约开发法
面向 AI 编程与 Coding Agent 的轻量决策治理 Skill,用 Commitment Boundary、Ownership Boundary 和风险自适应验证,避免‘能做’自动变成‘应该做、应该长期维护’。
社区讨论
讨论与评分
先沉淀真实使用经验,评分作为可选信号补充。