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

@project-master-ai/cli

v1.2.2

Published

Official CLI tool for Cursor Project Master (CPM) - Generate production-ready AI-native projects

Downloads

7

Readme

@cpm/cli

Official CLI tool for Cursor Project Master (CPM) - Transform your ideas into production-ready applications with AI-native project management.

Installation

npm install -g @cpm/cli
# or
npx @cpm/cli init

Usage

Initialize a new CPM project

# Interactive mode
npx @cpm/cli init

# With options
npx @cpm/cli init --name my-project --force

# Help
npx @cpm/cli --help

Available Commands

  • init - Initialize a new CPM project in the current directory
  • kanban - Setup and start the Kanban board
  • status - Show project status and task progress (coming soon)
  • task - Manage project tasks (coming soon)

Init Options

  • -n, --name <name> - Project name
  • -t, --template <template> - Template type (default: 'minimal')
  • -f, --force - Force initialization even if directory is not empty

Kanban Options

  • -p, --port <port> - Port to run the server on (default: 3000)
  • -i, --install - Force reinstall dependencies

What gets created

When you run npx @cpm/cli init, you get a complete CPM project structure:

my-project/
├── .cursor/rules/           # AI agent rules and behaviors
├── docs/                    # Project documentation
│   └── _templates/          # Document templates to fill
│       ├── PRD.md          # Product Requirements Document
│       ├── TECH_SPEC.md    # Technical Specifications
│       ├── DATA_MAP.md     # Data Structure Mapping
│       ├── UX_FLOW.md      # User Experience Flow
│       └── STYLE_GUIDE.md  # Design System & Style Guide
├── kanban/                  # Visual Kanban board (Next.js app)
├── project/                 # Project management
│   ├── _templates/         # Task and planning templates
│   ├── tasks/              # Kanban-style task management
│   └── project_status.md   # Real-time project status
├── scripts/                 # Utility scripts
└── README.md               # Project documentation

Next Steps

  1. Fill in the documentation templates in docs/_templates/:

    • PRD.md - Define what you want to build
    • TECH_SPEC.md - Choose your tech stack
    • DATA_MAP.md - Map your data structure
    • UX_FLOW.md - Design user interactions
    • STYLE_GUIDE.md - Set visual guidelines
  2. Open in Cursor IDE and activate the AI agent

  3. Type "init" to let CPM start building your project

  4. Monitor progress:

    • Check project/project_status.md for updates
    • Run cd kanban && npm run dev for visual Kanban board

Templates

Minimal Template (Default)

  • Tech Stack: Basic CPM structure only
  • Features: Essential CPM files with Kanban board
  • Best for: Most projects, fast setup, customizable foundation

Full Template

  • Tech Stack: Next.js + Prisma + Tailwind CSS + shadcn/ui + Supabase
  • Features: Complete web application stack with CPM integration
  • Best for: Web applications needing full-stack foundation

Development

# Clone and setup
git clone https://github.com/heyzgj/cursor-project-master.git
cd cursor-project-master/cli

# Install dependencies
npm install

# Build
npm run build

# Test locally
npm link
cpm init --help

Publishing

npm run build
npm publish

Features

  • 🚀 One-command setup - Get a complete CPM project instantly
  • 📋 Interactive prompts - Guided project configuration
  • 🎨 Multiple templates - Choose the right starting point
  • 📝 Documentation-driven - Structured approach to requirements
  • 🤖 AI-ready - Built for Cursor IDE and AI agents
  • 📊 Visual management - Integrated Kanban board

License

MIT - see LICENSE file for details

Support