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

geon-agent

v0.1.13

Published

GEON — multi-provider ACP agent for Claude and Gemini with L1/L2/L3 context pipeline

Readme

Geon: Quick Start Tutorial 🚀

Geon is an advanced Agent Client Protocol agent built for the Zed editor. It gives your LLM (Claude, Gemini, or Local) full control over your filesystem, shell, and the web.


⚡ 1. Install Geon

Install it globally using your favorite package manager:

# Using Bun (Fastest)
bun install -g geon-agent

# Using NPM
npm install -g geon-agent

Check the binary path to use in Zed:

which geon

⚙️ 2. Configure Zed

Open your Zed settings.json (Cmd + ,) and add the following agents block:

"agents": {
  "geon": {
    "command": "/usr/local/bin/geon", // Replace with your 'which geon' output
    "settings": {
      "google_api_key": "YOUR_GEMINI_API_KEY",
      "google_enabled": true,
      "anthropic_api_key": "YOUR_CLAUDE_API_KEY",
      "anthropic_enabled": true,
      "local_enabled": false // Set to true if running a local LLM
    }
  }
}

🌩️ 3. Start Sidecar Services (Optional)

Geon features a private Web Search tool powered by SearXNG. To use it, you can run the included helper script:

# In your source directory, or download geon-env.sh
./geon-env.sh start

This starts a local SearXNG container (Podman/Docker) and a local LLM server (llama-server).


🧤 4. Your First Geon Prompt

Once setup, open an ACP session in Zed and select Geon as your agent.

Try asking it to perform a complex cross-file task:

"Find all TODOs in this project using Grep, research the latest Zed plugin API changes with WebSearch, and write a summary in a new file called ARCHITECTURE_PLAN.md."


🧠 Why Geon?

The Context Strategy: L1/L2/L3

Unlike simple agents, Geon manages its memory like a human developer:

  • L1 (Active): Recent messages kept in full fidelity.
  • L2 (Context): Middle-range messages summarized to save tokens.
  • L3 (Archive): Old messages archived for deep retrieval.

Multi-Provider Agentic Loop

Geon doesn't just "propose" edits. It executes them, sees the output, fixes bugs, and continues until the job is done.

Built-in Tool Matrix

| Filesystem | Shell | Web & Search | | :--- | :--- | :--- | | Read, Write | Bash | WebSearch (SearXNG) | | Edit, LS | | WebFetch (Readable Text) | | Glob, Find | | GoogleGroundedSearch |


📜 License

MIT © 2026 Stanley Xie