Kanban Flow
Kanban Flow is a lightweight Kanban board for Visual Studio Code that stores your tasks in plain Markdown.
Create, organize, filter, and edit tasks in a visual drag-and-drop board while keeping the source of truth as a readable *.kanban.md file. Your board stays portable, version-control friendly, and easy to review in pull requests.
Why Kanban Flow?
- Markdown-first: tasks are saved as a normal Markdown table.
- Visual workflow: open your board as an interactive Kanban editor.
- Git-friendly: track task changes directly in your repository.
- No external service: no account, cloud sync, database, or vendor lock-in.
- Built for developers: manage project work without leaving VS Code.
Features
- Custom Kanban editor for
Kanban.md and *.kanban.md files.
- Activity Bar integration with a dedicated Kanban Flow sidebar.
- Workspace board discovery for existing Kanban Markdown files.
- Drag and drop tasks between columns.
- Inline task editing for title, description, tags, due date, priority, and blocker.
- Stable task IDs stored in Markdown for reliable syncing.
- Search, filtering, and sorting to quickly find tasks.
- Priority labels including
Low, Medium, High, and Critical.
- Due date indicators for upcoming and overdue work.
- Tag chips and suggestions based on existing board tags.
- Blocker suggestions based on existing task blockers.
- Command Palette commands for common board actions.
- Status bar summary for active Kanban files.
- Diagnostics for invalid statuses, priorities, dates, and duplicate IDs.
Getting Started
Create a new board
Open the Command Palette:
Ctrl+Shift+P
Run:
Kanban: New Kanban Board
Kanban Flow creates a Kanban.md file in your workspace and opens it with the visual board editor.
Open an existing board
Create or open a file named:
Kanban.md
or:
project.kanban.md
Then open it with the Kanban Flow editor.
You can also click the Kanban Flow icon in the Activity Bar to find boards in your workspace.
Kanban Flow uses a stable ID-based table schema:
# Kanban Board
| ID | Title | Status | Description | Tags | Due Date | Priority | Blocker |
| ------------- | ---------------------- | ----------- | ------------------------------------------ | --------------- | ---------- | -------- | ------- |
| task-sample-1 | Design markdown schema | Done | Define the table columns used by the board | markdown,schema | 2026-05-19 | High | |
| task-sample-2 | Build React board | On Progress | Create drag-and-drop board UI | react,vscode | 2026-05-20 | High | |
| task-sample-3 | Package extension | TODO | Prepare extension packaging and docs | vscode | 2026-05-21 | Medium | |
The ID column is required. It keeps task identity stable when tasks are edited, sorted, filtered, or moved between columns.
Commands
Kanban Flow contributes the following commands:
| Command |
Description |
Kanban: New Kanban Board |
Create a new Kanban.md board in the current workspace. |
Kanban: Open Board |
Open the current or first discovered Kanban board. |
Kanban: Add Task |
Add a task to the current board. |
Kanban: Archive Done |
Remove completed tasks from the current board. |
Kanban: Sort by Priority |
Sort tasks by priority. |
Kanban: Export Board |
Export board tasks as JSON. |
Settings
You can configure Kanban Flow from VS Code settings:
| Setting |
Default |
Description |
kanban.defaultPriority |
"" |
Default priority for newly created tasks. |
kanban.columns |
["TODO", "On Progress", "Done", "Backlog"] |
Columns used for validation and new boards. |
kanban.dateFormat |
yyyy-MM-dd |
Date format used by task due dates. |
kanban.autoOpen |
true |
Automatically open Kanban files with the board editor. |
kanban.doneAutoCollapse |
false |
Reserved setting for automatically collapsing done tasks. |
Recommended File Names
Kanban Flow automatically recognizes:
Examples:
Kanban.md
project.kanban.md
release-plan.kanban.md
Local Installation
If you have a packaged .vsix file:
code --install-extension kanban-flow-0.1.0.vsix
Or in VS Code:
- Open the Command Palette.
- Run
Extensions: Install from VSIX....
- Select the
kanban-flow-0.1.0.vsix file.
Development
Install dependencies:
npm install
Run tests:
npm test
Build the extension:
npm run build
Package the extension:
vsce package
Launch the extension locally by pressing F5 in VS Code.
Notes
- Kanban Flow intentionally uses a current ID-based Markdown schema.
- Legacy tables without the
ID column are not supported.
- Keep the table columns intact so the visual editor can parse and sync your board correctly.
License
MIT