Skip to main content

Kandown is a lightweight, markdown-inspired Kanban board application that lets you manage tasks using a simple YAML file, featuring a web UI, image and markdown support, and a hybrid demo mode for browser-based or local file storage.

Project description

Kandown

A lightweight, markdown-inspired Kanban board for developers โ€” backed by a plain YAML file that lives right in your project repository.

screenshot.png

What is Kandown?

Kandown is a simple Kanban board app that stores all your tasks in a single human-readable YAML file. Because it's just a file, you can:

  • Version-control your backlog alongside your code in Git
  • Edit tasks manually in any text editor
  • Share and review your backlog like any other project file

It ships as a Python CLI that starts a local web server, giving you a clean drag-and-drop board in your browser. No database, no cloud account, no complex setup required.

๐ŸŽฏ Quick Start โ€” No Installation Needed

Not a developer? This is the recommended option for you.

Try Kandown instantly in your browser โ€” no install, no sign-up, your data stays private and local:

๐Ÿ‘‰ Open Kandown in your browser

Want to see a real board? Check out our own project backlog.

The hosted static site runs entirely in your browser:

  • localStorage mode (default, all browsers) โ€” data is saved in your browser
  • File System mode (Chrome / Edge only) โ€” read and write a real backlog.yaml file on your computer

Features

  • ๐Ÿ—‚๏ธ Kanban board โ€” drag-and-drop tasks between Icebox, To Do, In Progress, and Done columns
  • โœ๏ธ Markdown descriptions โ€” write rich task descriptions with full Markdown support
  • โœ… Interactive checkboxes โ€” check off items directly on the card
  • ๐Ÿท๏ธ Tags and task types โ€” organise tasks with custom tags and built-in types (feature, bug, chore, epic, experiment, request)
  • ๐Ÿ–ผ๏ธ Paste images โ€” paste screenshots directly into task descriptions
  • ๐Ÿ“„ YAML-backed storage โ€” all tasks live in a plain, human-readable backlog.yaml file
  • ๐ŸŒ Browser-only mode โ€” use without installing anything via the hosted static site
  • ๐Ÿ”„ JetBrains IDE integration โ€” view and navigate tasks from any JetBrains IDE
  • ๐Ÿš€ CLI server โ€” start a local server with one command, auto-creates the YAML file if missing
  • ๐ŸŒ™ Dark mode โ€” easy on the eyes

Getting Started

For Developers โ€” CLI Mode

Install and run with a single command:

# Run directly without installing (requires uv)
uvx kandown [YAML_FILE]

# Or install permanently
uv tool install kandown
pipx install kandown
pip install kandown

Start the server

# Start with the default backlog.yaml (created automatically if missing)
kandown

# Start with a specific file on a custom port
kandown --port 8080 myproject.yaml

Open your browser at http://127.0.0.1:5001 (default port) to view the board.

CLI Options

Option Default Description
YAML_FILE backlog.yaml Path to the YAML task file (auto-created if missing)
--port INTEGER 5001 Port to listen on
--debug off Enable Flask debug mode
--help Show help and exit

For Non-Technical Users โ€” Static Site

The easiest way to use Kandown is through the hosted static site. No installation required โ€” just open it in your browser and start adding tasks.

Your data is stored in your browser (localStorage) by default, so it persists between visits without any server. Chrome and Edge users can also connect directly to a folder on their computer to read and write real YAML files.

Storage Modes

Kandown supports four storage modes:

Mode How to access Data stored in Editable
CLI kandown myfile.yaml Local YAML file on disk โœ… Yes
localStorage (default) Hosted site Browser localStorage โœ… Yes
File System Hosted site โ†’ Settings โ†’ Use File System Local YAML file (via browser API) โœ… Yes (Chrome/Edge only)
Read-Only ?backlog=<url> URL parameter Remote YAML (memory only) ๐Ÿšซ View only

Using File System Mode (Chrome / Edge)

  1. Open the hosted site in Chrome or Edge
  2. Click the โš™๏ธ settings button
  3. Under Storage Mode, click ๐Ÿ“‚ Use File System (Chrome/Edge)
  4. Select a folder โ€” Kandown will read/write backlog.yaml in that folder
  5. Work as normal; all changes are saved directly to the file

Sharing a Board (Read-Only)

Anyone with access to a publicly hosted YAML file can view your board in read-only mode:

https://eruvanos.github.io/kandown/?backlog=https://example.com/path/to/backlog.yaml

The file must be accessible via HTTP and have CORS enabled (GitHub raw URLs work well).

Deploying Your Own Static Site

Fork the repository, enable GitHub Pages (Settings โ†’ Pages โ†’ Source: GitHub Actions), and push to main. The included workflow will build and deploy the static site automatically.

Settings

The settings panel (โš™๏ธ button) exposes the following options. Availability depends on the active storage mode:

Setting Description CLI localStorage File System Read-Only
Dark mode Toggle dark/light theme โœ… โœ… โœ… โœ…
Show Icebox column Show or hide the leftmost Icebox column โœ… โœ… โœ… โ€”
Random port on startup Pick a free port automatically instead of using 5001 โœ… โ€” โ€” โ€”
Store images in subfolder Save pasted images as files in .backlog/ instead of embedding them as base64 โœ… โ€” โœ… โ€”
Download YAML Export the current board as a backlog.yaml file โ€” โœ… โœ… โ€”
Import YAML Load tasks from a backlog.yaml file โ€” โœ… โ€” โ€”
Switch storage mode Toggle between localStorage and File System โ€” โœ… โœ… โ€”
Clear / Reset data Delete all tasks and reset to defaults โ€” โœ… โ€” โ€”

Tip: Settings are stored together with your tasks inside the backlog.yaml file in CLI and File System modes, so they roam with your project.

JetBrains IDE Integration

Connect Kandown to any JetBrains IDE using the built-in Tasks & Contexts feature:

  1. Open IDE settings โ†’ Tools โ†’ Tasks โ†’ Servers
  2. Add a new Generic server with these details:
Field Value
URL http://localhost:5001
Login Anonymously โœ… Checked
Task List URL http://localhost:5001/api/tasks
Tasks $
id field id
summary field text

License

MIT License

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

kandown-0.1.7.tar.gz (46.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

kandown-0.1.7-py3-none-any.whl (56.6 kB view details)

Uploaded Python 3

File details

Details for the file kandown-0.1.7.tar.gz.

File metadata

  • Download URL: kandown-0.1.7.tar.gz
  • Upload date:
  • Size: 46.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for kandown-0.1.7.tar.gz
Algorithm Hash digest
SHA256 ba5b92d685d9a4d173be1221255687da9134d5fbf16070625f751f3c026cdf66
MD5 437bd159b5b5688193bce86275fba44f
BLAKE2b-256 7980be6907765e2392177653215cc699c547be3654393285afe027c4430269bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for kandown-0.1.7.tar.gz:

Publisher: pypi-release.yml on eruvanos/kandown

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file kandown-0.1.7-py3-none-any.whl.

File metadata

  • Download URL: kandown-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 56.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for kandown-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 0e6c93e268dda247737ca8e6979ecb723848eb263d3017e8d068130c62e33705
MD5 705031894451ed12a1475e0deae82b76
BLAKE2b-256 c21db9e8b4aa174ef59191aa5d4fb9d3c6c6cb6a6eccf29d7ddc47c432e65a46

See more details on using hashes here.

Provenance

The following attestation bundles were made for kandown-0.1.7-py3-none-any.whl:

Publisher: pypi-release.yml on eruvanos/kandown

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page