- 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.
41 lines
1.0 KiB
Markdown
41 lines
1.0 KiB
Markdown
# vibe-kanban
|
|
|
|
Quick reference for Vibe Kanban MCP interactions.
|
|
|
|
## Available Projects
|
|
|
|
- `gmx-interface`: 574c1123-facf-4a8d-a6dd-1789db369fbf
|
|
- `kaigen-web`: cd0907b5-0933-4f6c-9516-aac4d5d360bc
|
|
- `managing-apps`: 1a4fdbff-8b23-49d5-9953-2476846cbcc2
|
|
|
|
## Common Operations
|
|
|
|
### List Tasks
|
|
List all tasks in a project:
|
|
- Use `list_tasks` with `project_id: "1a4fdbff-8b23-49d5-9953-2476846cbcc2"` for managing-apps
|
|
|
|
### Create Task
|
|
Create new task:
|
|
- Use `create_task` with `project_id` and `title` (description optional)
|
|
|
|
### Update Task
|
|
Update task status/title/description:
|
|
- Use `update_task` with `task_id` and optional `status`, `title`, `description`
|
|
- Statuses: `todo`, `inprogress`, `inreview`, `done`, `cancelled`
|
|
|
|
### Get Task Details
|
|
Get full task info:
|
|
- Use `get_task` with `task_id`
|
|
|
|
### Delete Task
|
|
Remove task:
|
|
- Use `delete_task` with `task_id`
|
|
|
|
## Notes
|
|
|
|
- Always pass `project_id` or `task_id` where required
|
|
- Use `list_projects` to get project IDs
|
|
- Use `list_tasks` to get task IDs
|
|
- See `docs/VIBE_KANBAN_QUICK_START.md` for full documentation
|
|
|