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

@eugeniughelbur/agents-md

v0.1.0

Published

Generate and safely maintain AGENTS.md, the cross-tool standard for AI coding agents. Non-destructive re-runs, never fabricates.

Readme

One AGENTS.md works across Codex, Cursor, GitHub Copilot, Gemini CLI, Aider, Windsurf, Zed, Devin, and more. CLAUDE.md is pointed at it via symlink. This skill writes a great one for you by reading your repo, and it is safe to re-run: it only updates the regions it generated and never clobbers anything you wrote by hand.

Backed by the standard: AGENTS.md started at OpenAI (2025) and is now under the Linux Foundation's Agentic AI Foundation, used in 60,000+ repositories.

Why this one

  • Aligned with the standard. Targets AGENTS.md, not a private format only one tool reads.
  • Safe, non-destructive re-runs. Generated sections are wrapped in HTML-comment markers. Re-running refreshes only those zones. Your hand-written content (and the ## Notes section) is never touched. If a hand-written AGENTS.md already exists with no markers, it is left alone and a AGENTS.generated.md is written beside it instead.
  • Never fabricates. Facts are read from your repo (manifests, scripts, Makefile, git history, CI, .env.example). Anything it cannot find is left as a clearly-marked stub for you to fill, never invented.
  • Boundaries-first. Every file gets the three-tier guardrail (✅ Always / ⚠️ Ask first / 🚫 Never), the section GitHub's analysis of 2,500+ repos found most prevents destructive mistakes.
  • One source, every tool. Symlinks CLAUDE.md (and optionally Cursor / Copilot configs) to the same AGENTS.md.

What it generates

A lean (~200 line) AGENTS.md with: Overview, Commands, Testing, Project structure, Code style & conventions, Git workflow, Gotchas, Security & secrets, and a three-tier Boundaries section. See templates/AGENTS.template.md.

AGENTS.md vs CLAUDE.md vs .cursorrules vs llms.txt

| File | Read by | What it is | |---|---|---| | AGENTS.md | Codex, Cursor, Copilot, Gemini CLI, Aider, Windsurf, Zed, Devin, and more | The cross-tool standard for agent instructions (Linux Foundation / Agentic AI Foundation) | | CLAUDE.md | Claude Code | Tool-specific; symlink it to AGENTS.md | | .cursorrules / .cursor/rules | Cursor | Tool-specific (Cursor also reads AGENTS.md) | | .github/copilot-instructions.md | GitHub Copilot | Tool-specific (Copilot also reads AGENTS.md) | | llms.txt | LLMs / AI search engines | For documentation websites, not repo agent instructions |

The convergence: write one AGENTS.md and symlink the rest. agents-md does exactly that.

Use it

As a CLI (any repo, no API key, zero dependencies):

cd your-repo
npx github:eugeniughelbur/agents-md

It scans the repo, writes or refreshes AGENTS.md, symlinks CLAUDE.md to it, and reports which sections it filled vs left as stubs for you to complete. Flags: --dry-run, --no-symlink. Run it again any time, it is a safe refresh, never a reset.

As a Claude Code skill (LLM-powered, richer):

npx skills add eugeniughelbur/agents-md

Then run /agents-md in any repo. The skill reads your code intelligently and writes deeper content (real gotchas, real boundaries); the CLI is the fast, deterministic, zero-setup option. Both honor the same safe-marker contract.

The marker contract

<!-- agents-md:begin id=commands -->     content here is regenerated on re-run
...
<!-- agents-md:end id=commands -->

Everything outside the markers is yours and is preserved forever. Put durable custom notes in ## Notes.

FAQ

What is AGENTS.md? AGENTS.md is an open, cross-tool standard file that tells AI coding agents how to work in your repository: its build and test commands, code conventions, gotchas, and do-not-touch boundaries. It originated at OpenAI in 2025 and is now governed by the Linux Foundation's Agentic AI Foundation. Think of it as a README for agents.

AGENTS.md vs CLAUDE.md, which should I use? Use AGENTS.md as the single source, then symlink CLAUDE.md to it. Most agents read AGENTS.md natively; Claude Code reads CLAUDE.md, so the symlink covers both. agents-md sets this up for you automatically.

How do I generate an AGENTS.md? Run npx github:eugeniughelbur/agents-md in your repo. It detects your stack, commands, and structure, writes AGENTS.md, and symlinks CLAUDE.md. Anything it cannot detect is left as a clearly marked stub for you to fill in.

Is it safe to re-run? Will it overwrite my edits? Yes, it is safe. Re-runs refresh only the regions wrapped in HTML-comment markers; everything outside the markers is preserved. A handwritten AGENTS.md with no markers is never overwritten, agents-md writes AGENTS.generated.md instead.

Does it need an API key or send my code anywhere? No. The CLI has zero dependencies, makes no network calls, and reads only repo metadata (and .env.example, never real secret values).

License

MIT