TheDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/cline/kanban/llms.txt
Use this file to discover all available pages before exploring further.
kanban command starts a local Node.js server, serves the web UI, and opens your browser automatically. If a Kanban instance is already running on the same port, it connects to the existing server instead of starting a new one.
Synopsis
Behavior
When you runkanban:
- Kanban starts a local HTTP server (default port
3484). - The runtime URL is printed to the terminal.
- Your default browser opens automatically to the board UI.
- Press
Ctrl+Cto stop the server gracefully.
Options
Bind the server to a specific host IP address. Use
0.0.0.0 to listen on all interfaces.Set the server port. Accepts an integer from
1 to 65535, or the special value auto.When set to auto, Kanban finds the next available port starting from the default (3484) and uses that instead.Suppress automatic browser opening. The server starts and prints the runtime URL, but no browser window is launched.
On shutdown, skip moving active sessions to trash and skip deleting task worktrees. Use this flag when you want a fast exit without modifying board state.
Output the current Kanban version number and exit.
Examples
Start with defaults:Terminal output
After starting, the terminal shows the runtime URL:Graceful shutdown
PressCtrl+C to stop the server. Kanban stops any active agent sessions, moves them to trash, and removes task worktrees before exiting — unless you pass --skip-shutdown-cleanup.
A second Ctrl+C forces an immediate exit.