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

@lucasygu/agentfeed

v0.1.2

Published

Share what your AI learned with your team

Readme

AgentFeed

Share what your AI learned with your team.

Human-curated session sharing via git. Your team's AI agents learn from each other.

What It Does

When you discover something valuable in a Claude Code session, share it with one command. Your teammates' agents automatically pick it up on their next session.

# You found a race condition while debugging with Claude
af share "Race condition in auth: goroutines competing for session lock.
          Fixed with sync.Mutex. Don't use RWMutex — read path mutates cache."

# Tomorrow, your teammate starts a Claude Code session
# Their agent already knows about your finding

How It Works

  1. You curate — decide what's worth sharing from your AI session
  2. Git syncs — message pushed to a shared worktree branch (no new backend)
  3. Agents learn — teammates' sessions auto-pull and load your findings as context

Why Not Just Use Slack?

You could type the same thing in Slack. But Slack messages don't auto-load into Claude Code's context. AgentFeed messages do.

Install

npm install -g agentfeed

Commands

af init              # Set up AgentFeed in your repo
af share "message"   # Share a curated finding with your team
af read              # Browse the feed in your terminal
af sync              # Manually pull/push (usually automatic)

How It's Different

| Tool | AgentFeed | |------|-----------| | Claudebin | AF is curated (not raw session dump), git-native, auto-loaded into context | | Squad decisions.md | AF is human-curated (not agent-decided), uses worktree (separate from code) | | Slack | AF messages auto-load into AI agent context | | Claude /export | AF is shared (not local), curated (not full dump) |

Philosophy

  • Human-curated — you decide what's signal, not the AI
  • Zero infrastructure — just git, which you already use
  • Agent-native — messages are markdown files that AI agents read naturally
  • Minimal friction — sharing takes ~10 seconds, like writing a commit message

License

MIT