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

alpha-skill

v0.0.3

Published

Engineering-grade framework for AI automation agents. Auto-installs Claude Code skills on npm install.

Downloads

288

Readme

Alpha Skill

npm version npm downloads License: MIT

Engineering-grade framework for AI automation agents.

Alpha Skill is a structured framework for defining, generating, and validating executable skills. It treats natural language prompts as software artifacts, enforcing strict architectural patterns for security, determinism, and reliability.

⚡ Quick Start

# Install via npm (auto-installs to Claude Code, Cursor, and OpenCode)
npm install alpha-skill

# Or clone and use directly
git clone https://github.com/yawningphantom/alpha-skill.git && cd alpha-skill
claude
/alpha-skill Create a skill for code reviews

Alpha Skill (alpha-skill) 🚀

Purpose: Production-ready skill generator with automatic quality refinement using Reinforcement Learning loop.

Features:

  • 4-Agent Architecture: Orchestrates Generator → Adversary → Evaluator → Optimizer loop
  • Automatic Refinement: Iterates until score ≥90 and all tests pass
  • Empirical Testing: Generates and runs adversarial test cases
  • Production Hardened: Survives injection attacks, edge cases, and boundary conditions
/alpha-skill "Create a skill that audits AWS security groups for open ports"
# → Generates v1 → Tests (7/10 fail) → Refines v2 → Tests (13/13 pass) ✅

Installation

Automatic (Recommended)

npm install alpha-skill

This automatically installs all skills to:

  • Claude Code: ~/.claude/skills/
  • Cursor: ~/.cursor/rules/
  • OpenCode: ~/.opencode/commands/

Manual

git clone https://github.com/yawningphantom/alpha-skill.git
cd alpha-skill

# Claude Code
cp -r skills/skill-* ~/.claude/skills/

# Cursor
mkdir -p ~/.cursor/rules
cp skills/skill-*/SKILL.md ~/.cursor/rules/

# OpenCode
mkdir -p ~/.opencode/commands
cp skills/skill-*/SKILL.md ~/.opencode/commands/

🚀 Claude Code

claude
/alpha-skill Create a skill for code reviews

💻 Cursor Editor

# Reference in Cursor:
@alpha-skill create a skill for API testing

🖥️ OpenCode

# Use as a custom command:
/alpha-skill "Create a skill for code reviews"

Quick Start

# Generate your first production-ready skill (automatic RL loop)
/alpha-skill "Create a skill that reviews pull requests for security issues"
# → Generates v1 → Tests → Refines → Tests → Production-ready ✅

Common Usage Patterns

Generate production-ready skill (Recommended):

/alpha-skill "Create a skill for [task]" --target 90
# Automatic refinement until score ≥90 and all tests pass

Skill Types

The framework defines four immutable patterns:

  1. Reference: Static documentation and lookups.
  2. Command: Parameterized execution of specific actions.
  3. Workflow: Sequential, multi-step procedures with state.
  4. Interactive: Complex branching logic and user-guided decision trees.

Enforcement components

  • Input Sandwiching: XML isolation for untrusted user input.
  • Meta-Structure: Strict section ordering (Overview -> Input -> Process -> Output).
  • Cognitive Manifest: Runtime selection of required reasoning models (CoT, CoD).

Documentation

Core Guides

Distribution & Sharing

Publishing to npm

# 1. Bump version (patch/minor/major)
npm version patch   # 0.0.1 → 0.0.2
npm version minor   # 0.0.2 → 0.1.0
npm version major   # 0.1.0 → 1.0.0

# 2. Publish
npm publish

# 3. Push the version tag to git
git push && git push --tags

License

MIT License