New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

cursorize

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cursorize

CLI tool to add cursor rules to your project

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

Cursorize CLI

CLI tool to add cursor rules to your project from the Vibe Helper registry.

Installation

npm install -g cursorize
# or
npx cursorize@latest

Usage

Initialize

cursorize init

This creates a .cursorrules.json config file in your project.

List available rules

cursorize list

Filter by tech stack:

cursorize list --tech-stack React

Add a rule

cursorize add

Add a specific rule by ID:

cursorize add <rule-id>

Add with custom filename:

cursorize add <rule-id> --file my-rules.mdc

Configuration

The CLI reads from .cursorrules.json:

{
  "registry": "https://cursorize.vercel.app/api/registry"
}

By default, the CLI uses https://cursorize.vercel.app/api/registry as the registry URL. You can override this by:

  • Setting the CURSORIZE_REGISTRY environment variable
  • Configuring it in .cursorrules.json after running cursorize init

Development

# Install dependencies
npm install

# Run in development mode
npm run dev

# Build the package
npm run build

Publishing

The package is configured to automatically use the production registry URL (https://cursorize.vercel.app/api/registry) when published to npm. The publish process:

  • Automatically updates the registry URL to production
  • Builds the package
  • Publishes to npm
  • Reverts the registry URL back to localhost for local development

To publish:

npm publish

Make sure you're logged in to npm and have the correct permissions for the cursorize package.

Keywords

cursor

FAQs

Package last updated on 16 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts