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

@allourthings/cli

v1.0.1

Published

AllOurThings CLI — manage your personal inventory from the terminal.

Downloads

44

Readme

@allourthings/cli

Manage your personal inventory from the terminal.

A CLI for AllOurThings — catalog everything you own and query it from the command line. Works standalone, no AI client required.

Install

# Run without installing
npx @allourthings/cli list

# Or install globally
npm install -g @allourthings/cli

Commands

allourthings search <query>                               # full-text search
allourthings list [--category <c>] [-l <loc>] [-t <tag>] # list, optionally filtered
allourthings get <id-or-name>                             # full item detail
allourthings add <name> [options]                         # add an item
allourthings update <id> [options]                        # update item fields
allourthings delete <id>                                  # delete an item

Attachments:

allourthings attach add <item-id> <file>      # attach a local file
allourthings attach url <item-id> <url>       # download and attach from URL
allourthings attach get <item-id> <filename>  # save attachment to disk
allourthings attach rm  <item-id> <filename>  # delete attachment

Options

add and update:

-c, --category <category>
-b, --brand <brand>
-m, --model <model>
    --purchase-date <date>    ISO date, e.g. 2024-01-15
    --price <price>
    --currency <currency>     e.g. GBP, USD
    --warranty <date>         warranty expiry ISO date
    --retailer <retailer>
-l, --location <location>
    --serial <serial>         serial number
-t, --tag <tag...>            repeatable
-n, --notes <notes>
    --set key=value           custom fields (update only, repeatable)

Global:

--data-dir <path>    inventory data directory (default: ~/Documents/AllOurThings)
--json               output raw JSON — for scripting and agent use

Data directory: defaults to ~/Documents/AllOurThings. Override with --data-dir per command, or set once in your shell profile to avoid repeating it:

export ALLOURTHINGS_DATA_DIR=~/Dropbox/AllOurThings

The directory is created automatically on first write. Read commands return empty results against a missing directory rather than erroring.

Examples

# Add an item
allourthings add "Bosch Washing Machine" \
  --brand Bosch --model "WGG244A9GB" \
  --category appliance --location kitchen \
  --purchase-date 2024-01-15 --price 649 --currency GBP \
  --warranty 2026-01-15 --retailer "John Lewis"

# Search
allourthings search "dishwasher"

# Get full detail
allourthings get "Bosch"

# Filter by category
allourthings list --category appliance

# Attach a manual
allourthings attach add 6164c373 ~/Downloads/manual.pdf --label "User manual"

# Attach from URL
allourthings attach url 6164c373 https://example.com/manual.pdf --label "User manual"

# Pipe to jq
allourthings search "warranty" --json | jq '[.[] | {name, warranty_expires}]'

# Use a different vault
allourthings --data-dir ~/Dropbox/AllOurThings list

Data

Your inventory lives in a vault — a plain directory on your filesystem. Each item gets its own folder:

~/Documents/AllOurThings/
  items/
    bosch-washing-machine-6164c373/
      item.json
      manual.pdf
      receipt.jpg

The vault is plain files — browse it in Finder, back it up with Time Machine, or sync with iCloud, Dropbox, or any tool you like.

Related


MIT