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

@compilorama/llmon-cli

v1.2.0

Published

LLM context files manager

Readme

llmon-cli

llmon helps you manage LLM context files on Cursor across multiple projects.

Instead of duplicating AGENTS.md, SKILLS.md and Cursor rules in every repository, llmon keeps a single source of truth in your home directory and links it into each project you harness. Update the context files once, and every harnessed project stays in sync.

Installation

npm i -g @compilorama/llmon-cli

Usage

Using llmon is a three-step workflow:

  1. Initialize llmon. This creates a central llmon directory in your home folder, which will hold the LLM context files shared across all your projects.

    llmon init

    It will create the following structure:

    ~/llmon/
    ├── AGENTS.md
    └── SKILLS.md
  2. Populate AGENTS.md and SKILLS.md. Open the files created by init and write down the behavior, coding standards and capabilities you want your LLM to follow.

  3. Harness your projects. For each project you want to apply these context files to, run harness pointing to the project directory. This exposes the shared context to Cursor through an isolated .llmon entry inside the project.

    llmon harness ./path/to/your/project

    From this point on, Cursor will follow the instructions defined in ~/llmon/AGENTS.md and ~/llmon/SKILLS.md while working on that project, regardless the agent selected inside the editor (Codex, Opus, etc).

API

llmon exposes the following commands.

init

llmon init

Creates the central context directory at ~/llmon (if it doesn't exist yet) and scaffolds two empty files inside it:

  • ~/llmon/AGENTS.md
  • ~/llmon/SKILLS.md

These files are where you describe the behavior, coding standards and capabilities your LLM should follow across all harnessed projects.

harness

llmon harness <directory>

Wires a project up to your central llmon context. Given a target <directory> (absolute or relative), it will:

  1. Create a symlink <directory>/.llmon pointing to ~/llmon, so the project can read the shared AGENTS.md and SKILLS.md without copying them.
  2. Write a <directory>/.cursorrules file that instructs Cursor to follow the rules defined in ./.llmon/AGENTS.md and ./.llmon/SKILLS.md.
  3. Append .llmon and .cursorrules to <directory>/.git/info/exclude, so these entries are ignored locally by Git without touching the project's shared .gitignore.

After harnessing, the project contains:

<directory>/
├── .llmon -> ~/llmon
└── .cursorrules

--help

llmon --help
llmon -h

Prints a brief usage message listing all available commands. -h is a short alias for --help.

--version

llmon --version
llmon -v

Prints the installed llmon-cli version (as published to npm). -v is a short alias for --version.

How to contribute

Requirements

Running the project locally

  1. Clone the repository:

    git clone https://github.com/compilorama/llmon-cli.git
    cd llmon-cli
  2. Install dependencies:

    npm install
  3. Run the test suite:

    npm test
  4. Lint the source code:

    npm run format
  5. Build the distributable output (transpiles src/ into dist/):

    npm run build