- Added new entries to .gitignore for environment files and dynamically generated Docker Compose files. - Updated documentation to reflect the new path for the Vibe Kanban dev server script. - Enhanced task composition scripts to extract TASK_SLOT from TASK_ID, ensuring unique Orleans ports and preventing conflicts. - Removed the old vibe-dev-server script, consolidating functionality into the new structure.
1.0 KiB
1.0 KiB
vibe-kanban
Quick reference for Vibe Kanban MCP interactions.
Available Projects
gmx-interface: 574c1123-facf-4a8d-a6dd-1789db369fbfkaigen-web: cd0907b5-0933-4f6c-9516-aac4d5d360bcmanaging-apps: 1a4fdbff-8b23-49d5-9953-2476846cbcc2
Common Operations
List Tasks
List all tasks in a project:
- Use
list_taskswithproject_id: "1a4fdbff-8b23-49d5-9953-2476846cbcc2"for managing-apps
Create Task
Create new task:
- Use
create_taskwithproject_idandtitle(description optional)
Update Task
Update task status/title/description:
- Use
update_taskwithtask_idand optionalstatus,title,description - Statuses:
todo,inprogress,inreview,done,cancelled
Get Task Details
Get full task info:
- Use
get_taskwithtask_id
Delete Task
Remove task:
- Use
delete_taskwithtask_id
Notes
- Always pass
project_idortask_idwhere required - Use
list_projectsto get project IDs - Use
list_tasksto get task IDs - See
docs/VIBE_KANBAN_QUICK_START.mdfor full documentation