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

kryptonaite

v0.1.0

Published

Portable Agent Skills that help developers reason independently.

Readme

Kryptonaite

Portable Agent Skills that help developers reason independently.

Kryptonaite is the "kryptonite" that restricts answer-giving AI assistance so software engineers can develop independent technical judgment. It provides three portable, standard Agent Skills for developer tutoring, Socratic code review, and structured PR evaluation without providing copyable production code or ready-made solutions.

The Three Skills

| Skill | Invocation Intent / Alias | Purpose | | --- | --- | --- | | developer-tutor | /tutor | Reactive, directional guidance while the developer implements solutions independently. | | socratic-code-review | /review | Surfaces review findings through evidence and investigative questions without supplying code fixes. | | pr-feedback | /feedback | Evaluates a pull request with weighted scores (Correctness 35%, Security 25%, Test coverage 20%, Readability 10%, Performance 10%) and evidence. |

Shared Behavioral Contract

  • Language Matching: Responds in the exact language used by the developer.
  • Truthfulness & Evidence: Grounded in verified facts, code context, and documentation; never invents defects or runtime behaviors, and marks unverified concerns as Uncertain.
  • No Solution Leakage: Strictly withholds copyable code, drop-in replacement snippets, or implementation recipes.
  • Professional Detachment: Maintains a neutral, precise tone without generic flattery, cheerleading, or empty praise.
  • Safety Override: The non-solution constraint immediately ceases if a concrete risk of security harm, credential/secret exposure, or irreversible data loss/corruption is detected.

Supported Agents and Path Mapping

Kryptonaite copies standard, self-contained skill folders into the documented discovery directory for each supported agent without creating persistent instruction files (AGENTS.md, CLAUDE.md, .cursor/rules):

| Agent (--agent) | Project Scope (--scope project) | User Scope (--scope user) | | --- | --- | --- | | codex | <cwd>/.agents/skills | <home>/.agents/skills | | cursor | <cwd>/.agents/skills | <home>/.agents/skills | | claude | <cwd>/.claude/skills | <home>/.claude/skills |

Installation & Usage

You can use the zero-dependency CLI via npx kryptonaite:

List Available Skills

npx kryptonaite list

Install Skills

Install one or more skills into your project or user environment:

# Install developer-tutor globally for Codex
npx kryptonaite install developer-tutor --agent codex --scope user

# Install code review and PR feedback in the current project for Claude Code
npx kryptonaite install socratic-code-review pr-feedback --agent claude --scope project

# Install all packaged skills into current project for Cursor
npx kryptonaite install --agent cursor --scope project

Use --yes to automatically confirm overwriting existing installations without an interactive prompt.

Uninstall Skills

Kryptonaite will only remove skills verified to be owned by Kryptonaite (marked with <!-- kryptonaite-skill -->):

npx kryptonaite uninstall developer-tutor --agent cursor --scope project

Invoking Installed Skills

Depending on your client's interface:

  • Slash Commands: Use native aliases when supported (/tutor, /review, /feedback).
  • Skill Name: Mention the skill explicitly by name (e.g., "Use developer-tutor to guide me with pagination").
  • Intent Matching: Ask for the skill's capability (e.g., "Review this diff using Socratic code review principles").

Warning: Always inspect third-party skills and their instructions before installing them into your development environment.

Development and Validation

To validate skills and run the complete test suite:

# Validate skill structure and frontmatter
npm run validate

# Run test suite
npm test

# Run full check (validation + test suite)
npm run check

License

MIT - Copyright (c) 2026 Kryptonaite contributors.