Update Vibe Kanban setup and scripts

- 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.
This commit is contained in:
2025-12-31 04:36:20 +07:00
parent 2e0baa45c0
commit ab08e0241b
13 changed files with 1535 additions and 35 deletions

View File

@@ -0,0 +1,40 @@
# 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