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

gm-kilo

v2.0.78

Published

State machine agent with hooks, skills, and automated git enforcement

Readme

gm for Kilo CLI

Installation

One-liner (recommended)

Install directly from npm using bun x:

bun x gm-kilo@latest

This command will automatically install gm-kilo to the correct location for your platform and restart Kilo to activate.

Manual installation

Windows and Unix:

git clone https://github.com/AnEntrypoint/gm-kilo ~/.config/kilo/plugin && cd ~/.config/kilo/plugin && bun install

Windows PowerShell:

git clone https://github.com/AnEntrypoint/gm-kilo "\$env:APPDATA\kilo\plugin" && cd "\$env:APPDATA\kilo\plugin" && bun install

Step 2: Configure MCP Servers

Kilo uses the OpenCode configuration format. Create or update ~/.config/kilo/opencode.json:

{
  "\$schema": "https://opencode.ai/config.json",
  "mcp": {
    "dev": {
      "type": "local",
      "command": ["bun x", "mcp-gm@latest"],
      "timeout": 360000,
      "enabled": true
    },
    "code-search": {
      "type": "local",
      "command": ["bun x", "codebasesearch@latest"],
      "timeout": 360000,
      "enabled": true
    }
  }
}

Step 3: Update Kilo Configuration

Update ~/.config/kilo/kilocode.json to reference the plugin:

{
  "\$schema": "https://kilo.ai/config.json",
  "default_agent": "gm",
  "plugin": ["/home/user/.config/kilo/plugin"]
}

Replace /home/user with your actual home directory path.

Step 4: Verify Installation

Start Kilo and verify the tools appear:

kilo

Check MCP tools are connected:

kilo mcp list

You should see dev and code-search marked as connected.

Features

  • MCP tools - Code execution (dev) and semantic search (code-search)
  • State machine agent - Complete gm behavioral rule system
  • Git enforcement - Blocks uncommitted changes and unpushed commits on session idle
  • AST analysis - Automatic codebase analysis via mcp-thorns on session start
  • .prd enforcement - Blocks exit if work items remain in .prd file

Troubleshooting

MCP tools not appearing:

  • Verify ~/.config/kilo/opencode.json exists with correct MCP server definitions
  • Check that plugin path in kilocode.json points to the correct directory
  • Run kilo mcp list to verify servers are connected
  • Restart Kilo CLI completely

Plugin not loading:

  • Verify plugin path in kilocode.json is absolute (e.g., /home/user/.config/kilo/plugin, not relative)
  • Check index.js and gm.mjs exist in the plugin directory
  • Run bun install in the plugin directory to ensure dependencies are installed

The plugin activates automatically on session start once MCP servers are configured.