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

avada-skills

v1.6.0

Published

CLI tool to install Avada Claude skills

Readme

avada-skills

CLI tool to install and publish Avada Claude skills from the Skills Directory or GitHub.

Installation

# Run directly with npx (no installation needed)
npx avada-skills install <skill-name>

# Or install globally
npm install -g avada-skills

Commands

Authentication

# Login to your Avada account
npx avada-skills login

# Check who you're logged in as
npx avada-skills whoami

# Logout
npx avada-skills logout

Install a skill

From Avada Skills Directory:

# Install a skill (interactive - prompts for agent selection)
npx avada-skills install shopify-api-essentials

# Install a specific version
npx avada-skills install [email protected]

# Skip prompts and install to all detected agents
npx avada-skills install shopify-api-essentials -y

# Specify which agents to install to
npx avada-skills install shopify-api-essentials --agents claude cursor

# Install globally to home directory
npx avada-skills install shopify-api-essentials --global

# Install to a specific directory
npx avada-skills install shopify-api-essentials --dir ./my-project

From GitHub:

# Install from a GitHub repository
npx avada-skills install https://github.com/owner/repo

# Install a specific skill from a multi-skill repo
npx avada-skills install https://github.com/vercel-labs/agent-skills --skill react-best-practices

# Install from a specific branch/path
npx avada-skills install https://github.com/owner/repo/tree/main/skills/my-skill

The CLI looks for skills in:

  • Repository root (if it has SKILL.md)
  • skills/ folder with subdirectories containing SKILL.md

What gets installed

Packages can contain both skills and commands:

.claude/
├── skills/           # Skill files (markdown instructions)
│   └── my-skill/
│       └── SKILL.md
└── commands/         # Command files (slash commands)
    └── my-command.md

Both are installed to the appropriate agent directories.

Supported agents

| Agent | Skills Path | Commands Path | |-------|-------------|---------------| | Claude Code | .claude/skills/ | .claude/commands/ | | Cursor | .cursor/skills/ | .cursor/commands/ | | Gemini CLI | .gemini/skills/ | .gemini/commands/ | | Antigravity | .agent/skills/ | .agent/commands/ | | Codex | .codex/skills/ | .codex/commands/ | | OpenCode | .opencode/skills/ | .opencode/commands/ | | Trae | .trae/skills/ | .trae/commands/ | | Windsurf | .windsurf/skills/ | .windsurf/commands/ |

List available skills

npx avada-skills list
npx avada-skills list --category development

Search for skills

npx avada-skills search react
npx avada-skills search "shopify api"

Publish a skill

Requires authentication. Run npx avada-skills login first.

# Publish from current directory's .claude/skills/<skill-name>
npx avada-skills publish my-skill

# Publish with metadata
npx avada-skills publish my-skill \
  --name "My Skill" \
  --description "A helpful skill" \
  --category development \
  --tags "react,frontend" \
  --version 1.0.0 \
  --changelog "Initial release"

Authentication Flow

  1. Run npx avada-skills login
  2. Visit the URL shown (https://dev.avada.io/skills/cli-auth)
  3. Login with your avada.io or mageplaza.com Google account
  4. Copy the CLI token
  5. Paste it in the terminal

Credentials are stored in ~/.avada/credentials.json.

Environment Variables

  • AVADA_SKILLS_API - Override the default API endpoint (default: https://dev.avada.io/api/skills)

Development

# Install dependencies
npm install

# Build
npm run build

# Watch mode
npm run dev

Publishing Updates

# Bump version and publish
npm version patch
npm publish