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

@viartemev/pi-caveman

v0.3.1

Published

Caveman mode for pi: ultra-compressed responses that save tokens.

Readme

Caveman for pi

License: MIT pi package Version

Ultra-compressed communication mode for pi: fewer tokens, same technical substance.

pi-caveman packages the original JuliusBrussee/caveman response style as a native pi package. Install it, and every agent response becomes shorter by default.

Why

Coding agents often spend tokens on polite filler. Caveman mode removes filler while preserving exact technical meaning.

Before: Sure! I'd be happy to help. The issue is likely caused by...
After: Bug in auth middleware. Token expiry check use `<` not `<=`. Fix:

Features

  • Always-on caveman response style while package is installed
  • No commands, per-session state, config, or toggles
  • Short system prompt injected before every agent turn

Install

From npm

pi install @viartemev/pi-caveman

From GitHub

pi install git:github.com/viartemev/pi-caveman

Project-local install:

pi install -l git:github.com/viartemev/pi-caveman

From local clone

git clone [email protected]:viartemev/pi-caveman.git
pi install ./pi-caveman

Try without installing:

pi -e ./pi-caveman

To stop caveman mode, disable or uninstall this pi package.

Package layout

extensions/caveman.ts       # pi extension adapter + compact mode prompts
skills/caveman              # caveman response-style skill
package.json                # pi package manifest

How it works

The pi extension hooks into:

  • before_agent_start — injects compact active-mode rules every turn

The base caveman skill is exposed by package.json; the extension makes the style always active.

License

MIT. See LICENSE.

Attribution

Caveman rules and skills originate from JuliusBrussee/caveman, MIT licensed.