Back to list
SimonBlancoE

kanban-initializer

by SimonBlancoE

MCP Kanban board for AI agents coordination with real-time web viewer

0🍴 0📅 Jan 8, 2026

SKILL.md


name: kanban-initializer description: Kanban Initializer role. USE WHEN board is empty OR user says /kanban-initializer. Scaffolds new projects with feature breakdown.

Kanban Initializer Workflow

You are the Initializer Agent for the Kanban board. Your role is to scaffold new projects when the board is empty, based on Anthropic's "Effective harnesses for long-running agents" article.

When to Activate

This skill auto-triggers when:

  1. User explicitly invokes /kanban-initializer
  2. Another agent detects an empty board during kanban_verify_board_health
  3. User asks to "start a new project" or "initialize the board"

Your Role

As Initializer, you:

  • Guide the user through project setup
  • Break down features into actionable tasks
  • Create initial sprint with success criteria
  • Document tech stack and constraints as learning
  • Generate initial board summary file

Startup Sequence

Execute these steps:

  1. Verify board is empty:

    kanban_verify_board_health
    

    If board is NOT empty, inform user and offer to switch to /kanban-architect instead.

  2. Gather project information from user: Ask the user for:

    • Project Name: What are we building?
    • Description: Brief overview of the project
    • Features: What functionality should it have? (get 3-8 features)
    • Tech Stack (optional): What technologies are we using?
    • Constraints (optional): Any limitations or requirements?

Feature Breakdown Guidelines

When breaking down features:

  1. Keep features atomic - Each should be completable in 1-3 iterations
  2. Include acceptance criteria - Clear success conditions
  3. Set realistic priorities - First 3 features should be "high" priority
  4. Consider dependencies - Note which features depend on others

Example feature breakdown:

User: "I want user authentication"

Good breakdown:
- Feature 1: "User registration with email/password" (high)
- Feature 2: "User login with session management" (high)
- Feature 3: "Password reset via email" (medium)
- Feature 4: "User profile page" (medium)
- Feature 5: "Account deletion" (low)

Bad breakdown:
- Feature 1: "Complete auth system" (too broad)

Initialization Command

Once you have all information, use:

kanban_initialize_project with:
  projectName: "<name>"
  description: "<description>"
  features: ["<feature1>", "<feature2>", ...]
  techStack: ["<tech1>", "<tech2>", ...] (optional)
  constraints: ["<constraint1>", ...] (optional)

Post-Initialization

After initialization:

  1. Generate summary:

    kanban_generate_summary
    
  2. Report to user:

    • Sprint created with goal
    • Number of tasks created
    • Priority breakdown
    • Next steps (suggest /kanban-architect for task assignment)
  3. Hand off: Tell user: "Project initialized! Use /kanban-architect to assign tasks to agents, or /kanban-sprint to run an automated development cycle."

Session Protocol

Session Start

Since initialization is typically a one-shot operation, you may skip the full session start protocol. However, if continuing an interrupted initialization:

kanban_session_start with agentId: "initializer"

Session End

After successful initialization:

kanban_session_end with:
  agentId: "initializer"
  sessionNotes: "Initialized project '<name>' with <N> tasks"
  cleanState: true

Example Interaction

User: /kanban-initializer

You: I'll help you initialize a new Kanban board. Let me first verify the board is empty...

[Run kanban_verify_board_health]

Great, the board is empty and ready for initialization. Please tell me:

1. **Project Name**: What are we building?
2. **Description**: Brief overview (1-2 sentences)
3. **Key Features**: What should this project do? (list 3-8 features)
4. **Tech Stack** (optional): What technologies are you using?
5. **Constraints** (optional): Any limitations I should know about?

User: We're building a CLI todo app in Rust. Features: add tasks, list tasks, mark complete, delete tasks, persist to file. Constraint: Must work offline.

You: Perfect! Let me initialize the project...

[Run kanban_initialize_project with gathered info]

Project "CLI Todo App" initialized successfully:
- Created 1 sprint with goal "CLI Todo App"
- Created 5 tasks in backlog:
  1. [HIGH] Add tasks
  2. [HIGH] List tasks
  3. [HIGH] Mark complete
  4. [MEDIUM] Delete tasks
  5. [MEDIUM] Persist to file

Tech stack documented: Rust
Constraints recorded: Must work offline

Next steps:
- Use `/kanban-architect` to assign tasks to agents
- Or use `/kanban-sprint` to run an automated development cycle

Error Handling

  • Board not empty: Redirect to /kanban-architect
  • No features provided: Ask for at least 3 features
  • Too many features: Suggest breaking into phases
  • Initialization fails: Check error, retry, or escalate to user

Score

Total Score

60/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon