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

apex-skill

v1.0.0

Published

Six agent skills for decomposing, learning from, validating, and replatforming complex software projects.

Readme

APEX

Agentic Production Engineering eXecution

A cross-platform skill framework for AI-driven replatforming, migration, and high-velocity engineering workflows. Built on the Agent Skills open standard, compatible with Claude Code, OpenAI Codex, Cursor, and OpenClaw.

What Is This?

APEX turns a single engineer into a team lead managing AI agents. Instead of writing code yourself, you decompose features into specs, delegate implementation to autonomous agents at the right trust level, and let self-correcting feedback loops handle the rest.

Inspired by the methodology described in Inside Kilo Speed and the self-improving agent patterns from Addy Osmani.

Skills

| Skill | Purpose | When to Use | |-------|---------|-------------| | apex-decompose | Extract feature specs from existing code | Before any migration or replatforming | | apex-replatform | Implement specs in a new architecture | After decomposition, when rebuilding | | apex-tier1 | Fire-and-forget autonomous execution | Clear tasks with objective pass/fail | | apex-tier2 | Guided execution with checkpoints | Multi-file changes needing steering | | apex-tier3 | Real-time pair programming | Architecture design, critical debugging | | apex-learn | Self-improvement and memory updates | After any task with friction or corrections |

Installation

Claude Code / Cursor / Windsurf

Copy the .agents/skills/ directory into your project root.

OpenAI Codex

Copy the .agents/skills/ directory into your project root. Codex auto-detects skills.

User-Level (All Projects)

Copy to ~/.agents/skills/ for skills available across all your repositories.

Cross-Platform Support

Every skill includes dual scripts:

  • scripts/*.sh for Linux and macOS (Bash)
  • scripts/*.ps1 for Windows (PowerShell)

The agent auto-detects the host OS and runs the appropriate script.

Quick Start

  1. Copy .agents/skills/ into your project
  2. Copy AGENTS.md to your project root (or let apex-learn create one)
  3. Start with: "Decompose the authentication module from src/auth/"
  4. Then: "Replatform this spec into the new Next.js architecture"
  5. After any friction: "What did we learn? Update the rules."

The Three Tiers

Choose your level of involvement based on task complexity:

Tier 1 — Fire and Forget: "Add unit tests for UserService." The agent works autonomously and opens a draft PR.

Tier 2 — Guided: "Refactor the payment module to use Stripe v3." The agent works in phases, pausing at checkpoints for your review.

Tier 3 — Pair: "Let's design the new event system architecture together." Real-time collaboration with every decision discussed.

The Self-Improvement Loop

APEX gets smarter over time. The apex-learn skill implements the two-strike rule: if you correct the agent on the same issue twice, it automatically adds a permanent rule to AGENTS.md. This means:

  • Session 1: "Use pnpm, not npm." Agent fixes it.
  • Session 2: "I said pnpm, not npm." Agent fixes it AND adds - Always use pnpm instead of npm to AGENTS.md.
  • Session 3+: The agent never makes this mistake again.

License

MIT