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.
What this skill does
# Vibe Kanban Orchestration platform for AI coding agents. Plan, review, and manage AI-generated code in isolated git worktrees. ## Links - [Documentation](https://www.vibekanban.com/docs) - [Releases](https://github.com/BloopAI/vibe-kanban/releases) - [GitHub](https://github.com/BloopAI/vibe-kanban) ## Quick Navigation | Topic | Reference | | ----------------------------- | ------------------------------------------------------- | | Installation & Setup | [getting-started.md](references/getting-started.md) | | **Workspaces (Beta)** | [workspaces.md](references/workspaces.md) | | Projects, Tasks, Review | [core-features.md](references/core-features.md) | | Subtasks, Attempts, Conflicts | [advanced-features.md](references/advanced-features.md) | | Settings, Agents, Tags | [configuration.md](references/configuration.md) | | GitHub, Azure, VSCode, MCP | [integrations.md](references/integrations.md) | | Common Issues | [troubleshooting.md](references/troubleshooting.md) | | Best Practices | [vibe-guide.md](references/vibe-guide.md) | ## Quick Start ### Install & Run ```bash 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.44) - Claude Code CLI pin moved forward again and the Codex executor surface was refreshed around Codex `0.124.0`. - Legacy project routes are being sunset to an export-only page, so deep links or screenshots from older project pages may no longer match the current UX. - Execution logs are pre-registered before normalized streaming begins, which improves log availability during live runs. - Model selector ordering is now alphabetical, which changes some small but visible operator workflows in setup/review dialogs. ## Release Highlights (0.1.37 → 0.1.43) - Executor surface refreshed with newer pinned versions for Codex, OpenCode, and Claude Code. - Claude Code adds an `xhigh effort` variant. - Cross-compile/runtime fixes improve Windows/MSVC and musl build reliability. ## Release Highlights (0.1.31 → 0.1.32) - Desktop/Tauri: Windows desktop app support lands, Tauri notifications are available, and desktop zoom behavior is reworked around font-size scaling. - Workspaces: sessions can be renamed and auto-named; draft workspace-creation preference is persisted. - Attachments: arbitrary attachments are supported across workspaces and issues. - MCP: issue filters are available through the MCP surface. - Remote/admin: remote audit logging is added, short issue IDs become org-scoped, and analytics are disabled when PostHog config is blank. - Editor UX: WYSIWYG typeahead, toolbar, and issue-description editing flows are improved. 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 | Agent | Variants | | -------------- | ---------------------------- | | Claude Code | DEFAULT, PLAN, ROUTER, XHIGH | | Codex | DEFAULT, HIGH | | Gemini | DEFAULT, FLASH | | GitHub Copilot | DEFAULT | | Amp | DEFAULT | | Cursor Agent | DEFAULT | | OpenCode | DEFAULT | | Qwen Code | DEFAULT | | Droid | DEFAULT | | Antigravity | DEFAULT | 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 | Action | Description | | --------- | --------------------------------- | | Merge | Merge to target branch | | Create PR | Open PR on GitHub/Azure | | Rebase | Update with target branch changes |
Related in Code Review
gstack
IncludedFast headless browser for QA testing and site dogfooding. Navigate pages, interact with elements, verify state, diff before/after, take annotated screenshots, test responsive layouts, forms, uploads, dialogs, and capture bug evidence. Use when asked to open or test a site, verify a deployment, dogfood a user flow, or file a bug with screenshots. (gstack)
startup-due-diligence
IncludedLegal due diligence review for seed-stage and Series A startups (US, Delaware C-Corp focus). Supports both investor and founder perspectives. Capabilities include: (1) Interactive document review and issue spotting; (2) Document request list generation; (3) Cap table and SAFE/convertible note analysis; (4) Red flag identification with severity ratings; (5) Diligence report generation. TRIGGERS: due diligence, DD, startup investment, cap table review, Series A, seed round, investor diligence, legal review startup, SAFE analysis, convertible note, 409A, founder vesting.
interview-master
IncludedThis skill should be used when the user asks to "generate interview questions", "prepare for interview", "optimize resume", "conduct mock interview", "analyze git commits for resume", "generate resume from code", "review my resume", or mentions interview preparation, career assistance, or extracting project experience from git history. Provides comprehensive interview and career development guidance for both job seekers and interviewers.
fix-issue
IncludedFixes GitHub issues using parallel analysis agents for root cause investigation, code exploration, and regression detection. Reads issue context from gh CLI, searches codebase and memory for related patterns, generates a fix with tests, and links the resolution back to the issue via PR. Includes prevention analysis to avoid recurrence. Use when debugging errors, resolving regressions, fixing bugs, or triaging issues.
sf-apex
IncludedGenerates and reviews Salesforce Apex code with 150-point scoring. TRIGGER when: user writes, reviews, or fixes Apex classes, triggers, test classes, batch/queueable/schedulable jobs, or touches .cls/.trigger files. DO NOT TRIGGER when: LWC JavaScript (use sf-lwc), Flow XML (use sf-flow), SOQL-only queries (use sf-soql), or non-Salesforce code.
swift-development
IncludedComprehensive Swift development for building, testing, and deploying iOS/macOS applications. Use when Claude needs to: (1) Build Swift packages or Xcode projects from command line, (2) Run tests with XCTest or Swift Testing framework, (3) Manage iOS simulators with simctl, (4) Handle code signing, provisioning profiles, and app distribution, (5) Format or lint Swift code with SwiftFormat/SwiftLint, (6) Work with Swift Package Manager (SPM), (7) Implement Swift 6 concurrency patterns (async/await, actors, Sendable), (8) Create SwiftUI views with MVVM architecture, (9) Set up Core Data or SwiftData persistence, or any other Swift/iOS/macOS development tasks.