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

claude-all-config

v3.0.1

Published

πŸ€– Universal AI CLI Config with Advanced Skills System - Quality Scoring, Scaffolding, Testing, Hooks & Multi-Agent Support (Claude Code, Cursor, Copilot, Gemini & 20+ More)

Readme

πŸ€– ClaudeAll

Universal AI CLI Configuration with Advanced Skills System

The most comprehensive AI agent configuration system with features beyond skills.sh:

  • βœ… Quality scoring (0-100)
  • βœ… Skill scaffolding generator
  • βœ… Built-in testing framework
  • βœ… Dependency management
  • βœ… Hooks system (pre/post install)
  • βœ… Multi-agent support (20+ agents)
  • βœ… Offline-first design

npm version GitHub


⚑ Quick Install

# npm (Recommended)
npm install -g claude-all-config

# curl
curl -fsSL https://raw.githubusercontent.com/zesbe/ClaudeAll/main/install.sh | bash

Termux Android:

pkg install nodejs-lts git
npm install -g claude-all-config

πŸ†• What's New in v3.0.0

🎯 Advanced Skills CLI

# List all skills with quality scores
claude-all-skills list

# Create new skill from template
claude-all-skills create my-awesome-skill

# Validate skill quality
claude-all-skills validate my-skill

# Run skill tests
claude-all-skills test my-skill

# Export for publishing
claude-all-skills export my-skill

# View statistics
claude-all-skills stats

πŸ“Š Quality Scoring System

Every skill gets a quality score (0-100) based on:

  • βœ… Has SKILL.md (+25)
  • βœ… Has frontmatter (+10)
  • βœ… Has description (+10)
  • βœ… Has examples (+15)
  • βœ… Has code blocks (+10)
  • βœ… Has tests (+15)
  • βœ… Has skill.json (+10)
  • βœ… Has creation log (+5)

πŸͺ Hooks System

Define lifecycle hooks in skill.json:

{
  "hooks": {
    "preInstall": "setup.sh",
    "postInstall": "npm install",
    "preUninstall": "cleanup.sh"
  }
}

πŸ”— Dependency Management

Skills can depend on other skills:

{
  "dependencies": [
    "systematic-debugging",
    "test-driven-development"
  ]
}

🎯 Supported AI Agents

| Agent | Support | |-------|---------| | Claude Code | βœ… Full | | Cursor | βœ… Full | | GitHub Copilot | βœ… Full | | Gemini CLI | βœ… Full | | Windsurf | βœ… Full | | OpenCode | βœ… Full | | Roo | βœ… Full | | Kilo | βœ… Full | | Goose | βœ… Full | | Codex | βœ… Full | | Trae | βœ… Full | | + 10 more | βœ… |


πŸ“¦ What's Included

πŸ€– Agents (14)

| Agent | Description | |-------|-------------| | proactive-mode | Default. Autonomous - langsung gas tanpa nanya | | code-generator | Generate code dari requirements | | code-reviewer | Review code quality & best practices | | security-auditor | Security vulnerability scanning | | test-generator | Generate unit/integration tests | | doc-generator | Generate documentation | | api-tester | Test API endpoints | | performance-analyzer | Analyze & optimize performance | | accessibility-reviewer | Check accessibility compliance | | component-generator | Generate UI components | | migration-generator | Generate DB migrations | | readme-generator | Generate README files | | terraform-generator | Generate Terraform/IaC configs | | ai-prompt-optimizer | Optimize AI prompts |

⚑ Skills (60+)

| Category | Skills | |----------|--------| | Development | api-development, database-development, frontend-design, mobile-development, backend-dev | | Quality | code-quality, test-driven-development, integration-testing, testing-anti-patterns | | Planning | brainstorming, writing-plans, executing-plans | | Review | requesting-code-review, receiving-code-review, security-review, ui-ux-review | | Debug | systematic-debugging, root-cause-tracing, error-handling | | Deploy | deployment, defense-in-depth | | Advanced | subagent-driven-development, dispatching-parallel-agents, condition-based-waiting |

πŸ“ Commands (3)

| Command | Description | |---------|-------------| | /brainstorm | Start a brainstorming session | | /write-plan | Write a development plan | | /execute-plan | Execute an existing plan |

πŸ”§ MCP Servers (6)

| Server | Description | |--------|-------------| | context7 | Documentation & library context | | exa | Web search & crawling | | sequential-thinking | Step-by-step reasoning | | memory | Knowledge graph persistence | | filesystem | File system access | | fetch | HTTP requests |


πŸ†š ClaudeAll vs skills.sh

| Feature | skills.sh | ClaudeAll | |---------|-----------|-----------| | Skill registry | βœ… | βœ… | | Quality scoring | ❌ | βœ… 0-100 | | Skill scaffolding | ❌ | βœ… create | | Testing framework | ❌ | βœ… Built-in | | Dependencies | ❌ | βœ… | | Hooks system | ❌ | βœ… pre/post | | Agents | ❌ | βœ… 14 agents | | Commands | ❌ | βœ… 3 commands | | Offline support | ❌ | βœ… | | Export for npm | ❌ | βœ… |


πŸ”₯ Multi-Provider Launcher

The claude-all script supports 17+ AI providers:

claude-all              # Claude (default)
claude-all gemini       # Gemini
claude-all openai       # OpenAI
claude-all glm          # ZhipuAI
claude-all minimax      # MiniMax
claude-all deepseek     # DeepSeek
claude-all groq         # Groq
claude-all ollama       # Ollama (local)

πŸ“ Project Structure

ClaudeAll/
β”œβ”€β”€ agents/              # 14 AI agents
β”œβ”€β”€ skills/              # 60+ skills
β”œβ”€β”€ commands/            # 3 commands
β”œβ”€β”€ hooks/               # Session hooks
β”œβ”€β”€ lib/                 # Core libraries
β”‚   └── skill-hooks.js   # Hooks system
β”œβ”€β”€ bin/
β”‚   └── skills-cli.js    # Skills CLI
β”œβ”€β”€ models/              # 17 provider configs
β”œβ”€β”€ index.js             # Main module
β”œβ”€β”€ claude-all           # Multi-provider launcher
└── install.sh           # Universal installer

πŸ”„ Update

npm update -g claude-all-config

πŸš€ Usage

Skills CLI

# List all skills
claude-all-skills list

# Create new skill
claude-all-skills create my-skill

# Validate before publish
claude-all-skills validate my-skill

Claude Code

# Start with superpowers
claude

Multi-Provider

claude-all gemini
claude-all deepseek

πŸ“œ License

MIT License - see LICENSE


Made with ❀️ by zesbe