πŸŽ‰ v0.1.13 out now - released 2 days ago!πŸ’« "Biggest increase in productivity since Cursor" - Luke HarriesπŸš€ "This project is underrated. I've found it to be useful and fun" - Hamel HusainπŸŽ‰ v0.1.13 out now - released 2 days ago!πŸ”₯ Latest features available in v0.1.13⭐ Star us on GitHub to stay updatedπŸ’« "Biggest increase in productivity since Cursor" - Luke HarriesπŸŽ‰ v0.1.13 out now - released 2 days ago!πŸš€ "This project is underrated. I've found it to be useful and fun" - Hamel HusainπŸ”₯ Latest features available in v0.1.13⭐ Star us on GitHub to stay updatedπŸŽ‰ v0.1.13 out now - released 2 days ago!πŸ’« "Biggest increase in productivity since Cursor" - Luke HarriesπŸš€ "This project is underrated. I've found it to be useful and fun" - Hamel HusainπŸ”₯ Latest features available in v0.1.13πŸŽ‰ v0.1.13 out now - released 2 days ago!⭐ Star us on GitHub to stay updatedπŸ’« "Biggest increase in productivity since Cursor" - Luke HarriesπŸš€ "This project is underrated. I've found it to be useful and fun" - Hamel HusainπŸŽ‰ v0.1.13 out now - released 2 days ago!
Upcoming Event

Ultimate Agents Hackathon

Sat, Oct 25 β€’ 9 AM–9 PM ETβ€’Betaworks NYCβ€’$5k+ prizes

Move faster with
Claude Code

Vibe Kanban lets you run coding agents in parallel without conflicts, and perform code review through our diff tool. Now you can focus on planning and quality instead of watching terminal logs.

Install Node.js 18+ then run:

$npx vibe-kanban
Vibe Kanban task preview interfaceVibe Kanban task preview interface
Vibe kanban is the biggest increase I've had in productivity since cursor.
Luke Harries profile

Luke Harries

Growth Lead at Eleven Labs

Choose Your Coding Agent

Works seamlessly with all your favorite AI coding agents.

Run local coding agents in parallel

Instead of staring at coding agent logs you can focus on planning and reviewing work while your coding agents work in the background.

Give agents their own workspace

Agents work in separate branches and workspaces on your machine (powered by git worktrees), so they never step on each other's toes during parallel execution. Safely merge changes back when tasks complete.

Review agent changes like human code

Built-in diffs let you inspect, edit, and approve agent work just like any pull request.

Stay ahead of the curve

Thousands of top developers use Vibe Kanban daily to orchestrate AI coding agents

