npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

kandown

v0.4.0

Published

File-based Kanban engine backed by Markdown. Zero backend, AI-agent friendly.

Readme


Description

Kandown is a local-first Kanban board where your tasks live as plain Markdown files. No cloud, no account, no vendor lock-in — just a .kandown/ folder in your project that you own forever.

  • Your data is portable — tasks are .md files versioned with git, readable by any text editor or AI agent
  • AI-agent friendly — Claude, Codex, Gemini, Goose, Aider, and OpenCode can read and update tasks directly
  • Dual interface — a polished web UI + a full terminal TUI, both running entirely offline
  • Single-file deploymentkandown.html is a self-contained app you can open in any browser

Installation

npm install -g kandown

Requirements: Node.js 18+


Usage

Initialize in any project

cd my-project
kandown init

This creates a .kandown/ folder with:

.kandown/
├── kandown.html      # Single-file web app
├── kandown.json      # Project config (columns, appearance)
├── tasks/            # One .md file per task
└── AGENT.md          # AI-agent quick reference

Launch the board

kandown

This opens:

  • A web UI in your browser (board view, list view, task editor)
  • A terminal TUI for keyboard-driven workflow (works over SSH, no browser needed)

CLI Commands

| Command | Description | |---|---| | kandown | Launch web UI + board TUI | | kandown init | Initialize in current project | | kandown board | TUI only (no browser) | | kandown settings | Terminal settings editor | | kandown update | Update kandown.html to latest | | kandown help | CLI help |


Features

Board & Views

| Feature | Description | |---|---| | Board view | Horizontal kanban with drag-and-drop | | List view | Dense table with filters & search | | Content search | Search titles, body, subtasks, tags, assignee, priority | | Command palette | ⌘K / Ctrl+K for quick actions | | Custom columns | Add, rename, delete columns freely | | Guarded deletion | Double-click to delete — no accidents |

Task Management

| Feature | Description | |---|---| | Rich task drawer | WYSIWYG markdown editor for title, metadata, subtasks, body | | Subtasks | Full checklist with progress tracking on cards | | Metadata fields | Priority, assignee, tags, due date, owner type | | Owner filtering | Filter human vs AI-agent tasks separately | | External-change detection | Warns when files are modified outside the app |

Appearance & UX

| Feature | Description | |---|---| | 5 built-in skins | Kandown, Graphite, Sage, Cobalt, Rose | | Theme modes | Auto (system), Light, Dark | | 5 font stacks | Inter, System, Serif, Mono, Rounded | | Animated backgrounds | WebGL fluid simulation (LiquidEther) | | 48 languages | Full i18n support | | Notifications | Browser + sound alerts for status changes, edits, completions |

AI Agent Integration

Press a in the board TUI to launch an AI agent on any task. Supported agents:

| Agent | Binary | Launch mode | |---|---|---| | Claude Code | claude | Interactive session | | OpenAI Codex | codex | Interactive session | | Gemini CLI | gemini | -p flag for initial prompt | | Goose | goose | run --text for non-interactive | | Aider | aider | --message for initial prompt | | OpenCode | opencode | TUI, context written to /tmp |

Keyboard Shortcuts

| Shortcut | Action | |---|---| | ⌘K / Ctrl+K | Command palette | | ⌘1 / Ctrl+1 | Board view | | ⌘2 / Ctrl+2 | List view | | N | New task | | R | Reload from disk | | / | Focus search | | Esc | Close drawer / palette | | ⌘S / Ctrl+S | Save task | | ⌘⌫ / Ctrl+Backspace | Delete task (with confirmation) |

Data Model

Each task is a standalone Markdown file:

---
id: t1
title: Implement user auth
status: Todo
priority: P1
tags: [backend, security]
assignee: chacha
created: 2026-04-10
---

# Implement user auth

## Context
Why this task exists.

## Subtasks
- [ ] Set up OAuth provider
- [x] Create user model
- [ ] Add session middleware

Contributing

Contributions are welcome! Please read the existing code style and conventions before submitting PRs.

Development Setup

git clone https://github.com/vava-nessa/kandown.git
cd kandown
pnpm install
pnpm dev          # Web UI at localhost:5173

Scripts

| Script | Description | |---|---| | pnpm dev | Vite dev server for web UI | | pnpm dev:cli | Watch-mode build for CLI TUI | | pnpm build | Full build: typecheck → web app → CLI | | pnpm build:cli | CLI TUI build only | | pnpm preview | Preview production build | | pnpm typecheck | TypeScript check |


License

MIT — use it, fork it, ship it.