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

skills-avada

v1.0.0

Published

CLI tool to install Avada Claude skills

Readme

skills-avada

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

Installation

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

# Or install globally
npm install -g skills-avada

Commands

Authentication

# Login to your Avada account
npx skills-avada login

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

# Logout
npx skills-avada logout

Install a skill

From Avada Skills Directory:

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

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

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

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

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

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

From GitHub:

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

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

# Install from a specific branch/path
npx skills-avada 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 skills-avada list
npx skills-avada list --category development

Search for skills

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

Publish a skill

Requires authentication. Run npx skills-avada login first.

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

# Publish with metadata
npx skills-avada 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 skills-avada login
  2. Visit the URL shown (https://skills-avada.web.app/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://skills-avada.web.app/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