Synopsis
aigon board [--list] [--features] [--research] [--active] [--all] [--inbox] [--backlog] [--done] [--no-actions]Shortcuts
/ab(slash command) ·aigon ab(CLI)
Description
Displays a terminal Kanban board showing features and research across lifecycle stages. This is the text-based equivalent of the Dashboard Pipeline — useful when you want a quick overview without opening a browser.
Views
Kanban view (default) — columns for each lifecycle stage:
┌─ INBOX (3) ──────┬─ BACKLOG (2) ─────┬─ IN-PROGRESS (1) ─┬─ DONE (12) ───────┐
│ │ │ │ │
│ dark-mode │ #42 dark-mode │ #43 auth-refactor │ #41 landing-page │
│ search-feature │ #44 api-cache │ cc ● implementing│ #40 ci-pipeline │
│ mobile-nav │ │ gg ● submitted │ #39 test-suite │
│ │ │ │ │
└───────────────────┴───────────────────┴────────────────────┴───────────────────┘List view (--list) — compact table format:
ID Feature Stage Agent Status
43 auth-refactor in-progress cc implementing
43 auth-refactor in-progress gg submitted
42 dark-mode backlog — —
44 api-cache backlog — —Flags
| Flag | Description |
|---|---|
--list | Show list view instead of Kanban |
--features | Features only (exclude research) |
--research | Research only (exclude features) |
--active | Only in-progress and evaluation stages |
--all | Include all stages (default excludes done/paused) |
--inbox | Show inbox items |
--backlog | Show backlog items |
--done | Show completed items |
--no-actions | Hide action hints (cleaner output) |
Usage
# Full Kanban board
aigon board
# Compact list of active work
aigon board --list --active
# Just features
aigon board --features
# Everything including done
aigon board --allLast updated on