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

@stevestomp/ohno-cli

v0.8.4

Published

Task management CLI for AI agents and humans with visual kanban board

Readme

@stevestomp/ohno-cli

CLI and visual kanban board for Ohno task management.

Installation

# No install needed - just run
npx @stevestomp/ohno-cli init
npx @stevestomp/ohno-cli serve

# Or install globally
npm install -g @stevestomp/ohno-cli

Quick Start

# Initialize in your project
ohno init

# Create a task
ohno create "Fix the login bug"

# Start working on it
ohno start task-abc123

# View kanban board
ohno serve
# Open http://localhost:3333/kanban.html

Commands

Visualization

ohno serve              # Start visual board server
ohno serve --port 8080  # Custom port
ohno status             # Show project stats
ohno sync               # One-time HTML generation

Task Management

ohno tasks                      # List all tasks
ohno tasks -s todo              # Filter by status
ohno task <id>                  # Get task details
ohno create "Title"             # Create task
ohno start <id>                 # Start working (→ in_progress)
ohno done <id>                  # Mark complete (→ done)
ohno review <id>                # Mark for review
ohno block <id> "reason"        # Set blocker
ohno unblock <id>               # Resolve blocker

Dependencies

ohno dep add <task> <depends-on>  # Add dependency
ohno dep rm <task> <depends-on>   # Remove dependency
ohno dep list <task>              # Show dependencies

AI Agent Commands

ohno context --json    # Get session context
ohno next --json       # Get next recommended task

Kanban Board Features

  • Live reload - Auto-refreshes when tasks change
  • Edit/Delete - Edit or delete tasks from the UI
  • Detail panel - Click any task for full details
  • Filters - Filter by epic, priority
  • Self-contained - Single HTML file, no external assets

Options

All commands support:

  • --json - Machine-readable JSON output
  • -d, --dir <path> - Specify project directory

License

MIT