Kanban Board

The built-in kanban board gives you a visual overview of all tickets across workflow columns. View it in the terminal, export it as markdown, or open it in Obsidian.

Viewing the Board

# View the kanban board in your terminal
$ prlt board view

  ┌─────────────┬─────────────┬─────────────┬─────────────┬─────────────┐
  │ Backlog (3)  │ Ready (2)   │ In Progress │ Review (1)  │ Done (5)    │
  ├─────────────┼─────────────┼─────────────┼─────────────┼─────────────┤
  │ TKT-012 P2  │ TKT-008 P1  │ TKT-001 P0  │ TKT-003 P1  │ TKT-002     │
  │ TKT-013 P2  │ TKT-009 P1  │ TKT-005 P1  │             │ TKT-004     │
  │ TKT-014 P3  │             │             │             │ TKT-006     │
  └─────────────┴─────────────┴─────────────┴─────────────┴─────────────┘

Board Modes

ModeCommandDescription
Terminalprlt board viewRich terminal rendering with colors and priority badges
Markdownprlt board markdownExport as markdown table for sharing
Obsidianprlt board openOpen in Obsidian as a kanban plugin board
Watchprlt board watchLive-updating view that refreshes as tickets move

Live Watching

Watch mode refreshes the board automatically as agents move tickets through columns:

# Watch the board for real-time updates
$ prlt board watch

Tip

Use prlt board watch in a dedicated terminal pane while agents are running to see tickets flow through the pipeline.

Exporting

# Export as markdown
$ prlt board markdown > board.md

# Export board data
$ prlt board export

Syncing from Markdown

Edit the board in markdown and sync changes back:

# Export, edit, then sync back
$ prlt board markdown > board.md
$ vim board.md  # Move tickets between columns
$ prlt board sync board.md

Project Boards

Each project has its own board. Use the --project flag to scope board operations:

# View a specific project's board
$ prlt board view --project my-project

# List all projects
$ prlt project list