Kanban-TUI Task Management
Lets Claude drive the ktui terminal kanban tool to manage boards, tasks, and dependencies from the CLI.
AutomationIntermediate★ 270⑂ 14AI score 9/10Last updated: Aug 9, 2026
What it does
- Teaches Claude the full CLI surface of
ktui(kanban-tui), a local SQLite-backed terminal kanban board. - Covers board create/activate/update/delete, column listing, task create/update/move/delete, and category management.
- Explains task dependency modeling (sequential chains and parallel fan-in) plus querying unblocked work via
--actionable. - Enforces a safe operating procedure: discover IDs with
--json, verify the active board, use--no-confirmfor automation, then re-verify results.
Who it's for
- Developers and solo builders who track projects from the terminal.
- Anyone wanting a lightweight offline kanban instead of Jira or Trello.
- Claude Code users who prefer natural-language requests like "what can I work on today?".
Examples
- "Set up a board for API development" → creates the board with default columns and seeds four dependent tasks with due dates.
- "What's unblocked right now?" → runs
ktui task list --json --actionableand summarizes the ready items. - "Move task 42 to the next stage" → checks dependencies, resolves the target column ID, and reports the blocker if the move fails.
· · · Install guide · · ·
Try it now, no install
Paste this into Claude to use the skill without installing anything.
Read the instructions in this file and follow them to help me: https://raw.githubusercontent.com/Zaloog/kanban-tui/HEAD/src/kanban_tui/assets/SKILL.md What I want: (describe your task here)
If Claude can't open the link, open it yourself and paste the contents instead.
↓ If it works for you, download the ZIP below and install it. Then it runs on its own — no pasting each time.
Install in the Claude app (no terminal)
- Download the ZIP with the button below.
- In Claude, open Settings → Capabilities and turn on 'Code execution and file creation'. (one time)
- Go to Customize → Skills → + → 'Upload a skill' and upload the ZIP.
Install in Claude Code
Let Claude do it — paste this into Claude Code
Install the skill I found on Claude Skill Mart. Copy the src/kanban_tui/assets folder from the GitHub repo Zaloog/kanban-tui into my ~/.claude/skills/kanban-tui/. When it's done, tell me in one line what this skill can do.
Install with a command instead
uv tool install kanban-tui && mkdir -p ~/.claude/skills/kanban-tui && curl -sL https://raw.githubusercontent.com/Zaloog/kanban-tui/main/src/kanban_tui/assets/SKILL.md -o ~/.claude/skills/kanban-tui/SKILL.md⚠ This is a third-party skill. Check the source repository before installing.
- Open a terminal.
- Install the tool:
uv tool install kanban-tui(orpipx install kanban-tui/pip install kanban-tui). - Verify it:
ktui --version. You can also run it ad hoc withuvx kanban-tui. - Create the skill folder:
mkdir -p ~/.claude/skills/kanban-tui - Fetch the skill file:
curl -sL https://raw.githubusercontent.com/Zaloog/kanban-tui/main/src/kanban_tui/assets/SKILL.md -o ~/.claude/skills/kanban-tui/SKILL.md - Restart Claude Code and try "list my kanban boards" to confirm activation.
- Note: creating, renaming, or reordering columns is TUI-only — run
ktuiyourself for those changes.
View source on GitHub ↗License: MIT