jparrill/3dShelf
2d
Test: E2E Playwright tests (vibe-kanban)
## Overview This PR implements a comprehensive end-to-end test suite using Playwright and enhances project management functionality with significant testing infrastructure improvements. ## Major Changes Made ### πŸ§ͺ E2E Test Suite Implementation - **Complete Playwright E2E test infrastructure** with 25+ comprehensive test cases - **Comprehensive workflow testing** covering project creation, file upload, conflict resolution - **Automated test environment** with database management and service orchestration - **Test helpers and utilities** for robust test execution and file management - **Multi-scenario testing** including accessibility, performance, and error handling ### πŸ”§ Project Management Enhancements - **Project rename and delete functionality** with proper modal interfaces - **Project options menu** with consistent UI/UX alignment - **Enhanced project cards** with management capabilities - **Backend API extensions** for project CRUD operations - **Comprehensive unit tests** for all new project management components ### πŸ› οΈ Testing Infrastructure - **Makefile automation** for streamlined E2E test execution (`make test-e2e-auto`) - **Database cleanup utilities** for consistent test environments - **Service management scripts** for automated test pipeline - **Test result reporting** and artifact management - **CI/CD integration** with proper test isolation ### πŸ› Post-Rebase Stability Fixes - **Origin/main integration** with complete compatibility resolution - **Test resilience improvements** for CI/CD environments - **Timeout and race condition fixes** in complex workflow tests - **File creation and management** optimizations for test reliability - **Accessibility test optimizations** to prevent false failures ## Key Technical Implementation Details ### Test Coverage Achieved - **Homepage functionality**: Navigation, search, project listing, responsive design - **Project creation**: With/without files, validation, error handling - **File upload workflows**: New files, conflict resolution (skip/overwrite/rename) - **Project management**: Rename, delete, options menu interaction - **Comprehensive workflows**: End-to-end user journeys - **Accessibility & Performance**: Screen reader compatibility, loading states ### Test Execution Results - βœ… **24 tests passing** consistently - ⏸️ **Strategic test skipping** for CI/CD optimization - 🚫 **0 test failures** after complete stabilization - πŸ”„ **Automated service management** with cleanup ### Architecture Improvements - **Modular test helpers** with reusable components - **Robust error handling** in both tests and application code - **Clean separation of concerns** between test utilities and application logic - **Comprehensive fixture management** for test data ## Testing & Validation The entire test suite runs automatically with `make test-e2e-auto` which: 1. Clears database for fresh test environment 2. Starts backend and frontend services 3. Executes complete E2E test suite 4. Provides detailed reporting 5. Cleanly shuts down all services All tests pass consistently across different environments and the project management features are fully functional with comprehensive test coverage. --- This PR was written using [Vibe Kanban](https://vibekanban.com)
jparrill
jparrill
Contributor
merged
jparrill/3dShelf
2d
Feature: Delete Project (vibe-kanban)
## Summary This PR implements comprehensive project management functionality, adding the ability to rename and delete projects through a gear icon options menu. The implementation includes both backend API endpoints and frontend UI components with comprehensive testing coverage. ### Key Changes Made **Backend (Go)**: - Added `UpdateProject` endpoint (PUT `/api/projects/:id`) to handle project renaming with filesystem directory operations - Added `DeleteProject` endpoint (DELETE `/api/projects/:id`) to permanently remove projects and their files from both database and filesystem - Implemented proper error handling with database transaction rollbacks and filesystem cleanup - Added comprehensive unit tests achieving 100% coverage on new handlers **Frontend (React/TypeScript)**: - Created `ProjectOptionsMenu` component with gear icon that provides access to rename and delete actions - Implemented `RenameProjectModal` with form validation and real-time feedback - Implemented `DeleteProjectModal` with clear warnings about irreversible filesystem operations - Enhanced `ProjectCard` to integrate the new options menu with proper event handling - Added API client functions for project update and deletion operations - Integrated modals into main project listing page with state management **Testing**: - Added 88 comprehensive unit tests covering all new functionality - Achieved 100% test coverage on all new components and handlers - Improved overall project test coverage from 19.6% to 31.56% - Fixed ChakraUI modal testing issues with proper mocking and async handling ### Why These Changes Were Made These changes fulfill the user requirement to implement "Feature: Borrar proyecto" (Delete Project feature) with specific needs: - Projects needed a management interface accessible via gear icon - Users required the ability to rename projects with filesystem directory updates - Users needed safe deletion functionality with clear warnings about irreversible actions - All operations needed to properly synchronize database and filesystem states ### Important Implementation Details - **Filesystem Safety**: All directory operations include proper validation and error handling to prevent data loss - **Database Consistency**: Updates use transactions with rollback capabilities to maintain data integrity - **UI/UX**: The gear icon precisely matches the existing status icon alignment and sizing - **Soft Deletes**: Backend uses GORM's soft delete functionality while also removing physical files - **Event Propagation**: Menu interactions properly prevent parent click events to avoid unintended navigation - **Toast Notifications**: Users receive clear feedback for all operations (success, error, validation) - **Loading States**: All async operations show appropriate loading indicators and disable interactions This PR was written using Vibe Kanban
jparrill
jparrill
Contributor
merged
jparrill/3dShelf
2d
Test: E2E Playwright tests (vibe-kanban)
## Overview This PR implements a comprehensive end-to-end test suite using Playwright and enhances project management functionality with significant testing infrastructure improvements. ## Major Changes Made ### πŸ§ͺ E2E Test Suite Implementation - **Complete Playwright E2E test infrastructure** with 25+ comprehensive test cases - **Comprehensive workflow testing** covering project creation, file upload, conflict resolution - **Automated test environment** with database management and service orchestration - **Test helpers and utilities** for robust test execution and file management - **Multi-scenario testing** including accessibility, performance, and error handling ### πŸ”§ Project Management Enhancements - **Project rename and delete functionality** with proper modal interfaces - **Project options menu** with consistent UI/UX alignment - **Enhanced project cards** with management capabilities - **Backend API extensions** for project CRUD operations - **Comprehensive unit tests** for all new project management components ### πŸ› οΈ Testing Infrastructure - **Makefile automation** for streamlined E2E test execution (`make test-e2e-auto`) - **Database cleanup utilities** for consistent test environments - **Service management scripts** for automated test pipeline - **Test result reporting** and artifact management - **CI/CD integration** with proper test isolation ### πŸ› Post-Rebase Stability Fixes - **Origin/main integration** with complete compatibility resolution - **Test resilience improvements** for CI/CD environments - **Timeout and race condition fixes** in complex workflow tests - **File creation and management** optimizations for test reliability - **Accessibility test optimizations** to prevent false failures ## Key Technical Implementation Details ### Test Coverage Achieved - **Homepage functionality**: Navigation, search, project listing, responsive design - **Project creation**: With/without files, validation, error handling - **File upload workflows**: New files, conflict resolution (skip/overwrite/rename) - **Project management**: Rename, delete, options menu interaction - **Comprehensive workflows**: End-to-end user journeys - **Accessibility & Performance**: Screen reader compatibility, loading states ### Test Execution Results - βœ… **24 tests passing** consistently - ⏸️ **Strategic test skipping** for CI/CD optimization - 🚫 **0 test failures** after complete stabilization - πŸ”„ **Automated service management** with cleanup ### Architecture Improvements - **Modular test helpers** with reusable components - **Robust error handling** in both tests and application code - **Clean separation of concerns** between test utilities and application logic - **Comprehensive fixture management** for test data ## Testing & Validation The entire test suite runs automatically with `make test-e2e-auto` which: 1. Clears database for fresh test environment 2. Starts backend and frontend services 3. Executes complete E2E test suite 4. Provides detailed reporting 5. Cleanly shuts down all services All tests pass consistently across different environments and the project management features are fully functional with comprehensive test coverage. --- This PR was written using [Vibe Kanban](https://vibekanban.com)
jparrill
jparrill
Contributor
merged
jparrill/3dShelf
2d
Feature: Delete Project (vibe-kanban)
## Summary This PR implements comprehensive project management functionality, adding the ability to rename and delete projects through a gear icon options menu. The implementation includes both backend API endpoints and frontend UI components with comprehensive testing coverage. ### Key Changes Made **Backend (Go)**: - Added `UpdateProject` endpoint (PUT `/api/projects/:id`) to handle project renaming with filesystem directory operations - Added `DeleteProject` endpoint (DELETE `/api/projects/:id`) to permanently remove projects and their files from both database and filesystem - Implemented proper error handling with database transaction rollbacks and filesystem cleanup - Added comprehensive unit tests achieving 100% coverage on new handlers **Frontend (React/TypeScript)**: - Created `ProjectOptionsMenu` component with gear icon that provides access to rename and delete actions - Implemented `RenameProjectModal` with form validation and real-time feedback - Implemented `DeleteProjectModal` with clear warnings about irreversible filesystem operations - Enhanced `ProjectCard` to integrate the new options menu with proper event handling - Added API client functions for project update and deletion operations - Integrated modals into main project listing page with state management **Testing**: - Added 88 comprehensive unit tests covering all new functionality - Achieved 100% test coverage on all new components and handlers - Improved overall project test coverage from 19.6% to 31.56% - Fixed ChakraUI modal testing issues with proper mocking and async handling ### Why These Changes Were Made These changes fulfill the user requirement to implement "Feature: Borrar proyecto" (Delete Project feature) with specific needs: - Projects needed a management interface accessible via gear icon - Users required the ability to rename projects with filesystem directory updates - Users needed safe deletion functionality with clear warnings about irreversible actions - All operations needed to properly synchronize database and filesystem states ### Important Implementation Details - **Filesystem Safety**: All directory operations include proper validation and error handling to prevent data loss - **Database Consistency**: Updates use transactions with rollback capabilities to maintain data integrity - **UI/UX**: The gear icon precisely matches the existing status icon alignment and sizing - **Soft Deletes**: Backend uses GORM's soft delete functionality while also removing physical files - **Event Propagation**: Menu interactions properly prevent parent click events to avoid unintended navigation - **Toast Notifications**: Users receive clear feedback for all operations (success, error, validation) - **Loading States**: All async operations show appropriate loading indicators and disable interactions This PR was written using Vibe Kanban
jparrill
jparrill
Contributor
merged

