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

@planu/cli

v3.1.4

Published

Planu — MCP Server for Spec Driven Development with native Rust acceleration for hot paths. Cross-platform (Linux/macOS/Windows, x64/arm64, glibc/musl).

Readme

Planu

The high-performance SDD stack for AI coding agents.

npm version Node Rust License

Documentation · Docs in Spanish · Docs in Portuguese


What is Planu?

Planu is the complete Spec Driven Development stack for AI coding agents — an MCP server that enforces a structured workflow from brainstorm to validation. Powered by a native Rust core, Planu provides the performance and reliability needed for large-scale AI development.

Spec first, always. No approved spec means no code. This eliminates vibe-coding debt at scale.

  • Native Rust Engine — 10x faster project scanning, parallel hashing, and regex extraction.
  • Instant Drift Detection — OS-level file watcher reacts to changes with 0% CPU overhead.
  • Unified Spec Format — Requirements and technical details in a single, context-efficient spec.md.
  • Atomic Integrity — Indestructible writes and Freeze-on-done immutability (P0).
  • 550+ MCP tools across spec lifecycle, Figma, analysis, documentation, git, and autopilot.
  • Multi-agent compatible — Optimized for Claude Code, Cursor, Windsurf, and Gemini CLI.

Installation

Add to your MCP client config (Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "planu": {
      "command": "npx",
      "args": ["-y", "@planu/cli@latest"]
    }
  }
}

Requirements: Node.js >= 22. The native Rust core is bundled and auto-detected for macOS (Intel/M1), Linux, and Windows.


The SDD Lifecycle

init_project → create_spec → challenge_spec → check_readiness → implement → validate → done

Every transition is gated by Definition of Ready (DoR) and Definition of Done (DoD) checks. Specs are the single source of truth — implementation is validated against them.

Autopilot: tools cascade automatically

Planu runs follow-up actions automatically after each step:

  • create_spec automatically runs challenge_spec + check_readiness.
  • update_status(done) automatically runs validate + scans crash risks + freezes the spec.
  • update_status(approved) automatically snapshots the spec version.

Unified Spec Format (v3.0)

Specs are context-efficient: 1 single file per spec containing both functional requirements and technical implementation details.

planu/specs/SPEC-001-auth/
└── spec.md       # Requirements + Technical + Criteria + Status

Criteria use zero-ambiguity GIVEN/WHEN/THEN format — ensuring your AI never misinterprets the goal.


Native Performance (v3.0)

Planu v3.0 introduces The Rust Revolution:

| Feature | Node.js (Legacy) | Planu-RS (v3.0) | Benefit | |---------|:----------------:|:-------------------:|:-------:| | Project Scanning | Sequential (Slow) | Parallel (Rayon) | 10x Speedup | | File Watching | Polling/Event Loop | OS-level (Notify) | 0% CPU Idle | | Spec Hashing | JS Crypto | Native SHA-256 | Instant Sync | | Drift Monitor | Memory Heavy | Streaming Scan | Monorepo Ready |


Architecture

src/
├── engine/           # Hybrid Core: TS Business Logic + Rust Native Engine
│   └── planu-core.node # High-performance native module
├── tools/            # 550+ MCP tool handlers
├── storage/          # Atomic persistence layer
└── types/            # Strict TypeScript contracts

data/                 # Local storage (gitignored)
├── projects/{hash}/  # Per-project: specs, metrics, patterns, knowledge
└── global/           # Shared: templates, pricing

Development

pnpm install       # Install dependencies
pnpm build         # Compile TS + Build Rust bridge
pnpm dev           # Watch mode
pnpm test          # Run 31,000+ tests

License

MIT