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

@agntxapp/agntx

v0.2.1

Published

Shared living project context for teams building with Claude

Readme

agntx

Shared living project context for teams building with Claude.

Context lives on a server, not on each developer's machine. Your team's decisions, architecture, and current state are injected into every Claude session automatically.

npx @agntxapp/agntx init

agntx.app · GitHub


The Problem

Every Claude session starts from scratch. In teams this compounds — each developer re-explains the same project, makes decisions nobody else knows about, wastes tokens on warmup every morning.

agntx fixes this. Context lives on a server. Run /status at the start of any session to pull your team's current state. Run /save at the end to push what you learned.


How It Works

1. Install

npx @agntxapp/agntx init

Detects your stack, pre-fills CLAUDE.md with community-maintained gotchas for your stack, and wires up the MCP server. Committed to git — every teammate gets it automatically via .mcp.json.

2. Pull

/status

The MCP server fetches your team's context from the server and injects it into the Claude session. Claude confirms understanding before touching anything.

3. Push

/save

Claude structures what happened — decisions made, files touched, what's next — and pushes to the team. You don't write anything.


The 4 Commands

| Command | When | What | |---------|------|------| | /status | Start of every session | Pulls context, confirms understanding | | /save | End of session | Claude extracts decisions and pushes to the team | | /resolve <id> A\|B\|both | After a conflict | Two devs saved at the same time — pick which wins | | /diff | Before starting work | Shows what changed since your last pull |


Stack Templates

agntx init detects your stack from package.json and pre-fills your CLAUDE.md with the things that actually bite people in production:

  • Expo + Supabase — RLS gotchas, EAS build checklist, auth edge cases
  • Next.js + Supabase — App Router + server client setup, getUser() vs getSession(), async cookies
  • Next.js + Prisma — PrismaClient singleton for hot reload, serverless connection exhaustion, $transaction() forms

No template for your stack? The wizard interviews you and generates the same output.


Decisions Log

Every /save captures not just what changed but why — and what was rejected. Append-only. Nothing is ever overwritten.

{
  "decision": "Use Supabase AI for embeddings",
  "reason": "Zero external dependencies, built into Edge Functions",
  "rejected_alternatives": ["OpenAI ada-002 — adds OpenAI dependency"]
}

Six months later, when someone asks "why don't we use X here?" — the answer is in the log.


Requirements


License

Apache 2.0 — agntx.app