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

yap-cc

v1.0.1

Published

Fast, token-efficient meta prompting framework for Claude Code

Readme

YAP (Yet Another Prompt)

Fast, token-efficient meta prompting framework for Claude Code

Yap through your projects with structured workflows, specialized AI agents, and autonomous execution.

What is YAP?

YAP is a workflow system that helps you build software features efficiently with Claude Code:

  • Token-efficient: <100k tokens per feature (50% less than alternatives)
  • Fast execution: Uses Haiku/Sonnet models (3x faster than Opus)
  • Quality code: Specialized agents for planning, execution, and verification
  • Git-integrated: Atomic commits per task with conventional commit messages
  • Autonomous: 4 deviation rules allow auto-fixing bugs without constant user input

Who This Is For

Developers who want to build features efficiently with AI assistance - without token bloat or context degradation.

Getting Started

npx yap-cc

The installer prompts you to choose:

  1. Runtime — Claude Code (more runtimes coming soon)
  2. Location — Global (all projects) or local (current project only)

Verify with /yap:start inside Claude Code.

Staying Updated

YAP evolves fast. Update periodically:

npx yap-cc@latest

Non-interactive Install

For Docker, CI, or scripts:

# Claude Code
npx yap-cc --claude --global   # Install to ~/.claude/
npx yap-cc --claude --local    # Install to ./.claude/

# Short flags
npx yap-cc -c -g               # Same as above
npx yap-cc -c -l               # Same as above

Use --global (-g) or --local (-l) to skip the location prompt. Use --claude (-c) to skip the runtime prompt.

Development Installation

Clone the repository and run the installer locally:

git clone https://github.com/blankjul/yap-cc.git
cd yap
node bin/install.js --claude --local

Installs to ./.claude/ for testing modifications before contributing.

Quick Start

After installation:

# Start Claude Code
claude-code

# Inside Claude Code:
/yap:start              # Initialize new project or show progress
/yap:feature "name"     # Create a new feature
/yap:execute 1          # Execute feature 1
/yap:verify 1           # Verify completion

Core Commands

  • /yap:start - Smart session starter (init new/brownfield or show progress)
  • /yap:feature - Create new feature
  • /yap:execute - Plan and execute feature
  • /yap:verify - Verify with automated + manual checks
  • /yap:discuss - Design discussion (optional)
  • /yap:research - Research libraries (optional)

Documentation

Full documentation is available in .claude/CLAUDE.md after installation.

License

MIT

Contributing

Contributions welcome! Please open an issue first to discuss what you'd like to change.