Slash Command
/dev-manager
Start the visual Kanban dashboard for MASTER_PLAN.md tracking
From claude-dev-infrastructureInstall
1
Run in your terminal$
npx claudepluginhub ananddtyagi/claude-code-marketplace --plugin claude-dev-infrastructureCommand Content
/dev-manager Command
Start the visual Kanban dashboard that syncs with your MASTER_PLAN.md.
Usage
/dev-manager # Start on default port (6010)
/dev-manager 8080 # Start on custom port
/dev-manager stop # Stop running server
/dev-manager status # Check if server is running
What It Does
The dev-manager is a Node.js server that:
- Parses MASTER_PLAN.md into a visual Kanban board
- Live syncs changes - edits in the board update MASTER_PLAN.md
- Watches for file changes - external edits refresh the UI
- Provides a REST API for task status updates
Implementation
When the user runs /dev-manager:
-
Check if dev-manager exists
if [ ! -d "dev-manager" ]; then echo "dev-manager not found. Run /dev-setup first." exit 1 fi -
Install dependencies if needed
cd dev-manager if [ ! -d "node_modules" ]; then npm install fi -
Start the server
DEV_MANAGER_ROOT="$(pwd)/.." node server.js & -
Report status
✅ Dev Manager running! Dashboard: http://localhost:6010 API: http://localhost:6010/api/master-plan The dashboard syncs with docs/MASTER_PLAN.md Press Ctrl+C to stop.
For /dev-manager stop:
-
Find the running process
pkill -f "node.*dev-manager.*server.js" -
Confirm termination
✅ Dev Manager stopped.
For /dev-manager status:
-
Check if process is running
pgrep -f "node.*dev-manager.*server.js" -
Report status
Dev Manager is running on port 6010 PID: 12345or
Dev Manager is not running.
Dashboard Features
- Kanban columns: To Do, In Progress, Review, Done
- Drag & drop: Move tasks between columns
- Task editing: Click to edit title, priority, status
- Live refresh: Auto-updates when MASTER_PLAN.md changes
- Progress bars: Visual progress from checkbox completion
Stats
Parent Repo Stars624
Parent Repo Forks52
Last CommitDec 25, 2025