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

simple-task-board

v0.0.1

Published

A CLI tool for managing a task board with columns, dependencies, and transition tracking.

Readme

Simple Task Board

npm version License: MIT

A command-line tool for managing a task board with columns, dependencies, and transition tracking. Built with TypeScript and SQLite.

Features

  • Task Management: Create, update, delete, and view tasks with custom string IDs.
  • Columns: Organize tasks into stages: idea, approved idea, working on, blocked, ready for review, done.
  • Dependencies: Link tasks with dependencies for complex workflows.
  • Transition Tracking: Automatically log column changes with timestamps.
  • Assignment: Assign tasks to users and filter by assignee.
  • Reporting: View statistics, history, and transition analytics.

Installation

npm install -g simple-task-board

Usage

After installation, use the simple-task-board command.

Getting Started

# Add a new task
simple-task-board add -i "task1" -t "Implement feature" -c "idea"

# List all tasks
simple-task-board list

# Move a task to another column
simple-task-board move "task1" "working on"

# View help
simple-task-board --help

Available Commands

Task Operations

  • add [options]: Create a new task
  • list: Display all tasks
  • show <id>: Show details of a specific task
  • update [options] <id>: Update a task
  • delete <id>: Delete a task

Assignment & Filtering

  • assign <id> <assignee>: Assign a task
  • unassign <id>: Remove assignee
  • my-tasks <assignee> [column]: Show tasks assigned to a user

Dependencies

  • dependency add <taskId> <depId>: Add dependency
  • dependency remove <taskId> <depId>: Remove dependency

Movement & Tracking

  • move <id> <column>: Move task to column
  • history <id>: View transition history
  • transition-stats: Show time spent in columns

Search & Stats

  • search [options]: Search tasks by title, column, or assignee
  • stats: Show task counts per column

Database

  • Uses simple-task-board.db (SQLite) in the current directory.
  • Tables: tasks, task_dependencies, task_transitions.

Development

git clone [email protected]:richardanaya/simple-task-board.git
cd simple-task-board
npm install
npm run build
npm link

License

MIT - See LICENSE file.

Author

Richard Anaya