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

@onmyway133/nod

v1.0.5

Published

Markdown task manager — each task is a git-friendly .md file, designed for Claude Code

Downloads

648

Readme

nod

A task manager where each task is a markdown file. Works great with git and Claude Code.

Install

Requires Bun.

npm install -g @onmyway133/nod

How it works

Each task lives in its own .md file inside .nod/tasks/:

.nod/
  config.json
  tasks/
    epic-1-onboarding.md
    task-2-setup-database.md
    subtask-3-write-migrations.md

Tasks have a YAML header with fields like status, priority, and parent. The rest of the file is free-form markdown — description, notes, work log, anything you want.

Because tasks are plain files, you can commit them to git, review diffs, and read them in any editor.

Quick start

cd my-project
nod init

nod create epic "Build auth system"
nod create task "Design database schema" --parent epic-1 --priority high
nod create subtask "Write migrations" --parent task-2
nod create bug "Fix token expiry" --parent task-2

nod available        # what to work on
nod tree epic-1      # visual overview
nod ui               # open Kanban board in browser

Commands

nod init

Set up a nod project in the current directory. Creates .nod/ with config.json and a tasks/ subfolder inside it.

nod create <type> <title>

Create a task. Types: epic, task, subtask, bug.

nod create epic "Launch v2"
nod create task "Write tests" --parent epic-1 --priority high
nod create bug "Crash on logout" --parent task-3 --tags auth,crash

Options: --parent <id>, --priority <p>, --tags <t1,t2>

nod list

List tasks with optional filters.

nod list
nod list --status todo
nod list --priority high
nod list --type task --parent epic-1
nod list --json

nod available

Show tasks ready to work on (todo or in-progress), sorted by priority.

nod available
nod available --json

nod get <id>

Show a task's full content.

nod get task-2
nod get task-2 --json

nod update <id>

Change task fields.

nod update task-2 --status in-progress
nod update task-2 --priority critical
nod update task-2 --title "New title"
nod update task-2 --tags backend,auth

nod note <id> <text>

Append a timestamped note to the task's Work Log.

nod note task-2 "Decided to use UUIDs for user IDs"

nod subtasks <id>

List direct children of a task.

nod subtasks task-2
nod subtasks task-2 --json

nod epic-tasks <id>

List all tasks and subtasks inside an epic.

nod epic-tasks epic-1
nod epic-tasks epic-1 --json

nod tree <id>

Show the task hierarchy as a tree.

nod tree epic-1
# epic-1 [in-progress] Build auth system
# └── task-2 [in-progress] Design database schema
#     └── subtask-3 [todo] Write migrations

nod open <id>

Open the task file in $EDITOR.

nod open task-2

nod ui

Open a Kanban board in the browser at http://localhost:7777. Reflects the current state of your .nod/tasks/ folder and auto-refreshes every 3 seconds.

nod ui
nod ui --port 8080

Task file format

---
id: task-2
title: "Design database schema"
type: task
status: todo
priority: high
parent: epic-1
tags:
  - database
created: 2026-04-05
updated: 2026-04-05
---

# Design database schema

Decide on the tables and relationships.

## Notes

Looking at PostgreSQL with UUID primary keys.

## Work Log

- 2026-04-05: Started research

Statuses

todoin-progressdone · also: backlog, cancelled

Priorities

critical · high · medium · low

Using with Claude Code

nod available --json          # pick next task
nod get task-2 --json         # read full context
nod update task-2 --status in-progress
nod note task-2 "Changed X because Y"
nod update task-2 --status done
nod epic-tasks epic-1 --json  # check epic progress