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

@rosaki/saki

v0.2.0

Published

LLM-agnostic engineering skill system for high-quality AI-assisted development

Readme

saki

This is a mirror copy pStack.. but with some saki flavour

LLM-agnostic engineering skill system for high-quality AI-assisted development.

Write less. Ship better.

Install

# Add saki to your project
npx saki init

# Also register as Claude Code slash commands
npx saki init --claude

What is saki?

saki is a set of markdown-based skill files that encode rigorous engineering practices. Each skill is a standalone prompt that any LLM can understand — Claude, GPT, Gemini, Mistral, or any other model.

It is NOT tied to any IDE or platform. It works wherever you can paste text.

Skills

| Skill | Purpose | |---|---| | /saki-mode | Main entry point. Routes your task to the right playbook and enforces all 23 principles. | | /how | Walk through how a subsystem or component works. | | /why | Explain the design rationale behind a decision or piece of code. | | /architect | Design an API, system, or data model from first principles. | | /interrogate | Multi-angle code review — correctness, performance, security, maintainability. | | /unslop | Remove bloat, complexity, and slop from code or writing. | | /automate-me | Analyze your workflow and generate personalized skill files. |

Playbooks

| Playbook | When to use | |---|---| | bug-fix | Diagnosing and fixing a bug | | feature | Building a new feature | | migration | Migrating code, APIs, or data | | performance | Profiling and optimizing | | overnight-run | Large autonomous multi-step tasks |

The 23 Principles

See principles.md for the full list. They are organized into four groups:

  • Core (9) — quality, simplicity, and thoughtfulness
  • Architecture (6) — structure and boundaries
  • Verification (4) — proof and evidence
  • Delegation & Meta (4) — working with agents and teams

Usage

With any LLM (universal)

Paste the contents of any skill file into your prompt:

[paste contents of .saki/skills/saki-mode.md]

Task: Fix the race condition in the auth middleware.

With Claude Code

npx saki init --claude

Then use /saki-mode, /interrogate, /unslop, etc. directly as slash commands.

With Cursor / Windsurf / other IDEs

Copy .saki/skills/*.md files into your IDE's rules or custom instructions directory.

Commands

saki init              # Initialize in current project
saki init --claude     # Also install to ~/.claude/skills/
saki add <skill>       # Add a single skill
saki list              # List available skills

Philosophy

saki is built on one belief: AI should make you write less code, not more. Every principle in saki pushes against bloat, slop, and over-engineering. Quality over quantity. Evidence over assertion. Subtraction before addition.