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

@liftoffllc/cursor-ops-kit

v1.2.1

Published

A toolkit for managing Cursor AI configurations across different project roles

Downloads

9

Readme

Cursor Ops Kit

A CLI tool to enforce Cursor IDE rules, CI/CD workflows, and configuration across repositories.

Installation

# Using npm
npm install -D @liftoffllc/cursor-ops-kit

# Using yarn
yarn add -D @liftoffllc/cursor-ops-kit

Quick Start

# Initialize with a specific role
npx cursor-ops init --role frontend

# Or use interactive mode
npx cursor-ops init --interactive

Available Roles

  • frontend: Frontend development configuration
  • backend: Backend development configuration
  • devops: DevOps and CI/CD configuration
  • infra: Infrastructure configuration

Features

1. Configuration Management

Initialize Configuration

# Basic initialization
npx cursor-ops init --role <role>

# Dry run mode (preview changes)
npx cursor-ops init --role <role> --dry-run

# Interactive mode
npx cursor-ops init --interactive

Merge Configurations

# Merge role-specific with base configuration
npx cursor-ops merge --role <role>

Compare Configurations

# Show differences between configurations
npx cursor-ops diff --role <role>

2. Backup Management

# List available backups
npx cursor-ops backup list

# Restore a specific backup
npx cursor-ops backup restore --file <backup-file>

# Clean up old backups
npx cursor-ops backup cleanup --days 30

3. Validation & Auditing

# Audit current configuration
npx cursor-ops audit

# Check version and updates
npx cursor-ops version

Configuration Structure

Base Configuration (.cursor)

{
  "version": "1.2.1",
  "rules": [
    {
      "name": "enforceNaming",
      "type": "naming",
      "pattern": "^[a-z][a-zA-Z0-9]*$",
      "enabled": true,
      "severity": "error"
    }
  ]
}

Role-Specific Configuration (.cursor-role-{role})

Additional rules and overrides for specific roles.

Features by Module

Core Modules

  1. Initialization (init.js)

    • Environment validation
    • Template copying
    • Configuration setup
    • Role-specific customization
  2. Validation (validator.js)

    • Role validation
    • Configuration structure verification
    • GitHub workflow validation
    • Security checks
  3. Logging (logger.js)

    • Colored output
    • Multiple log levels (debug, info, warn, error)
    • Configurable log level
  4. Backup (backup.js)

    • Automatic backup creation
    • Backup rotation (keeps last 5)
    • Restore functionality
    • Cleanup of old backups

Advanced Features

  1. Merge (merge.js)

    • Configuration merging
    • Workflow file merging
    • Conflict resolution
    • Precedence handling
  2. Interactive Setup (interactive.js)

    • Guided configuration
    • Role selection
    • Custom settings
  3. Audit (audit.js)

    • Configuration validation
    • Rule verification
    • Issue reporting
  4. Migration (migrate.js)

    • Version upgrades
    • Format updates
    • Backward compatibility

Best Practices

  1. Always use --dry-run first to preview changes
  2. Keep backups before major changes
  3. Review merged configurations before applying
  4. Use role-specific configurations for team consistency

Troubleshooting

Common Issues

  1. Configuration Validation Errors

    • Check rule format
    • Verify required fields
    • Use audit command for detailed report
  2. Merge Conflicts

    • Review both configurations
    • Use diff command to identify issues
    • Consider manual merge for complex cases
  3. Backup Issues

    • Ensure write permissions
    • Check available disk space
    • Use cleanup command for space management

Contributing

For bugs, feature requests, or contributions, please create an issue or submit a pull request.

License

Developed by LiftOff LLC Engineering 🚀