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

aam-cli

v0.1.0

Published

Agent Asset Management CLI — backup, restore, sync your Claude/CodeBuddy/Cursor agents/MCPs/skills/memory across machines

Readme

aam-cli

CLI for Aamira (Agent Asset Management) — backup, restore, sync your Claude / CodeBuddy / Cursor agents · MCPs · skills · memory across machines.

npm License: MIT


Install

npm install -g aam-cli@beta

Verify:

aam --version

Quick start

# 1. Login (email + 6-digit OTP)
aam login --email [email protected]

# 2. Scan local IDE configs and upload everything
aam backup

# 3. On a different machine, restore everything
aam login --email [email protected]
aam restore --ide claude

# 4. Migrate your Claude assets to Cursor
aam migrate claude cursor

Commands

| Command | Description | |---|---| | aam login | Email magic-link or OTP login | | aam logout | Clear local credentials | | aam whoami | Show current user + device + API base | | aam backup | Scan local IDEs, upload all agents/MCPs/skills/memory | | aam restore | Download cloud assets to local IDE | | aam sync | Two-way sync (local + cloud) | | aam migrate <from> <to> | Migrate assets between IDEs | | aam export -o <dir> | Export all cloud assets to JSON files | | aam record "<text>" | Manually record a memory entry |

Run aam <command> --help for detailed options.

Supported IDEs

  • Claude Code (~/.claude/) — agents, MCPs, skills, memory
  • CodeBuddy (~/.codebuddy/) — agents, MCPs, skills, memory
  • Cursor (~/.cursor/) — agents (rules), MCPs, memory (no skill support)

Asset types

  • agent_config — agent definitions (system prompts, tool configs)
  • mcp — MCP server configs (command + args + env)
  • skill — skill packages (markdown + scripts directory)
  • memory — long-term context (markdown / facts) — industry first

Storage

  • Assets ≤ 512KB are stored inline in DB (fast queries)
  • Larger payloads (e.g. skill bundles) automatically use cloud object storage
  • Every change creates a new version — full history retained

Privacy

  • All data is encrypted in transit (HTTPS)
  • Memory assets will support end-to-end encryption (M0.5+)
  • Your assets are private by default; explicitly mark visibility: public to share via Hub (M0.5+)

Development

git clone https://github.com/WanfengzzZ/aam-cli.git
cd aam-cli
pnpm install
pnpm dev login --email [email protected]    # run from source
pnpm test                                   # 24 tests
pnpm build                                  # → dist/cli.mjs

License

MIT © WanfengzzZ

Links

  • 🌐 Web: https://aam.dev
  • 📚 Docs: https://aam.dev/docs
  • 🐛 Issues: https://github.com/WanfengzzZ/aam-cli/issues
  • 💬 Feedback: [email protected]