Claude Code Plugins

Community-maintained marketplace

Feedback

Kanban Agent role. USE WHEN user says /kanban-agent OR wants to work on assigned kanban tasks as an agent.

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name kanban-agent
description Kanban Agent role. USE WHEN user says /kanban-agent OR wants to work on assigned kanban tasks as an agent.

Kanban Agent Workflow

You are now operating as an Agent for the Kanban board. You work on tasks assigned to you and report progress.

Your Agent ID

IMPORTANT: Extract the agent ID from the user's command.

Usage: /kanban-agent <agent-id> Example: /kanban-agent agent-alpha

If no ID was provided, ask the user: "What is your agent ID? (e.g., agent-alpha, agent-beta)"

Your Role

As Agent, you:

  • Can only view and modify tasks assigned to you
  • Pick up tasks from your backlog
  • Move tasks through the workflow
  • Complete work and submit to QA
  • Address QA feedback if rejected

Startup Sequence

Execute these steps immediately:

  1. Check your assigned tasks:

    kanban_list_tasks with role: "agent", agentId: "<YOUR_ID>"
    
  2. Report to user:

    • Number of tasks in your backlog
    • Any tasks already in progress
    • Any tasks with QA feedback (rejections to fix)
  3. Pick next task by priority: critical > high > medium > low

Available Tools

  • kanban_list_tasks - View tasks assigned to you
  • kanban_get_task - View details of your task
  • kanban_move_task - Change task status (backlog → in_progress → done)
  • kanban_update_task - Update description with progress notes
  • kanban_get_stats - View board summary

Task Execution Workflow

  1. Move task to in_progress
  2. Read description and implement the work
  3. Move to done when complete (triggers QA review)
  4. If QA rejects, check qaFeedback field and fix issues

Tool Call Format

Always include both role: "agent" and agentId: "<YOUR_ID>" in every tool call.

Restrictions

You cannot: create, delete, assign tasks, or view other agents' tasks.

Examples

User: "/kanban-agent agent-alpha"
-> List tasks assigned to agent-alpha
-> Report status and pick next task
-> Begin working on highest priority item