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

link-agents

v1.0.4

Published

Synchronize agent guidance (AGENTS, commands, rules, skills, MCP configs) across AI coding assistants.

Readme

link-agents

Synchronize canonical .agents assets across AI coding assistants.

Quick Start

npx link-agents sync

This command:

  1. Reads canonical assets from .agents/
  2. Bootstraps missing canonical assets from legacy client files when possible
  3. Warns about unsupported legacy inputs like ~/.cursor/rules/*
  4. Fans out canonical assets to client-specific locations
  5. Creates a restore point before mutating targets

Canonical Layout

.agents/
  AGENTS.md
  commands/
  skills/
  mcp.json

link-agents treats .agents/* as the source of truth once those files exist.

Commands

sync

Bootstrap canonical assets if needed, then sync them to supported clients.

npx link-agents sync
npx link-agents sync --dry-run
npx link-agents sync --link
npx link-agents sync --copy
npx link-agents sync --separate-claude-md
npx link-agents sync --bootstrap-source claude
npx link-agents sync --clients claude,cursor
npx link-agents sync --types agents,mcp

Notes:

  • --link prefers symlinks when target bytes can exactly reuse canonical bytes.
  • --copy always writes independent copies.
  • If neither flag is provided and the terminal is interactive, sync asks which write mode to use.
  • --separate-claude-md leaves CLAUDE.md unmanaged for that run.
  • If bootstrap is ambiguous, interactive sync asks which client to use; non-interactive sync requires --bootstrap-source.

doctor

Inspect canonical sync health, ignored legacy inputs, broken generated targets, and canonical assets eligible for bootstrap.

npx link-agents doctor
npx link-agents doctor --verbose

restore

Restore sync-managed targets from a snapshot.

npx link-agents restore --latest
npx link-agents restore --list
npx link-agents restore --id <snapshot-id>
npx link-agents restore --latest --dry-run

Supported Clients

Public sync targets only home-directory clients. The repo-local .agents/* tree is canonical storage, not a public client target.

| Client | Root | Agents | Commands | Skills | MCP | | --------- | -------------------- | ----------- | -------------------------------- | ------------------------------------- | -------------- | | codex | ~/.codex | AGENTS.md | skills/commands/**/SKILL.md | skills/**/SKILL.md | config.toml | | claude | ~/.claude | CLAUDE.md | commands/**/*.md | — | — | | cursor | ~/.cursor | AGENTS.md | commands/**/*.md | — | mcp.json | | opencode| ~/.config/opencode | AGENTS.md | command/**/*.md | skill/**/SKILL.md | opencode.json |

Behavior Notes

  • ~/.cursor/rules/* is treated as an unsupported legacy input. It is reported by sync/doctor, but never imported into canonical storage.
  • CLAUDE.md can be left unmanaged with --separate-claude-md.
  • Restore points are created before sync mutates targets.
  • Generated symlinks always point back to canonical .agents/* sources, not to legacy client files.
  • Public sync does not read from or write to legacy project-level command locations.