How this command is triggered — by the user, by Claude, or both
Slash command
/kanban-skill:serveThis command is limited to the following tools:
The summary Claude sees in its command listing — used to decide when to auto-load this command
# Kanban Serve
Start the kanban board web viewer at localhost:3333.
## Instructions
1. First, check if bun is installed. If not, tell the user to install it.
2. Start the Bun server in background from the plugin's server directory:
- Set KANBAN_ROOT to the current project directory (where Claude Code is running)
- The server files are at ${CLAUDE_PLUGIN_ROOT}/server/
3. Open the browser to http://localhost:3333
4. Tell the user:
- The board is running at http://localhost:3333
- The server will auto-stop when the Claude session ends
- If the server doesn't stop automatic...Start the kanban board web viewer at localhost:3333.
First, check if bun is installed. If not, tell the user to install it.
Start the Bun server in background from the plugin's server directory:
Open the browser to http://localhost:3333
Tell the user:
pkill -f kanban-skill/server# Start server in background
cd "${CLAUDE_PLUGIN_ROOT}/server" && KANBAN_ROOT="${CLAUDE_PROJECT_DIR}" bun run index.ts &
# Open browser (macOS)
open http://localhost:3333
npx claudepluginhub kormie/dot-skills/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.
/dev-managerStarts visual Kanban dashboard syncing bidirectionally with MASTER_PLAN.md on port 6010 (or custom). Also supports stop and status subcommands.
/kaiten-boardExports a Kaiten board's columns, cards, and structure to Markdown or displays a summary. Also supports listing cards, columns, lanes, and boards in a space.
/boardDisplays the current kanban board with task counts per column (TODO, DOING, DONE), priorities, labels, and highlights the active doing task. Suggests creating a project if none exists.
/sysdesign-canvasManually starts or restarts the local Excalidraw canvas server and opens it in the browser. Use to recover a closed tab or stopped server.
/connect-boardConnects current project to Just Ship Board via jsp_ token argument or checks and reports connection status, credentials, and project linkage if no token provided.