prlt board
View your kanban board in the terminal, watch it update in real time, or export it as markdown.
Subcommands
| Command | Description |
|---|---|
board view | Render the board in the terminal |
board watch | Live-updating board that refreshes as tickets move |
board open | Open the board in Obsidian |
board markdown | Export the board as markdown |
board export | Export board data |
board sync | Sync board state from a markdown file |
board view
Render a rich kanban board in your terminal with colors and priority badges.
# View the board $ prlt board view # View a specific project's board $ prlt board view --project my-project # JSON output $ prlt board view --json
board watch
A live-updating view that refreshes automatically as agents move tickets through columns.
$ prlt board watch
Tip
Run prlt board watch in a dedicated terminal pane alongside your spawned agents.
board markdown
Export the board as a markdown table for sharing in PRs, docs, or Slack.
# Print to stdout $ prlt board markdown # Save to file $ prlt board markdown > board.md
board sync
Edit a markdown board file and sync changes back to the database.
# Export, edit, and sync $ prlt board markdown > board.md $ vim board.md $ prlt board sync board.md
Flags
| Flag | Description |
|---|---|
--project, -P | Scope to a specific project |
--action | Direct action: view, open, markdown, export, sync |
--force | Skip confirmation prompts |
--json | Machine-readable output |