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

@mr.rafay/task-manager-cli

v1.0.0

Published

Simple CLI task manager

Readme

task-manager-cli 📋

A simple, lightweight command-line task manager that lets you create and manage task lists stored as local JSON files — no database, no setup, just your terminal.


Installation

npm install -g task-manager-cli

After installing, the taskcli command will be available globally.


Quick Start

# Create a new task list
taskcli create work "My Work Tasks" "Write report" "Send emails"

# Read your task list
taskcli read work

# Add a new task group
taskcli add work "Evening Tasks" "Cook dinner"

# Add an item to an existing task group (by ID)
taskcli "add task" work "Review PR" 1

# Delete a task group by ID
taskcli "delete task" work 2

# Delete the entire file
taskcli delete work

# Spin the donut 🍩
taskcli donut

Commands

create

Creates a new JSON task file with an initial task group.

taskcli create <filename> <title> [task1] [task2] ...

| Argument | Required | Description | |----------|----------|-------------| | filename | ✅ | Name of the file (no extension needed) | | title | ✅ | Title of the first task group | | task... | ❌ | One or more task items to add immediately |

Example:

taskcli create shopping "Grocery List" "Milk" "Eggs" "Bread"

read

Reads and displays all task groups in a file.

taskcli read <filename>

Example:

taskcli read shopping

add

Adds a new task group to an existing file.

taskcli add <filename> <title> [task1] [task2] ...

| Argument | Required | Description | |----------|----------|-------------| | filename | ✅ | Name of the existing file | | title | ✅ | Title for the new task group | | task... | ❌ | One or more task items |

Example:

taskcli add shopping "Household Items" "Soap" "Shampoo"

add task

Adds a single task item into an existing task group, identified by its ID.

taskcli "add task" <filename> <task-item> <id>

| Argument | Required | Description | |-----------|----------|-------------| | filename | ✅ | Name of the existing file | | task-item | ✅ | The task item to add | | id | ✅ | Numeric ID of the task group to add into |

Example:

taskcli "add task" shopping "Butter" 1

Note: Wrap add task in quotes so your shell treats it as a single argument.


delete

Permanently deletes the entire task file.

taskcli delete <filename>

Example:

taskcli delete shopping

delete task

Removes a specific task group from the file by its ID.

taskcli "delete task" <filename> <id>

| Argument | Required | Description | |----------|----------|-------------| | filename | ✅ | Name of the existing file | | id | ✅ | Numeric ID of the task group to delete |

Example:

taskcli "delete task" shopping 2

donut

Renders a spinning ASCII donut animation in your terminal. Because why not. 🍩

taskcli donut

How Data is Stored

Each file is saved as <filename>.json in your current working directory. Here's what the structure looks like:

[
  {
    "id": 1,
    "title": "Grocery List",
    "task": ["Milk", "Eggs", "Bread"]
  },
  {
    "id": 2,
    "title": "Household Items",
    "task": ["Soap", "Shampoo"]
  }
]

License

ISC