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

@smolt/cli

v0.5.0

Published

smolt: a coding agent that keeps what it learns. Curated project memory and full-text recall over every past session.

Readme


Smolt is a minimal terminal coding agent with one addition that compounds: it remembers. Curated project memory and full-text recall over every past session, so Tuesday's dead end never costs you Thursday.

Install

npm install -g @smolt/cli

Prefer a window? Smolt desktop is the same agent, same memory, same sessions.

Use

export ANTHROPIC_API_KEY=sk-ant-...   # or run /login inside smolt
smolt

Bring any of 15+ providers — Anthropic, OpenAI, Google, and friends — and switch models mid-session with /model. Local models work too, via the built-in llama.cpp integration (/llama).

Commands

Type / in the editor. The essentials:

| Command | What it does | |---------|--------------| | /login | Authenticate a provider (subscription or API key) | | /model | Switch models mid-session (Ctrl+S saves a default) | | /thinking | Adjust the thinking level | | /resume | Pick up a previous session | | /tree | Jump to any point in the session and continue from there | | /fork | Branch a new session from an earlier message | | /compact | Compress context, optionally with custom instructions | | /share | Upload the session as a private gist with a viewable link | | /export | Save the session to HTML or JSONL | | /settings | Themes, message delivery, preferences | | /hotkeys | Every keyboard shortcut |

Skills appear as /skill:name, prompt templates as /templatename, and extensions can register their own commands. !command runs a shell command and feeds the output to the model; @ fuzzy-searches project files.

How the self-learning works

Three tools the agent uses on its own, nudged every few turns to persist anything durable:

  • memory — two plain-text files under ~/.smolt/memories/: MEMORY.md for project facts and quirks, USER.md for how you like to work. Both are injected at session start as a frozen snapshot, so they never churn your prompt cache. A hard character budget forces curation — the agent adds, rewrites, and prunes entries instead of hoarding them.
  • skill_manage — when the agent solves something gnarly, it can write the working path down as a real skill (SKILL.md plus supporting files) in the standard skills directory. Next session it discovers and follows its own instructions like any hand-written skill.
  • session_search — full-text search (SQLite FTS5) across everything it has ever done in your projects, including command output. It can find "that error we hit last month", scroll the surrounding conversation, and read the fix.

Why this is good: agents normally start every session at zero. Smolt's knowledge compounds instead — the model stops re-deriving your build quirks, re-hitting known dead ends, and re-asking how you like things done. And because memory is just two Markdown files, you can open them, read exactly what the agent believes, and edit or delete anything. No vector database, no embeddings, no cloud — it all lives in your home directory.

Lightweight and modular

  • ~2 MB unpacked, one dependency (an image-processing native module). No install scripts, no telemetry, no phone-home.
  • Four core tools — read, write, edit, bash — and a deliberately minimal system prompt. Everything else is layered on top.
  • Extensions all the way down. Skills, prompt templates, themes, and custom tools are plug-in pieces; the self-learning module is itself just an extension built on the public extension API — you could lift the folder out or swap in your own.
  • Four modes: interactive TUI, print (one-shot scripting), RPC, and an SDK for embedding.

Full documentation lives in the GitHub repository.


MIT