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

@thewlabs/backlog

v1.1.9

Published

Markdown‑native Task Manager & Kanban visualizer for any Git repository

Readme

Backlog

Markdown‑native Task Manager & Kanban visualizer for any Git repository

pnpm i -g @thewlabs/backlog

or

bun add -g @thewlabs/backlog

Backlog demo GIF using: backlog board


Backlog turns any folder with a Git repo into a self‑contained project board
powered by plain Markdown files and a zero‑config CLI.

Features

  • 📝 Markdown-native tasks -- manage every issue as a plain .md file

  • 🔒 100 % private & offline -- backlog lives entirely inside your repo

  • 📊 Instant terminal Kanban -- backlog board paints a live board in your shell

  • 🌐 Modern web interface -- backlog browser launches a sleek web UI for visual task management

  • 🤖 AI-ready CLI -- "Claude, please take over task 33"

  • 🔍 Rich query commands -- view, list, filter, or archive tasks with ease

  • 💻 Cross-platform -- runs on macOS, Linux, and Windows

  • 🆓 MIT-licensed & open-source -- free for personal or commercial use


Five‑minute tour

# Make sure you have Backlog installed
bun/pnpm i -g @thewlabs/backlog

# 1. Bootstrap a repo + backlog
backlog init hello-

# 2. Capture work
backlog task create "Render markdown as kanban"

# 3. See where you stand
backlog board view

# 4. Working with AI
Claude I would like to build a search functionality in the web view that searches for:
* tasks
* docs
* decisions
Please create relevant tasks to tackle this request.

All data is saved under backlog folder as human‑readable Markdown with the following format task-<task-id> - <task-title>.md (e.g. task-12 - Fix typo.md).


Web Interface

Launch a modern, responsive web interface for visual task management:

# Start the web server (opens browser automatically)
backlog browser

# Custom port
backlog browser --port 8080

# Don't open browser automatically
backlog browser --no-open

Web Interface Screenshot

The web interface provides:

  • Interactive Kanban board with drag-and-drop functionality
  • Task creation and editing with rich forms and validation
  • Real-time updates as you manage tasks
  • Responsive design that works on desktop and mobile
  • Archive tasks with confirmation dialogs
  • Seamless CLI integration - changes sync with your markdown files

CLI reference (essentials)

| Action | Example | |-------------|------------------------------------------------------| | Create task | backlog task create "Add OAuth System" | | Create with description | backlog task create "Feature" -d "Add authentication system" | | Create with assignee | backlog task create "Feature" -a @sara | | Create with status | backlog task create "Feature" -s "In Progress" | | Create with labels | backlog task create "Feature" -l auth,backend | | Create with priority | backlog task create "Feature" --priority high | | Create with plan | backlog task create "Feature" --plan "1. Research\n2. Implement" | | Create with AC | backlog task create "Feature" --ac "Must work,Must be tested" | | Create with notes | backlog task create "Feature" --notes "Started initial research" | | Create with deps | backlog task create "Feature" --dep task-1,task-2 | | Create sub task | backlog task create -p 14 "Add Login with Google"| | Create draft | backlog task create "Feature" --draft | | Create (all options) | backlog task create "Feature" -d "Description" -a @sara -s "To Do" -l auth --priority high --ac "Must work" --notes "Initial setup done" --dep task-1 -p 14 | | List tasks | backlog task list [-s <status>] [-a <assignee>] [-p <parent>] | | List by parent | backlog task list --parent 42 or backlog task list -p task-42 | | View detail | backlog task 7 (interactive UI, press 'E' to edit in editor) | | View (AI mode) | backlog task 7 --plain | | Edit | backlog task edit 7 -a @sara -l auth,backend | | Add plan | backlog task edit 7 --plan "Implementation approach" | | Add AC | backlog task edit 7 --ac "New criterion,Another one" | | Add notes | backlog task edit 7 --notes "Completed X, working on Y" | | Add deps | backlog task edit 7 --dep task-1 --dep task-2 | | Archive | backlog task archive 7 | | Draft flow | backlog draft create "Spike GraphQL"backlog draft promote 3.1 | | Demote to draft| backlog task demote <id> | | Kanban board | backlog board (interactive UI, press 'E' to edit in editor) | | Web interface | backlog browser (launches web UI on port 6420) | | Web custom port | backlog browser --port 8080 --no-open | | Config editor | backlog config set defaultEditor "code --wait" | | Enable auto-commit | backlog config set autoCommit true | | View config | backlog config list |

Full help: backlog --help


Configuration

Backlog merges the following layers (highest → lowest):

  1. CLI flags
  2. backlog/config.yml (per‑project)
  3. ~/backlog/user (per‑user)
  4. Built‑ins

Key options:

| Key | Purpose | Default | |-------------------|--------------------|-------------------------------| | default_assignee| Pre‑fill assignee | [] | | default_status | First column | To Do | | statuses | Board columns | [To Do, In Progress, Done] | | date_format | ISO or locale | yyyy-mm-dd | | default_editor | Editor for 'E' key | Platform default (nano/notepad) | | default_port | Web UI port | 6420 | | auto_open_browser| Open browser automatically | true | | remote_operations| Enable remote git operations | true | | auto_commit | Automatically commit task changes | false |

Note: Set remote_operations: false to work offline. This disables git fetch operations and loads tasks from local branches only, useful when working without network connectivity.

Git Control: By default, auto_commit is set to false, giving you full control over your git history. Task operations will modify files but won't automatically commit changes. Set auto_commit: true if you prefer automatic commits for each task operation.


License

Backlog is released under the MIT License – do anything, just give credit. See LICENSE.