kanban Fulsomenko
winget install --id=fulsomenko.kanban -e Terminal-based kanban board inspired by lazygit
winget install --id=fulsomenko.kanban -e Terminal-based kanban board inspired by lazygit
Keyboard-first project management

Inspired by lazygit · Built on ratatui
git checkout commands from any cardkanban # launch in-memory; pick or skip a file from the startup dialog
kanban boards.json # open or create a JSON board file
kanban boards.sqlite # open or create a SQLite board file
Press ? at any time to see context-sensitive help.
export KANBAN_FILE=boards.json # or pass the path as the first argument
kanban board create --name "My Project" --with-default-columns # seeds TODO/Doing/Complete with matching default statuses
kanban board list
kanban card create --board "My Project" --column TODO --title "Fix the bug" --priority high
kanban card list --board "My Project"
kanban sprint create --board "My Project"
kanban sprint activate yarara-release --duration-days 14
kanban card assign-sprint KAN-5 --sprint yarara-release
kanban relation add --parent KAN-5 --child KAN-7 # KAN-7 is now a subtask of KAN-5
kanban relation children KAN-5 # list direct children of KAN-5
kanban init boards.json --board "My Project" # create file + first board, exit
kanban init --board "My Project" # uses KANBAN_FILE or boards.json
kanban init # creates the file with no entities
Every entity argument accepts either a UUID or a human-readable name (sprint
numbers also work for sprints; cards accept their KAN-N identifier). When a
name doesn't match, the error lists what's available.
All commands output JSON. Use kanban --help for full reference.
Claude Code
{
"mcpServers": {
"kanban": {
"command": "kanban-mcp",
"args": ["boards.json"]
}
}
}
cargo install kanban-cli
git clone https://github.com/kanban-rs/kanban
cd kanban
cargo install --path crates/kanban-cli
brew install fulsomenko/tap/kanban
nix run github:kanban-rs/kanban
yay -S kanban
choco install kanban
winget install fulsomenko.kanban
For y/Y clipboard operations to persist after the app exits, you need a clipboard manager:
wl-clip-persist, cliphist, clipman, or your DE's built-in managerIf your setup is Windows and WSL, and you often switch between them, then it is recommended to install separate binaries for each system to avoid constant recompiles.
Changes are made in an external editor as defined by your EDITOR. Neovim, nano, or some other terminal-based editor is recommended, both for easier switching between edits and browsing, and because editors that leave the terminal may cause issues.
VS Code is known not to work in the current implementation.
kanban is well-tested on supported OSes and is designed to be shell-agnostic. If your EDITOR is not set, it will default to notepad on Windows and vi otherwise.
KAN-42)kanban relation CLI + MCP toolscolumn create --default-status done / column update --default-status done (--clear-default-status removes it) — moving a card into the column applies that status, and a card marked done files under the board's first status=done columnboard create --with-default-columns seeds TODO/Doing/Complete with matching default statuses in one step; a board created without the flag has no columns until you run column create yourselfboard archive / board restore / board delete-archived, an archived-boards TUI view you can drill into like a live board, board list --archived / --include-archived, a three-state MCP archived filter (exclude / only / include), and matching MCP archive/restore/delete-archived toolsV/ searchboard list --sort --order , a persisted default via board set-sort, and a TUI field picker (o) / order toggle (s) for both live and archived boardsu/U)$EDITOR)y copies git branch name, Y copies git checkout commandPress ? in the app to see bindings for the current context.
| Key | Action |
|---|---|
j/↓ | Navigate down |
k/↑ | Navigate up |
gg | Jump to top |
G | Jump to bottom |
Enter/Space | Open board detail |
n | New board |
r | Rename board |
e | Edit board |
d | Delete board |
x | Export board |
X | Export all boards |
i | Import board from file |
u | Undo |
U | Redo |
S | Open settings |
1/2 | Focus boards/cards panel |
q | Quit |
? | Help |
| Key | Action |
|---|---|
j/↓, k/↑ | Navigate down/up |
gg / G | Jump to top/bottom |
{ / } | Half-page up/down |
h/l | Previous/next column |
H/L | Move card left/right column |
Enter/Space | Open card detail |
n | New card |
e | Edit card |
c | Toggle done |
p | Set priority |
d | Archive card(s) |
D | View archived cards |
v | Toggle card selection |
Ctrl+a | Select all visible cards |
Esc | Clear selection |
P | Set priority (bulk) |
a | Assign to sprint |
o | Sort cards |
O | Toggle sort order |
t | Toggle sprint filter |
T | Filter options |
/ | Search |
s | Manage child cards |
V | Toggle view mode |
u / U | Undo / Redo |
1/2 | Focus boards/cards panel |
q | Quit |
? | Help |
| Key | Action |
|---|---|
1–5 | Focus Title / Metadata / Description / Parents / Children panel |
e | Edit current panel |
r | Manage parent cards |
R | Manage child cards |
y | Copy git branch name to clipboard |
Y | Copy git checkout command to clipboard |
a | Assign to sprint |
d | Delete card |
u / U | Undo / Redo |
Esc | Back |
? | Help |
| Key | Action |
|---|---|
1–5 | Focus Name / Description / Settings / Sprints / Columns panel |
e | Edit current panel |
p | Set branch prefix |
n | New sprint (Sprints panel) / New column (Columns panel) |
r | Rename column (Columns panel) |
d | Delete column (Columns panel) |
J/K | Reorder column up/down (Columns panel) |
j/k | Navigate within panel |
Enter/Space | Open sprint detail (Sprints panel) |
u / U | Undo / Redo |
Esc | Back |
? | Help |
| Key | Action |
|---|---|
h/l | Switch between uncompleted/completed panels |
j/k | Navigate cards |
a | Activate sprint |
c | Complete sprint |
p | Set sprint prefix |
C | Set card prefix override |
o/O | Sort / Toggle sort order |
v | Select card(s) |
u / U | Undo / Redo |
Esc | Back |
? | Help |
| Key | Action |
|---|---|
j/k | Navigate |
gg/G | Jump to top/bottom |
{/} | Half-page up/down |
r | Restore card(s) |
x | Delete card(s) permanently |
v | Select for bulk operation |
V | Toggle view mode |
u / U | Undo / Redo |
Esc | Back |
How it fits, in 30 seconds: kanban-domain holds all business rules with
zero I/O. kanban-persistence and kanban-backend are two stacked plugin
points — one for storage format (JSON/SQLite), one for storage backend
(in-memory/JSON/SQLite/HTTP) — each with a factory trait a new implementation
registers against. kanban-service is the single seam every frontend
(kanban-cli, kanban-tui, kanban-mcp, kanban-server) goes through to
reach a backend; each frontend picks which concrete backends to compile in
and registers them itself at startup. The detailed graph below shows exactly
which crate depends on which.
The workspace is layered so that every dependency points inward, toward pure domain logic, and outward-facing concerns (storage format, transport, UI) stay swappable:
crates/
├── kanban-core → Shared types, error handling, config, reusable state primitives
├── kanban-domain → Domain models, business logic, filtering & sorting
├── kanban-api → Wire-format DTOs shared by kanban-server and HTTP backend clients
├── kanban-persistence → Persistence trait layer — pure trait definitions, all I/O lives in backend crates
├── kanban-backend → KanbanBackend / KanbanBackendFactory abstractions over a pluggable backend
├── kanban-backend-memory → In-memory KanbanBackend (ephemeral, no persistence)
├── kanban-backend-http → KanbanBackend implementation talking to a remote kanban-server
├── kanban-persistence-json → JSON file storage backend (implements kanban-persistence + kanban-backend)
├── kanban-persistence-sqlite → SQLite storage backend (implements kanban-persistence + kanban-backend)
├── kanban-service → KanbanContext, persistence orchestration, undo/redo
├── kanban-view → Renderer-agnostic view-model layer shared by kanban-tui and kanban-web
├── kanban-tui → Terminal UI with ratatui
├── kanban-cli → CLI entry point (clap)
├── kanban-mcp → Model Context Protocol server
└── kanban-server → HTTP API server (axum)
Pluggable backends, registered by the app, not the service layer (KAN-1027):
kanban-persistence defines StoreFactory / StoreRegistry for the storage
format layer, and kanban-backend defines the equivalent KanbanBackendFactory
/ KanbanBackendRegistry one layer up, dispatching to the right backend by
content-sniffing a locator (KanbanBackendRegistry::for_locator) or by explicit
name (for_name). kanban-service depends only on the kanban-backend
abstraction — it has no production dependency on any concrete backend crate.
Each application (kanban-cli, kanban-mcp, kanban-tui, kanban-server)
builds its own registry and registers the concrete backends (JSON, SQLite,
in-memory, HTTP) it wants to ship with. This is the payoff of the KAN-1027
refactor: adding a new storage backend no longer means touching
kanban-service.
Solid arrows are normal ([dependencies]) edges. Dotted arrows are
optional/feature-gated edges (the dependency only activates when the named
Cargo feature is enabled — most are on by default). Dev-only edges (test
fixtures) are omitted here; see the note below.
graph TD
subgraph "Foundation"
CORE[kanban-core]
DOM[kanban-domain]
end
subgraph "Domain-adjacent traits"
API[kanban-api]
PER[kanban-persistence]
end
subgraph "Backend abstraction"
BE[kanban-backend]
BEMEM[kanban-backend-memory]
BEHTTP[kanban-backend-http]
end
subgraph "Concrete storage backends"
JSON[kanban-persistence-json]
SQL[kanban-persistence-sqlite]
end
subgraph "Service"
SVC[kanban-service]
end
subgraph "View layer"
VIEW[kanban-view]
end
subgraph "Applications"
CLI[kanban-cli]
MCP[kanban-mcp]
TUI[kanban-tui]
SRV[kanban-server]
end
DOM --> CORE
API --> CORE
API --> DOM
PER --> CORE
PER --> DOM
BE --> CORE
BE --> DOM
BE --> PER
BEMEM --> DOM
BEMEM --> BE
BEHTTP --> CORE
BEHTTP --> DOM
BEHTTP --> BE
BEHTTP --> API
JSON --> CORE
JSON --> DOM
JSON --> PER
JSON --> BE
JSON --> BEMEM
SQL --> CORE
SQL --> DOM
SQL --> PER
SQL --> BE
SQL --> BEMEM
SVC --> CORE
SVC --> DOM
SVC --> PER
SVC --> API
SVC --> BE
SVC -.->|feature: sqlite, default-on| SQL
VIEW --> CORE
VIEW --> DOM
CLI --> CORE
CLI --> DOM
CLI --> PER
CLI --> BE
CLI --> SVC
CLI -.->|feature: json, default-on| JSON
CLI -.->|feature: sqlite, default-on| SQL
CLI -.->|feature: tui, default-on| TUI
MCP --> CORE
MCP --> DOM
MCP --> PER
MCP --> BE
MCP --> SVC
MCP -.->|feature: json, default-on| JSON
MCP -.->|feature: sqlite, default-on| SQL
TUI --> CORE
TUI --> DOM
TUI --> PER
TUI --> BE
TUI --> BEMEM
TUI --> JSON
TUI --> SQL
TUI --> SVC
TUI --> VIEW
SRV --> CORE
SRV --> DOM
SRV --> PER
SRV --> BE
SRV --> JSON
SRV --> SQL
SRV --> SVC
SRV -.->|feature: test-helpers| BEMEM
Not shown above (test-only, dev-dependencies): kanban-persistence-json
and kanban-persistence-sqlite each dev-depend on kanban-service (feature
test-helpers) to run the shared service-layer contract tests against their
backend, and kanban-service dev-depends back on both of them — a
dev-dependency-only cycle that Cargo permits but a production dependency graph
never would. Similarly kanban-domain and kanban-persistence dev-depend on
kanban-backend-memory for lightweight in-memory test fixtures, and
kanban-backend-http dev-depends on kanban-server (feature test-helpers)
for integration tests against a real server. None of these are reachable from
a release build — cargo build --release never touches them.
The key structural change from before KAN-1027: kanban-service used to
depend directly on kanban-persistence-json (behind a json feature) and on
kanban-backend-memory. Both are gone from its production dependency graph;
it depends only on the kanban-backend/kanban-persistence abstractions, and
the four application crates now compose the concrete backends themselves.
| Crate | Description | README |
|---|---|---|
kanban-core | Shared types, config, errors, graph, pagination | → |
kanban-domain | Domain models, business logic | → |
kanban-api | REST wire DTOs shared by the server and the HTTP backend | → |
kanban-persistence | Persistence trait layer | → |
kanban-backend | KanbanBackend / RemoteWrites abstractions and the backend registry | → |
kanban-backend-memory | In-memory KanbanBackend (ephemeral) | → |
kanban-backend-http | KanbanBackend over HTTP against a remote kanban-server | → |
kanban-persistence-json | JSON file backend | → |
kanban-persistence-sqlite | SQLite backend | → |
kanban-service | Service layer, KanbanContext, undo/redo | → |
kanban-view | Renderer-agnostic view-model layer shared by kanban-tui/kanban-web | → |
kanban-tui | Terminal UI | → |
kanban-cli | CLI entry point | → |
kanban-mcp | MCP server | → |
kanban-server | HTTP API server | → |
| I want to... | Touch these crates |
|---|---|
| Add a new storage backend (e.g. Postgres) | kanban-persistence (implement StoreFactory/PersistenceStore), kanban-backend (implement KanbanBackendFactory), and whichever app crate(s) should ship it (kanban-cli/kanban-mcp/kanban-tui/kanban-server) to register_backend it |
Add a field to Card/Board/Column/Sprint | kanban-domain (model + *Update struct), kanban-persistence-json (envelope version bump + migration), kanban-persistence-sqlite (schema migration), kanban-api (DTOs, if exposed over REST) |
| Add a CLI command | kanban-cli (clap subcommand + handler in src/handlers/), kanban-service (a new KanbanContext method, if the operation doesn't exist yet) |
| Add an MCP tool | kanban-mcp (tool handler), kanban-service (a new KanbanContext method, if needed) |
| Add a REST endpoint | kanban-server (axum handler + route), kanban-api (request/response DTOs), kanban-service |
| Add a TUI dialog or view | kanban-tui (AppMode/DialogMode variant, key handler, ui:: renderer) |
| Add or change a card relation kind (spawns / blocks / relates) | kanban-domain (DependencyGraph, GraphOperations), kanban-persistence-sqlite (edge table), kanban-persistence-json (migration), kanban-service (GraphOperations impl on KanbanContext) |
| Change undo/redo behavior | kanban-service (src/undo_stack.rs, src/context/undo.rs), kanban-domain (commands/ inverse capture) |
card create end to endThe static dependency graph above shows structure; here's the same layering in motion for one representative write path:
kanban card create --board ... --column ... --title ... is parsed by clap in kanban-cli (src/handlers/card.rs), which resolves the board/column arguments to UUIDs.ctx.create_card(board_id, column_id, title, options) — the KanbanOperations entry point implemented on KanbanContext (kanban-service/src/context/cards.rs).create_card_impl builds a NewCard spec and calls create_card_from_spec, which constructs a Command::Card(CardCommand::Create(..)) and calls self.execute(vec![cmd]).KanbanContext::execute runs the command through backend.with_transaction(...): the command mutates state via the DataStore trait on whichever concrete KanbanBackend is active, then the batch is appended to the command log via backend.append_batch for the undo/audit trail.ctx.save().await?, which delegates to backend.flush() — an atomic temp-file-then-rename write for the JSON backend, or a transaction commit for SQLite.Card to JSON and prints it to stdout.{ "version": N, "metadata": {...}, "data": {...} } — the current version and the accepted range are defined by FormatVersion in crates/kanban-persistence/src/traits.rs.v{N}.backup first; the backup is kept after a successful upgrade (an older binary cannot open the migrated file, so it is your rollback artifact — delete it once you are sure you will not downgrade)SUPPORTED_SCHEMA_VERSION in crates/kanban-persistence-sqlite/src/sqlite_store/mod.rs; older databases upgrade on open, each guarded by a durable pre-migration backup (VACUUM INTO snapshot to .v{N}.backup, kept after success as the rollback artifact)SQLite format 3 magic bytes), not by file extensionnix develop # enter the dev shell (Rust toolchain, cargo-watch, bacon, ...)
cargo build # build all crates
cargo build --release # optimized production build
cargo run # launch the TUI
cargo run -- tui # explicit TUI mode
cargo run -- init --name "My Project" # non-interactive board init
cargo test # run all tests
cargo test --package kanban-domain # test a single crate
cargo clippy --all-targets --all-features -- -D warnings
cargo fmt --all
See CONTRIBUTING.md for the full development workflow, code style, and testing guidelines, and each crate's own README (linked in the architecture table above) for its scoped dependency diagram and public API.
See CONTRIBUTING.md for development workflow, code style, and testing guidelines.
Apache 2.0 — see LICENSE.md