A Claude Code plugin marketplace providing tools for AI agents.
Add this marketplace to Claude Code:
/plugin marketplace add cleancoders/agent-plugins
Then install individual plugins:
/plugin install kanban-dashboard@cleancoders-agent-plugins
To enable plugins for all team members on a project, add to .claude/settings.json:
{
"extraKnownMarketplaces": {
"cleancoders-agent-plugins": {
"source": {
"source": "github",
"repo": "cleancoders/agent-plugins"
}
}
},
"enabledPlugins": {
"kanban-dashboard@cleancoders-agent-plugins": true
}
}Live KanBan dashboard for monitoring Claude Code agent teams in real-time. Provides an MCP server with 5 tools that agents call to report progress, and an embedded HTTP server that serves a browser-based dashboard with automatic polling.
MCP Tools: kanban_init, kanban_add_task, kanban_update_task, kanban_log, kanban_stop
Features:
- 4-column Kanban board (Blocked / Ready / In Progress / Done)
- Real-time agent status bar and activity log
- Task dependency tracking with automatic unblocking
- File diff viewer with git integration
- Task detail modals with subtask progress and dependency visualization
- Completion banner with elapsed time
To have agents use the dashboard automatically during team work, add to your project's CLAUDE.md:
When creating agent teams, use the kanban-dashboard MCP tools
(kanban_init, kanban_update_task, kanban_log, kanban_stop)
to provide a live dashboard for monitoring progress.
- Create a directory under
plugins/<name>/with aplugin.jsonmanifest and implementation - Add an entry to
.claude-plugin/marketplace.json - Commit and push — users with the marketplace installed get the new plugin on next sync