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

@iamramo/zanat-cli

v0.21.11

Published

CLI for zanat - a skill hub for AI agents

Readme

@iamramo/zanat-cli

CLI for Zanat, a skill hub for AI agents.

Installation

npm install -g @iamramo/zanat-cli

Requires Node.js v22+ and Git.

Commands

| Command | Description | | ------------------------------- | ------------------------------------------------------- | | zanat hub add | Add a new hub interactively | | zanat hub rm <name> | Remove a hub | | zanat hub switch <name> | Switch the active hub | | zanat hub list | List all configured hubs | | zanat hub pull | Pull latest changes from the hub | | zanat skill add [skill] | Add a skill, or all hub skills if no name is given | | zanat skill add <skill> --pin=<ref> | Add a skill pinned to a tag or commit SHA | | zanat skill rm [skill] | Remove a skill, or all added skills if no name is given | | zanat skill update [skill] | Update one or all non-pinned skills from the hub | | zanat skill list | List added skills with version info | | zanat skill search [query] | Search available skills in the hub | | zanat show <skill> | Show the full content of a skill | | zanat status | Show hub and skills status |

Version Tracking

By default, skills track the hub branch and stay current when you run zanat skill update.

To lock a skill to a specific point in time, pin it to a tag or commit SHA:

zanat skill add vercel.frontend.react-patterns               # tracks hub branch
zanat skill add vercel.frontend.react-patterns --pin=v1.2.0  # pinned to tag
zanat skill add vercel.frontend.react-patterns --pin=abc1234 # pinned to commit

Pinned skills never auto-update. Re-add without --pin to resume tracking.

Skill Format

Skills are markdown files with YAML frontmatter:

---
name: code-review
description: Helps review code for quality and best practices
---

# Code Review

Instructions for the agent go here...

Required: name, description

Optional: license, compatibility, disable-model-invocation, user-invocable, argument-hint, metadata

Skill names must be lowercase with hyphens (e.g. code-review, react-hooks) and match the folder name.

Configuration

Stored in ~/.zanat/config.json:

{
  "version": 1,
  "activeHub": "default",
  "hubs": {
    "default": {
      "url": "[email protected]:you/your-skills-hub.git",
      "branch": "main",
      "dir": "/Users/you/.zanat/hubs/default",
      "lastPull": "2026-03-23T12:00:00.000Z"
    }
  }
}

Troubleshooting

Enable debug mode for detailed error output:

zanat --debug <command>

"Failed to initialize" Ensure Git is installed and you have access to the hub repository.

"Failed to pull" Check the hub URL in ~/.zanat/config.json and network connectivity.

"Could not read the lock file" Run zanat hub add to create the initial configuration.

License

MIT