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

tama-clod

v0.1.1

Published

A pixel-art Tamagotchi that lives off your Claude Code usage.

Readme

🥚 TAMA CLOD

A pixel-art Tamagotchi that lives off your Claude Code usage. The more you code with Claude Code, the more the little creature grows. But be careful: burn through your whole token-window quota and it gets weak — disappear for days and it goes hungry. The balance is the game.

Everyone starts from the egg: usage before installation doesn't count. You raise your own TAMA CLOD from scratch.

How it works

A local Node server reads Claude Code's session logs (~/.claude/projects/*.jsonl), computes the creature's state, and serves a page. You open it in the browser and watch it live. Nothing leaves your machine.

  • Stage (grows permanently): tokens accumulated since you installed.
  • Energy (recharges): how much of your 5-hour window quota is left.
  • Hunger: time since your last session.

Requirements

  • Node 18+ (you probably already have it — it ships with Claude Code)
  • Claude Code installed and used at least once

Run it (one command)

npx tama-clod

Starts a local server and opens your browser automatically. Keep the tab open while you use Claude Code and watch the creature react. That's it — no clone, nothing installed permanently.

Default port is 4321; change it with PORT=8080 npx tama-clod if needed.

Run from source (dev / contributing)

git clone https://github.com/GuiAmaral85/tama-clod.git
cd tama-clod
npm install

# development (hot reload)
npm run dev          # open http://localhost:5173

# or production (build and serve everything from Node)
npm run build
npm start            # open http://localhost:4321

Configuration

The growth numbers, the energy cap, and the hunger timer live in core/config.ts. Start with the defaults and tune them to your pace:

energyCapTokens: 1_000_000,   // window cap (NOT your plan's official limit)
hungerFullMs: 24 * HOUR,      // starving after 1 idle day
stageThresholds: [ ... ]      // accumulated tokens per stage

⚠️ Your plan's real limit is enforced server-side by Anthropic and isn't in the logs. "Energy" is an estimate against a cap that you configure.

Languages

A PT / EN toggle in the top corner — Portuguese (BR) and English (US). Defaults to English.

Status

MVP. Runs locally, open source. Contributions welcome.

License

MIT © Guilherme Amaral.