Create tasks from other apps

Connect your favorite MCP client like Claude Desktop to access Vibe Kanban's capabilities directly from your personal AI assistant and extend your workflow beyond the interface.

This project is underrated. I've found it to be useful and fun.
Hamel Husain profile

Hamel Husain

Leading AI Consultant, 20 Years of Experience

Work from your IDE

Monitor agents, interact with them, perform code review, and see running processes directly in your IDE.

Motivation

Coding agents are reliable enough to be the default: We've built and tested coding agents for years and realised recently that reliability crossed an invisible threshold that means we now prefer starting most tasks with coding agents.

Coding agents are going to get much better: Coding agents have improved rapidly, and we expect this trend to continue. Imagine that in six months, 50% of the current failure modes of coding agents will get fixed, and six months after that another 50%. What will we (engineers) be spending our time on in that world? What tools would help us do that work most efficiently?

The SOTA will change: Foundational model labs and application layer startups will continuously leap-frog each other to build state-of-the-art coding agents over the next 12m+. You shouldn't have to change your workflow or behaviour to be able to try out different coding agents.

FAQs

Common questions about Vibe Kanban and how to get the most out of your AI coding agents

Yes, Vibe Kanban runs locally on your machine and doesn't send your code to external servers.
Vibe Kanban supports a wide range of coding agents including Claude Code, Gemini CLI, Cursor CLI, Amp, OpenAI Codex, Qwen Code, Opencode, and GitHub Copilot. You can find the complete list of supported agents in our documentation at vibekanban.com/docs. You can use multiple agents simultaneously and switch between them for different tasks.
Vibe Kanban itself is free and open source. You only pay for the underlying AI services (like Claude Code, OpenAI Codex, etc.) that you choose to use with your agents. There are no additional fees or subscriptions for using Vibe Kanban.
Absolutely! One of Vibe Kanban's key features is parallel execution. You can run multiple coding tasks simultaneously across different agents and projects. Each task runs in its own git worktree on your machine.
The VS Code extension brings the task view into your IDE. Search for 'Vibe Kanban' in the VS Code marketplace and it will automatically connect to your local Vibe Kanban instance.
MCP (Model Context Protocol) works with Vibe Kanban in two ways: First, you can connect MCP servers to your coding agents so they can access external resources and tools. Second, Vibe Kanban itself exposes an MCP server that you can connect to from third-party MCP clients like Claude Desktop, allowing you to seamlessly create tasks from third-party clients.
Yes! Vibe Kanban allows you to create reusable task templates to standardise your development processes. You can define templates for common tasks like bug fixes, feature implementations, or refactoring, which helps boost team productivity and consistency.
Yes, Vibe Kanban has seamless GitHub integration. It can automatically create pull requests after task completion, handle rebases and merges with one-click operations, and maintain clean git history. This makes it easy to incorporate AI-assisted development into your existing workflow.
Vibe Kanban provides real-time monitoring and control over agent execution. You can pause, resume, or stop agents at any time. The system also provides detailed logs and step-by-step visibility, making it easy to understand what went wrong and intervene when necessary.

Ready to get started?

Start managing your AI coding agents with Vibe Kanban.

Install Node.js 18+ then run:

$npx vibe-kanban