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

@yesdidit/cli

v0.6.0

Published

Yes! Did It — CLI for terminal todo management

Readme

@yesdidit/cli

The ydi command-line tool for Yes! Did It.

Commands

ydi login               Log in via Google or GitHub OAuth
ydi logout              Clear stored credentials
ydi add "text"          Add a todo
  --due "today 3pm"     Set a due date (natural language)
  --tag work            Add a tag (repeatable)
  --issue/-i 42         Link to GitHub issue (or owner/repo#42)
  --pr 28               Link to GitHub PR number
  --no-context          Skip automatic git context capture
ydi context             Show git context for current directory
ydi list                List pending todos
  --filter today        Filter by time window
  --done                Show completed todos
  --all                 Show all todos
  --tag work            Filter by tag
  --current-branch      Filter by current git branch
  --branch feat/x       Filter by branch name
  --here                Filter by current git repo
  --repo <url>          Filter by repo URL
  --issue 42            Filter by GitHub issue number
  --pr 28               Filter by GitHub PR number
  --stale               Show todos on deleted/merged branches
  --active              Show todos on branches with recent commits (7d)
  --verbose / -v        Show full git context per todo
ydi standup             Standup report: completed + in-progress
  --since "yesterday"   Lookback period (natural language or "24h")
  --json                Structured output
ydi config set <k> <v>  Set a config value
ydi config get <k>      Get a config value
ydi config list         List all config values
ydi sweep               Find and clean up stale todos
  --dry-run             List stale todos without acting
  --auto                Mark all stale as done (no prompt)
  --json                Structured output
ydi update <id>         Update a todo
  --text "new text"     Change the text
  --due "tomorrow 9am"  Change the due date
  --clear-due           Remove the due date
  --tag work            Replace tags (repeatable)
  --clear-tags          Remove all tags
ydi done <id>           Mark a todo as done
ydi delete <id>         Delete a todo

Development

pnpm build        # compile TypeScript → dist/
npm link          # install ydi globally from local build