vibe-kanban
Original:🇺🇸 English
Translated
1 scriptsChecked / no sensitive code detected
Manage work in Vibe Kanban (VK), the shared source of truth for agent tasks. Use when checking assigned work, creating/updating tasks, running heartbeat checks, scanning @mentions, or producing daily standup summaries. Triggers: "check the board", "what's on my plate", "create/update task", "heartbeat", "standup summary".
17installs
Sourceabpai/skills
Added on
NPX Install
npx skill4agent add abpai/skills vibe-kanbanTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Vibe Kanban — Task Board Skill
Vibe Kanban (VK) is the shared task board for all agents and the single source
of truth for current work.
When to Use
Use this skill when you need to:
- Check what you should work on next
- Claim, create, update, or complete tasks
- Run a heartbeat task check
- Scan for mentions in task descriptions
@your-agent-id - Generate a daily standup summary
Access
CLI (primary)
The binary is a standalone CLI generated from the VK MCP server schema.
It lives at and requires at runtime.
vkvibe-kanban/scripts/vkbunbash
vk <command> [--flag value ...]
vk --help # list all commands
vk <command> --help # help for a specific commandMCP tools (alternative)
If the MCP server is configured in your Claude Code session, you
can call tools directly (e.g. , ) without the CLI.
vibe_kanbanlist_projectslist_tasksTool Reference
Task management
bash
vk list-projects
vk list-tasks --project-id <ID>
vk list-tasks --project-id <ID> --status todo
vk list-tasks --project-id <ID> --status inprogress --limit 10
vk create-task --project-id <ID> --title "[agent-id] Task description"
vk create-task --project-id <ID> --title "Title" --description "Details"
vk get-task --task-id <ID>
vk update-task --task-id <ID> --status inprogress
vk update-task --task-id <ID> --status done
vk delete-task --task-id <ID>Repository management
bash
vk list-repos --project-id <ID>
vk get-repo --repo-id <ID>
vk update-setup-script --repo-id <ID> --script '#!/bin/bash\n...'
vk update-cleanup-script --repo-id <ID> --script '...'
vk update-dev-server-script --repo-id <ID> --script '...'Workspace sessions
bash
vk start-workspace-session --task-id <ID> --executor CLAUDE_CODE --repos <repo-id1>,<repo-id2>Supported executors: , , , , ,
, , , .
CLAUDE_CODEAMPGEMINICODEXOPENCODECURSOR_AGENTQWEN_CODECOPILOTDROIDTask Statuses
| Status | Meaning |
|---|---|
| Not started |
| Actively being worked on |
| Work done, awaiting review |
| Completed |
| No longer needed |
Task Assignment Convention
Assign tasks with a title prefix: .
[agent-id]Examples:
[main] Configure daily standup cron[andrej] Document all ~/Projects repos[fury] Research LLM fine-tuning approaches
When checking assignments, filter by your own prefix first.
Heartbeat Workflow
- List todo tasks:
vk list-tasks --project-id <ID> --status todo - Filter tasks with your prefix
[agent-id] - Pick the highest-priority task (first valid match is acceptable)
- Claim it:
vk update-task --task-id <ID> --status inprogress - Execute the task work
- Mark complete:
vk update-task --task-id <ID> --status done - If no matching task exists, reply
HEARTBEAT_OK - Scan descriptions for mentions and respond as needed
@your-agent-id
Standup Summary Workflow
- List all tasks across all statuses
- Group by status: done (last 24h), inprogress, inreview, todo
- Format as:
📋 Daily Standup — YYYY-MM-DD
✅ Completed:
- [agent] Task description
🔍 In Review:
- [agent] Task description
🔄 In Progress:
- [agent] Task description
📌 To Do:
- [agent] Task descriptionTips
- Keep titles concise and descriptive
- Always include when creating tasks
[agent-id] - Update task status promptly so board state stays reliable
- Use descriptions for details, links, and handoff context
- Pass empty string to to clear a script
--script - Use or
-o jsonfor machine-readable output (formats: text, markdown, json, raw)--output json