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

agentsmesh

v0.2.10

Published

One canonical source for AI coding agent rules, commands, skills, MCP, hooks, and permissions — synced across Claude Code, Cursor, Copilot, Continue, Junie, Gemini CLI, Cline, Codex CLI, Windsurf, Antigravity, and Roo Code.

Readme

AgentsMesh maintains a single canonical configuration in .agentsmesh/ and syncs it bidirectionally to Claude Code, Cursor, Copilot, Continue, Junie, Gemini CLI, Cline, Codex CLI, Windsurf, Antigravity, and Roo Code. Rules, commands, agents, skills, MCP servers, hooks, ignore patterns, and permissions -- all from one source of truth.

Full documentation: samplexbro.github.io/agentsmesh


Why AgentsMesh

  • One source of truth -- edit .agentsmesh/, generate everywhere. No more copy-pasting rules between tool directories.
  • Bidirectional sync -- import existing configs into canonical form and generate back out. No data loss, no manual reformatting.
  • Team-safe collaboration -- lock files track generated state, check catches drift in CI, merge resolves conflicts after git merge.
  • Lossless feature projection -- when a tool lacks native support for a feature, AgentsMesh projects it as an embedded skill with enough metadata to round-trip on re-import.

Installation

Requires Node.js 20 or later.

# npm
npm install -D agentsmesh

# pnpm
pnpm add -D agentsmesh

# yarn
yarn add -D agentsmesh

# or run directly
npx agentsmesh --help

The CLI is available as both agentsmesh and amsh.


Quick Start

New project

# Scaffold the canonical config directory
agentsmesh init

# Edit your root rule
# vi .agentsmesh/rules/_root.md

# Generate configs for all enabled targets
agentsmesh generate

Existing project with tool configs already in place

# Import your existing Cursor config (or any supported tool)
agentsmesh import --from cursor

# Generate output for all configured targets
agentsmesh generate

That's it. Your .agentsmesh/ directory is now the single source of truth, and the generated files for each tool stay in sync with it.


Supported Tools

| Feature | Claude Code | Cursor | Copilot | Gemini CLI | Cline | Codex CLI | Windsurf | Continue | Junie | Antigravity | Roo Code | |---------------|:-----------:|:-------:|:-------:|:----------:|:-------:|:---------:|:--------:|:--------:|:--------:|:-----------:|:--------:| | Rules | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | Native | | Commands | Native | Native | Native | Native | Native | Embedded | Native | Embedded | Embedded | Partial | Native | | Agents | Native | Native | Native | Native | Embedded| Native | Embedded | -- | Embedded | -- | -- | | Skills | Native | Native | Native | Native | Native | Native | Native | Embedded | Embedded | Native | Native | | MCP Servers | Native | Native | -- | Native | Native | Native | Partial | Native | Native | -- | Native | | Hooks | Native | Native | Partial | Partial | -- | -- | Native | -- | -- | -- | -- | | Ignore | Native | Native | -- | Native | Native | -- | Native | -- | Native | -- | Native | | Permissions | Native | Partial | -- | Partial | -- | -- | -- | -- | -- | -- | -- |

See the full feature matrix docs for details on native vs. embedded support.

Note: The canonical root rule always lives at .agentsmesh/rules/_root.md. Some targets write that content to a tool-specific main file named general (for example .continue/rules/general.md and .agents/rules/general.md for Antigravity) instead of _root.md on disk.


Documentation

The documentation site covers everything in detail:

  • Getting Started -- installation, quick start
  • Canonical Config -- rules, commands, agents, skills, MCP, hooks, ignore, permissions
  • CLI Reference -- all commands: init, generate, import, install, diff, lint, watch, check, merge, matrix
  • Configuration -- agentsmesh.yaml, local overrides, extends, collaboration, conversions
  • Guides -- adopting in existing projects, multi-tool teams, sharing config, CI drift detection, community packs
  • Reference -- how the generation pipeline works

Roadmap

See ROADMAP.md for planned features and release timeline.


Contributing

Contributions are welcome. Keep changes small, test them, and prefer editing canonical .agentsmesh/ sources over generated files.

pnpm install
pnpm build
pnpm test
pnpm lint
pnpm typecheck

License

MIT