vibekanban

Orchestrate AI coding with Vibe Kanban: tasks, review, sessions, workspaces, and isolated git worktrees. Use when managing AI-generated code in isolated environments, planning coding tasks, reviewing AI output, or configuring Vibe Kanban workspaces and agents. Keywords: Vibe Kanban, AI orchestration, worktrees.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "vibekanban" with this command: npx skills add itechmeat/llm-code/itechmeat-llm-code-vibekanban

Vibe Kanban

Orchestration platform for AI coding agents. Plan, review, and manage AI-generated code in isolated git worktrees.

Links

Quick Navigation

TopicReference
Installation & Setupgetting-started.md
Workspaces (Beta)workspaces.md
Projects, Tasks, Reviewcore-features.md
Subtasks, Attempts, Conflictsadvanced-features.md
Settings, Agents, Tagsconfiguration.md
GitHub, Azure, VSCode, MCPintegrations.md
Common Issuestroubleshooting.md
Best Practicesvibe-guide.md

Quick Start

Install & Run

npx vibe-kanban

npx vibe-kanban remains the canonical cross-platform launch path. As of v0.1.30, the packaged desktop app is moving onto a Tauri v2 shell with built-in auto-update behavior for installed desktop builds.

Release Highlights (0.1.15 → 0.1.28)

  • MCP server expanded: richer issue retrieval (get_issue includes tags/relationships/sub-issues) and new workspace/relationship/tag tools (e.g. update_workspace, relationship + tag mutations).
  • Frontend routing migrated to TanStack Router (navigation/URLs may differ from older screenshots).
  • Reliability improvements around Electric fallback and cancellation/tab-switch handling.
  • Review/diff UI improvements (annotation width fixes for horizontal scrolling).
  • Remote Access: pair a host via a code and access its workspaces from another device.
  • Workspace actions became safer around spin-off/duplicate flows by preserving branch and executor configuration more reliably.
  • Active agent runs can now accept image attachments, which is useful when feeding UI state, screenshots, or design feedback back into an in-progress session.
  • Transport reliability improvements: better relay disconnect handling and signing-session refresh.
  • Claude: bumped the default Sonnet model to 4.6.
  • Worktrees: preserve worktree path across cleanup to maintain Claude Code session continuity.
  • Workspaces: improved workspace logs capture (root execution-process provider).
  • Mobile UI fixes and Remote Access docs refresh.

Release Highlights (0.1.30)

  • Desktop packaging now wraps the app in Tauri v2, which introduces a packaged-app auto-updater path alongside the existing npx vibe-kanban launch flow.
  • First-turn UX is clearer when setup scripts run in parallel, reducing confusion during initial workspace/session bootstrap.

Opens browser automatically. Use PORT=8080 npx vibe-kanban for fixed port.

Prerequisites

  • Node.js LTS
  • Authenticated coding agent (Claude Code, Codex, Gemini, etc.)
  • GitHub CLI (gh) for PR integration

First Steps

  1. Authenticate with a coding agent externally
  2. Run npx vibe-kanban
  3. Complete setup dialogs
  4. Create project from existing git repo
  5. Add tasks and start executing

Two UI Modes

Classic Kanban (Tasks)

Traditional board with columns: To do → In Progress → In Review → Done

Updates in v0.1.7:

  • Per-project Kanban views and a refreshed filter dialog
  • Sub-issues and Workspaces visibility toggles moved to the filter bar

Workspaces (Beta) — NEW

Modern interface with:

  • Sessions: Multiple conversation threads per workspace
  • Command Bar: Cmd/Ctrl + K for all actions
  • Workspace Notes: Document requirements and decisions
  • Multi-repo support: Work across multiple repositories
  • Integrated Terminal: PTY-backed terminal with shell support
  • Session Dropdown: Agent icons displayed next to session titles
  • Sidebar filters: Filter by project and PR status (including “No project”)
  • Needs Attention: Includes workspaces with unseen activity

Switch between modes via Command Bar → "Open in Old UI"

Core Concepts

Git Worktrees

Each task/workspace runs in an isolated git worktree:

  • Agents can't interfere with each other
  • Safe from main branch changes
  • Automatic cleanup after completion

Task Flow (Classic)

To do → In Progress → In Review → Done
  • To do: Task created
  • In Progress: Agent executing
  • In Review: Agent finished, awaiting review
  • Done: Merged or PR merged

Task Attempts

One task can have multiple attempts:

  • Different agent
  • Different branch
  • Fresh conversation context

Supported Agents

AgentVariants
Claude CodeDEFAULT, PLAN, ROUTER
CodexDEFAULT, HIGH
GeminiDEFAULT, FLASH
GitHub CopilotDEFAULT
AmpDEFAULT
Cursor AgentDEFAULT
OpenCodeDEFAULT
Qwen CodeDEFAULT
DroidDEFAULT
AntigravityDEFAULT

Select agent when creating task attempt or workspace session.

Project Configuration

Setup Scripts

Run before agent execution (e.g., npm install, cargo build).

Dev Server Scripts

Start dev server for preview (e.g., npm run dev).

Cleanup Scripts

Run after agent finishes (e.g., npm run format).

Copy Files

Files to copy from main project to worktree (e.g., .env).

Task Creation

Press C or click + to create task

Options:

  • Create Task: Add to board only
  • Create & Start: Add and immediately execute with default agent

Task Tags

Reusable snippets via @mention:

  • Type @ in description
  • Select tag from dropdown
  • Content inserted at cursor

Task description editor supports markdown paste and preserves inline code formatting.

Code Review

  1. Task moves to "In Review" when agent finishes
  2. Click Diff icon to view changes
  3. Click + on any line to add comment
  4. Submit all comments together
  5. Task returns to "In Progress" for fixes

Git Operations

ActionDescription
MergeMerge to target branch
Create PROpen PR on GitHub/Azure
RebaseUpdate with target branch changes
PushPush additional changes to PR

Preview Mode

Test web apps without leaving Vibe Kanban:

  1. Configure dev server script in project settings
  2. Click "Start Dev Server" in Preview tab
  3. View app in embedded iframe
  4. Install vibe-kanban-web-companion for component selection

Keyboard Shortcuts

KeyAction
CCreate task
⌘/Ctrl + EnterSubmit/Send message
k/jNavigate up/down in column
h/lNavigate left/right between columns
EnterOpen task
⌘/Ctrl + SFocus search

MCP Integration

Add MCP Servers to Agents

Settings → MCP Servers → Select agent → Add servers

Vibe Kanban MCP Server

Expose Vibe Kanban to external MCP clients:

{
  "mcpServers": {
    "vibe_kanban": {
      "command": "npx",
      "args": ["-y", "vibe-kanban@latest", "--mcp"]
    }
  }
}

MCP tools include: list_workspaces, update_workspace, list_projects, list_issues, get_issue, update_issue, plus tag and relationship helpers.

Critical Safety Note

Vibe Kanban runs agents with --dangerously-skip-permissions/--yolo by default for autonomous operation. Each task runs in isolated worktree, but agents can still perform system-level actions. Review work and keep backups.

Critical Prohibitions

  • Do not skip agent authentication before first use
  • Do not ignore worktree isolation benefits
  • Do not forget to configure setup/cleanup scripts for dependencies
  • Do not mix multiple agents on same task without new attempts
  • Do not ignore rebase conflicts — resolve or abort

Links

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

Coding

react-testing-library

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

social-writer

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

commits

No summary provided by upstream source.

Repository SourceNeeds Review
Coding

mantine-dev

No summary provided by upstream source.

Repository SourceNeeds Review