Kanban Tui

Styr ktui CLI'en til at administrere kanban-boards, opgaver og afhængighedsblokerede workflows

Af Zaloog · Zaloog/kanban-tui

Testet · Virker ★ 8.8/10

Kanban Tui — Styr ktui CLI'en til at administrere kanban-boards, opgaver og afhængighedsblokerede workflows

Hvad det gør

Lærer Claude at betjene kanban-tui's ktui CLI: oprette boards og kolonner, tilføje opgaver med afhængigheder og forfaldsdatoer, flytte opgaver på tværs af workflow-stadier og forespørge på handlingsbart (ikke-blokeret) arbejde via JSON-output. Udløses, når brugeren nævner kanban, boards, tasks, todo lists, task dependencies eller project tracking. Kræver ktui CLI (kan installeres via uv/uvx); data gemmes i en lokal SQLite-database.

Testrapport

I en isoleret HOME=$(mktemp -d) installerede og kørte jeg værktøjet via `uvx kanban-tui` (v0.21.1) og udførte det dokumenterede workflow: oprettede et aktivt board, listede de fire standardkolonner, oprettede tre kædede opgaver med --depends-on og forespurgte `task list --json --actionable`. Afhængighedssemantikken blev håndhævet præcis som dokumenteret - det handlingsbare filter returnerede kun den ikke-blokerede opgave, og `task move 2 2` blev afvist med "Task is blocked by unfinished dependencies: #1". Et dokumentationshul: the SKILL's dokumenterede Task Object JSON (column_id, board_id, depends_on) matcher ikke det virkelige output, som bruger `column`, `blocked_by`/`blocking` plus ekstra statusfelter; der er også en løs komma-typo i board-create-eksemplet.

Testet: 2026-07-31 · Claude Code 2.x (agent harness)

Installation

git clone --depth 1 https://github.com/Zaloog/kanban-tui.git /tmp/kanban-tui-src
mkdir -p ~/.claude/skills/kanban-tui
cp /tmp/kanban-tui-src/src/kanban_tui/assets/SKILL.md ~/.claude/skills/kanban-tui/SKILL.md
# REQUIRED runtime dep: the `ktui` CLI. Either install it:
#   uv tool install kanban-tui      # provides the `ktui` command
# or run without installing (the SKILL.md falls back to this automatically):
#   uvx kanban-tui <args>
# Native alternative to the copy above: `ktui skill init` writes SKILL.md into a
# dedicated skills folder, and `ktui skill update` keeps it in sync with the tool version.
# Data persists in a local SQLite DB (see `ktui info` for file locations).

Kommandoer og eksempelprompter

  • /kanban-tuiStyr ktui CLI'en til at administrere kanban-boards, opgaver og afhængighedsblokerede workflows

Skills udløses af almindelige forespørgsler — ingen kommandoer at huske. Efter installationen aktiverer prompter som disse skillen (på engelsk):

  • Create a new task on my kanban board
  • Show all tasks blocked by dependencies
  • Move this task to the done column