jpskill.com
💼 ビジネス コミュニティ

vibe-kanban

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".

⚡ おすすめ: コマンド1行でインストール(60秒)

下記のコマンドをコピーしてターミナル(Mac/Linux)または PowerShell(Windows)に貼り付けてください。 ダウンロード → 解凍 → 配置まで全自動。

🍎 Mac / 🐧 Linux
mkdir -p ~/.claude/skills && cd ~/.claude/skills && curl -L -o vibe-kanban.zip https://jpskill.com/download/8878.zip && unzip -o vibe-kanban.zip && rm vibe-kanban.zip
🪟 Windows (PowerShell)
$d = "$env:USERPROFILE\.claude\skills"; ni -Force -ItemType Directory $d | Out-Null; iwr https://jpskill.com/download/8878.zip -OutFile "$d\vibe-kanban.zip"; Expand-Archive "$d\vibe-kanban.zip" -DestinationPath $d -Force; ri "$d\vibe-kanban.zip"

完了後、Claude Code を再起動 → 普通に「動画プロンプト作って」のように話しかけるだけで自動発動します。

💾 手動でダウンロードしたい(コマンドが難しい人向け)
  1. 1. 下の青いボタンを押して vibe-kanban.zip をダウンロード
  2. 2. ZIPファイルをダブルクリックで解凍 → vibe-kanban フォルダができる
  3. 3. そのフォルダを C:\Users\あなたの名前\.claude\skills\(Win)または ~/.claude/skills/(Mac)へ移動
  4. 4. Claude Code を再起動

⚠️ ダウンロード・利用は自己責任でお願いします。当サイトは内容・動作・安全性について責任を負いません。

🎯 このSkillでできること

下記の説明文を読むと、このSkillがあなたに何をしてくれるかが分かります。Claudeにこの分野の依頼をすると、自動で発動します。

📦 インストール方法 (3ステップ)

  1. 1. 上の「ダウンロード」ボタンを押して .skill ファイルを取得
  2. 2. ファイル名の拡張子を .skill から .zip に変えて展開(macは自動展開可)
  3. 3. 展開してできたフォルダを、ホームフォルダの .claude/skills/ に置く
    • · macOS / Linux: ~/.claude/skills/
    • · Windows: %USERPROFILE%\.claude\skills\

Claude Code を再起動すれば完了。「このSkillを使って…」と話しかけなくても、関連する依頼で自動的に呼び出されます。

詳しい使い方ガイドを見る →
最終更新
2026-05-18
取得日時
2026-05-18
同梱ファイル
1
📖 Claude が読む原文 SKILL.md(中身を展開)

この本文は AI(Claude)が読むための原文(英語または中国語)です。日本語訳は順次追加中。

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 @your-agent-id mentions in task descriptions
  • Generate a daily standup summary

Access

CLI (primary)

The vk binary is a standalone CLI generated from the VK MCP server schema. It lives at vibe-kanban/scripts/vk and requires bun at runtime.

vk <command> [--flag value ...]
vk --help                         # list all commands
vk <command> --help               # help for a specific command

MCP tools (alternative)

If the vibe_kanban MCP server is configured in your Claude Code session, you can call tools directly (e.g. list_projects, list_tasks) without the CLI.

Tool Reference

Task management

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

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

vk start-workspace-session --task-id <ID> --executor CLAUDE_CODE --repos <repo-id1>,<repo-id2>

Supported executors: CLAUDE_CODE, AMP, GEMINI, CODEX, OPENCODE, CURSOR_AGENT, QWEN_CODE, COPILOT, DROID.

Task Statuses

Status Meaning
todo Not started
inprogress Actively being worked on
inreview Work done, awaiting review
done Completed
cancelled 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

  1. List todo tasks: vk list-tasks --project-id <ID> --status todo
  2. Filter tasks with your [agent-id] prefix
  3. Pick the highest-priority task (first valid match is acceptable)
  4. Claim it: vk update-task --task-id <ID> --status inprogress
  5. Execute the task work
  6. Mark complete: vk update-task --task-id <ID> --status done
  7. If no matching task exists, reply HEARTBEAT_OK
  8. Scan descriptions for @your-agent-id mentions and respond as needed

Standup Summary Workflow

  1. List all tasks across all statuses
  2. Group by status: done (last 24h), inprogress, inreview, todo
  3. 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 description

Tips

  • Keep titles concise and descriptive
  • Always include [agent-id] when creating tasks
  • Update task status promptly so board state stays reliable
  • Use descriptions for details, links, and handoff context
  • Pass empty string to --script to clear a script
  • Use -o json or --output json for machine-readable output (formats: text, markdown, json, raw)