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

cortex-kit

v1.1.0

Published

CLI tool that scaffolds AI-native projects with AGENTS.md specifications

Readme

cortex-kit

CLI tool that scaffolds AI-native projects with AGENTS.md specifications for AI coding assistants.

Features

  • Single command to initialize AI-native project structure
  • AGENTS.md template with software development best practices
  • Framework-agnostic (works with any tech stack)
  • Compatible with 20+ AI coding tools (Claude Code, GitHub Copilot, Cursor, etc.)
  • Zero dependencies

Installation

# Use with npx (no installation needed)
npx cortex-kit init my-project

# Or install globally
npm install -g cortex-kit
cortex-kit init my-project

Usage

Create a new project

npx cortex-kit init my-awesome-project
cd my-awesome-project

Initialize in current directory

npx cortex-kit init .

Enable AI features in an existing project

cd your-existing-project
npx cortex-kit enable

The enable command is perfect for adding AI context to existing projects:

  • Skips AGENTS.md if it already exists
  • Appends AI setup section to existing README.md (or creates new one)
  • Always creates CLAUDE.md and docs/ directory

What Gets Generated

  • AGENTS.md - Project context for AI coding agents (workflows, testing, conventions)
  • CLAUDE.md - Reference to AGENTS.md for Claude Code
  • README.md - Setup instructions for your team
  • docs/ - Empty directory for architecture documentation

Next Steps After Generation

  1. Customize AGENTS.md with your project details:

    • Update project overview
    • Add build and test commands
    • Specify coding conventions
    • Add project-specific guidelines
  2. Start coding with AI assistants (Claude Code, Copilot, Cursor, etc.)

  3. Document architecture decisions in docs/

Why AGENTS.md?

AGENTS.md is an open standard used by 60,000+ projects to provide context to AI coding agents. It's like a README for AI - containing build steps, conventions, and practices that AI agents need to work effectively.

Learn more: agents.md

Requirements

  • Node.js 18 or higher

License

MIT


AI-Native Development

This project is configured for AI-native development with AI coding assistants.

AI Configuration Files

  • AGENTS.md: Project context and conventions for AI coding agents (Claude Code, GitHub Copilot, Cursor, etc.)
  • CLAUDE.md: Reference file that points Claude Code to AGENTS.md

Working with AI Assistants

AI coding assistants will automatically read AGENTS.md to understand:

  • How to build and test your project
  • Code quality standards to follow
  • Testing requirements
  • Documentation expectations

Customize AGENTS.md with your project-specific build commands, test commands, and conventions.

Generated with cortex-kit