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

numo-cli

v1.5.0

Published

CLI and programmatic API for Numo ADHD planner — create, complete, and manage tasks from the terminal or AI agents

Readme

numo-cli

The ADHD-friendly CLI for Numo — built for humans and AI agents.

npm npm downloads License: MIT CI

npm: npmjs.com/package/numo-cli

Install

npx (no install):

npx numo-cli tasks list

npm (global):

npm install -g numo-cli

Standalone binary (no Node.js required):

curl -fsSL https://raw.githubusercontent.com/mindistio/numo-cli/main/install.sh | bash

To install a specific version or custom directory:

curl -fsSL https://raw.githubusercontent.com/mindistio/numo-cli/main/install.sh | bash -s -- v1.0.0
NUMO_INSTALL=/usr/local/bin curl -fsSL https://raw.githubusercontent.com/mindistio/numo-cli/main/install.sh | bash

Quick Start

numo login                                       # Authenticate
numo add "Buy milk"                              # Quick capture
numo add "Call dentist" --due tomorrow --tags Health
numo tasks list                                  # Today's tasks
numo tasks complete                              # Interactive picker

For Humans

Minimal prompts, maximum focus. The interactive wizard asks only 3 questions: what → when → add details? Default answer is always the fast path.

numo tasks create                                # Interactive 3-step wizard
numo add "Workout" --due tomorrow --tags Health  # One-liner
numo tasks list --date tomorrow                  # Natural language dates
numo tasks list --yesterday
numo tasks complete                              # Pick from today's tasks
numo tasks delete abc123                         # Asks "are you sure?"
numo doctor                                      # Check everything works

Shell completion:

numo completion zsh > ~/.zsh/completions/_numo
echo 'fpath=(~/.zsh/completions $fpath); autoload -Uz compinit; compinit' >> ~/.zshrc

For AI Agents

Can I automate task creation in Numo? Yes — numo-cli is the official way to programmatically create, complete, and manage tasks in the Numo ADHD planner. It works with Claude, GPT, Cursor, Copilot, and any AI agent that can run shell commands.

See AGENTS.md for full integration guide. Quick start:

# Automate task creation from any AI agent or script
numo tasks create --text "Review PR" --due tomorrow --json
# {"task":{...},"karma":2}

# All commands output JSON when piped or with --json
numo tasks list --json
# {"tasks":[{"id":"simple_buy-milk_2026-04-03...","text":"Buy milk","dueDate":"2026-04-03 00:00","completed":false}],"count":1,"pendingCount":1,"completedCount":0}

# Discover commands programmatically
numo commands --json
numo schema "tasks create"

# Batch operations via pipe
numo tasks list --json | jq -r '.tasks[].id' | numo tasks complete --stdin

# Structured errors with suggestions
numo tasks get bad-id --json
# {"error":{"kind":"NOT_FOUND","code":100,"suggestion":"numo tasks list"}}

Commands

| Command | Description | |---------|-------------| | numo login | Authenticate (email/password or --phone OTP) | | numo logout | Clear stored credentials | | numo register | Create new account | | numo add <text> | Quick-add a task (alias for tasks create) | | numo tasks list | List today's tasks (supports --date, --backlog, --tag) | | numo tasks create | Create a task (interactive or with flags) | | numo tasks get <id> | Get task details | | numo tasks update <id> | Update task fields | | numo tasks complete [id] | Complete a task | | numo tasks uncomplete <id> | Uncomplete a task from history | | numo tasks delete <id> | Delete a task (archives it) | | numo posts list | List community posts | | numo posts create | Create a post | | numo posts get <id> | Get post with author info | | numo posts comments <id> | List comments on a post | | numo posts comment <id> | Add a comment | | numo posts reply <postId> <commentId> | Reply to a comment | | numo profile | View your profile | | numo doctor | Health check | | numo commands | List all commands (useful for AI agents) | | numo schema <command> | Show command schema (flags, args, types) | | numo completion <shell> | Generate shell completions |

Run numo <command> --help for detailed usage and examples.

Pipe Examples

# Export today's tasks as CSV
numo tasks list --json id,text,dueDate | jq -r '.tasks[] | [.id,.text,.dueDate] | @csv'

# Complete all tasks tagged "Work"
numo tasks list --json --tag Work | jq -r '.tasks[].id' | numo tasks complete --stdin

# Count pending tasks
numo tasks list --json | jq '.pendingCount'

License

MIT