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.
How this command is triggered — by the user, by Claude, or both
Slash command
/claude-dev-infrastructure:dev-managerThe summary Claude sees in its command listing — used to decide when to auto-load this command
# /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** ...
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.
npx claudepluginhub ananddtyagi/claude-code-marketplace --plugin claude-dev-infrastructure/planCreates, updates, and tracks a structured project plan in PLAN.md with phases, dependencies, and progress. Supports 'status' to view and 'complete' to mark done.
/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.
/fire-dashboardDisplays a visual project dashboard showing current phase, milestone progress, breath execution, and validation status from .planning state files. Supports compact, watch, and JSON output modes.
/boardStarts or restarts the great_cto admin board on localhost, opens it in the default browser, and reports status. Accepts --port, --no-open, and --restart flags.