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

omp-ponytail-caveman

v0.3.4

Published

Oh My Pi Ponytail + Caveman plugin

Downloads

733

Readme

Ponytail Caveman

Ponytail + Caveman extension for Oh My Pi.

Install

Install from npm:

omp plugin install omp-ponytail-caveman

GitHub installs still work for unreleased commits:

omp plugin install github:phenome/omp-ponytail-caveman

Local development:

omp plugin link /path/to/omp-ponytail-caveman

Restart Oh My Pi after installing.

Plugin — OMP reads package.json (omp.extensions) and loads omp-ponytail-caveman automatically.

Detached skills are mandatory. The plugin reads Ponytail and Caveman from global skills CLI installs; it does not vendor them. postinstall tries to install or refresh them, but dependency lifecycle scripts may be blocked. If skills are missing or stale, run either command:

/ponytail install-skills
/caveman install-skills

Both commands refresh both upstream skill sets.

Plugin

omp-ponytail-caveman

Composes Ponytail and Caveman into one before_agent_start hook. Oh My Pi keeps only the first hook message returned, so both instruction blocks must be injected by one plugin.

Runtime commands:

  • /ponytail or /ponytail status — show status and help.
  • /ponytail on|off — enable Ponytail at the remembered mode, or disable it for this session.
  • /ponytail lite|full|ultra — enable Ponytail at that mode for this session.
  • /ponytail global on|off|lite|full|ultra — write global config and apply it to this session.
  • /ponytail repo on|off|lite|full|ultra — write repo config and apply it to this session.
  • /ponytail install-skills — refresh Ponytail and Caveman skill installs.
  • /caveman or /caveman status — show status and help.
  • /caveman on|off — enable Caveman at the remembered mode, or disable it for this session.
  • /caveman lite|full|ultra|wenyan-lite|wenyan-full|wenyan-ultra — enable Caveman at that mode for this session.
  • /caveman global on|off|lite|full|ultra|wenyan-lite|wenyan-full|wenyan-ultra — write global config and apply it to this session.
  • /caveman repo on|off|lite|full|ultra|wenyan-lite|wenyan-full|wenyan-ultra — write repo config and apply it to this session.
  • /caveman install-skills — refresh Ponytail and Caveman skill installs.

Commands expose static completions for known arguments.

Configuration

Config file name stays ponytail-caveman.json.

Example global or repo-local file:

{
  "ponytail": {
    "enabled": true,
    "mode": "full"
  },
  "caveman": {
    "enabled": true,
    "mode": "ultra"
  }
}

Ponytail modes: lite, full, ultra. Caveman modes: lite, full, ultra, wenyan-lite, wenyan-full, wenyan-ultra. off is stored as enabled: false, not as a mode.

Effective config merges by field, highest wins:

  1. Session command state.
  2. Repo config: nearest Git root .omp/ponytail-caveman.json; if no Git root, current working directory .omp/ponytail-caveman.json.
  3. Global OMP config: ~/.omp/agent/ponytail-caveman.json, or ~/.omp/profiles/<profile>/agent/ponytail-caveman.json when OMP_PROFILE / PI_PROFILE is set.
  4. Built-ins.

There are no environment variable overrides.

Detached skill sources:

  • Ponytail: skills add DietrichGebert/ponytail -g --skill '*' -y
  • Caveman: skills add https://github.com/juliusbrussee/caveman -g --skill caveman -y

If an enabled skill is missing, the widget and status output report it. The extension does not inject fallback instructions.

Uninstall

omp plugin uninstall omp-ponytail-caveman

Updating

For npm installs:

omp plugin uninstall omp-ponytail-caveman
omp plugin install omp-ponytail-caveman

For GitHub installs, clean reinstall is the reliable update path because the plugin manager may keep the existing Bun git checkout:

omp plugin uninstall omp-ponytail-caveman
omp plugin install github:phenome/omp-ponytail-caveman

Restart Oh My Pi after updating.

To refresh detached skills:

/ponytail install-skills
# or
/caveman install-skills

Publishing

Manual first publish:

npm login
npm run smoke
npm pack --dry-run
npm publish

Publish package name is unscoped: omp-ponytail-caveman.