From claude-dev-infrastructure
Starts visual Kanban dashboard syncing bidirectionally with MASTER_PLAN.md on port 6010 (or custom). Also supports stop and status subcommands.
npx claudepluginhub ananddtyagi/claude-code-marketplace --plugin claude-dev-infrastructure# /dev-manager Command Start the visual Kanban dashboard that syncs with your MASTER_PLAN.md. ## Usage ## What It Does The dev-manager is a Node.js server that: 1. **Parses MASTER_PLAN.md** into a visual Kanban board 2. **Live syncs changes** - edits in the board update MASTER_PLAN.md 3. **Watches for file changes** - external edits refresh the UI 4. **Provides a REST API** for task status updates ## Implementation When the user runs `/dev-manager`: 1. **Check if dev-manager exists** 2. **Install dependencies if needed** 3. **Start the server** 4. **Report status** ...
/planCreates and maintains a structured PLAN.md for project task tracking with phases, dependencies, progress, and blockers. Supports status checks and completion updates via arguments.
/pm-statusRenders ASCII progress dashboard for specified project showing phases, epics, progress bars, next tasks, blocked items, and Linear sync status; lists all projects otherwise. Supports --phase and --verbose flags.
/READMEDisplays documentation for DevTeam multi-agent slash commands: plan projects/sprints, implement autonomously, fix bugs/GitHub issues, review code, run tests, check status, manage git worktrees.
/statusDisplays unified project dashboard showing plan progress from docs/PLAN.md, active tasks, git branch, uncommitted changes, and recent commits.
/managerLaunches interactive terminal dashboard for managing milestone phases: displays statuses, recommends actions, dispatches background tasks via agents.
/projectDisplays project dashboard with status, progress, milestones, and tasks. Also creates new projects by analyzing PRD into milestones and tasks.
Share bugs, ideas, or general feedback.
Start the visual Kanban dashboard that syncs with your MASTER_PLAN.md.
/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
The dev-manager is a Node.js server that:
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.
/dev-manager stop:Find the running process
pkill -f "node.*dev-manager.*server.js"
Confirm termination
✅ Dev Manager stopped.
/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: 12345
or
Dev Manager is not running.