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 🙏

© 2025 – Pkg Stats / Ryan Hefner

cursor-kicker

v0.1.2

Published

AI Development Framework for Next.js projects with GitHub and Vercel MCP integration

Readme

Cursor Kicker

AI Development Framework for Next.js projects with intelligent Cursor rules, memory banks, and MCP-powered workflows.

What is Cursor Kicker?

Cursor Kicker automatically configures your Next.js projects with:

  • Intelligent Cursor Rules - Best practices for Next.js, TypeScript, and quality standards
  • Memory Bank System - Project context that keeps AI informed about your codebase
  • MCP-Powered Commands - Workflows that leverage GitHub and Vercel integrations
  • Project Scaffolding - Start new projects with everything configured

Key Features

🎯 Next.js Focused

Deep integration with Next.js App Router, Server Components, and modern patterns.

🔗 GitHub MCP Integration

  • Auto-sync issues to backlog
  • Track work with issue linking
  • Automated PR creation
  • Branch management

🚀 Vercel MCP Integration

  • Monitor deployments
  • Debug build failures
  • Check deployment status
  • Access preview URLs

🧠 Memory Bank

Keep AI context fresh with:

  • Project brief and goals
  • Technical stack info
  • Active work context
  • Progress tracking
  • Backlog from GitHub issues
  • Deployment status

⚡ Smart Commands

  • @kickoff - Quick task starter
  • @start-sprint - Feature development workflow
  • @wrapup - Complete work with auto-updates
  • @sync-backlog - Sync GitHub issues
  • @check-deployment - Monitor Vercel
  • @create-task - Create GitHub issues
  • @debug-build - Debug failed builds

Installation

npm install -g cursor-kicker

Quick Start

Initialize Existing Project

cd your-nextjs-project
cursor-kicker init

Start from Empty Folder

You can also run cursor-kicker init in an empty folder:

mkdir my-project
cd my-project
cursor-kicker init

Automatic Next.js Creation: If no Next.js project is detected, Cursor Kicker will automatically offer to create one using create-next-app in interactive mode. You'll be prompted to choose your configuration options (TypeScript, ESLint, Tailwind, etc.).

If the folder is not empty, you'll be asked to confirm before creating the Next.js project.

Alternative: Create Next.js First

You can also create your Next.js project manually first:

npx create-next-app@latest my-project
cd my-project
cursor-kicker init

The CLI will:

  1. Detect your Next.js configuration (or create it automatically)
  2. Extract GitHub repository information (if connected)
  3. Detect Vercel deployment settings (if deployed)
  4. Generate Cursor rules and commands
  5. Set up the memory bank system

Usage

Once initialized, your project will have:

your-project/
├── .cursor/
│   ├── rules/              # AI coding rules
│   │   ├── 00-core-standards.mdc
│   │   ├── 01-quality-gates.mdc
│   │   ├── 02-nextjs-patterns.mdc
│   │   ├── 03-github-workflows.mdc
│   │   └── 04-vercel-workflows.mdc
│   └── commands/           # AI workflow commands
│       ├── kickoff.md
│       ├── start-sprint.md
│       ├── wrapup.md
│       └── ...
└── memory-bank/            # Project context
    ├── project-brief.md
    ├── technical-context.md
    ├── backlog.md
    └── ...

Using Commands

In Cursor, simply mention commands in your prompts:

@start-sprint - Let's build the user authentication feature

The AI will:

  1. Check your GitHub issues
  2. Review memory bank context
  3. Create a comprehensive plan
  4. Track progress in the issue

Requirements

  • Node.js 18+
  • Next.js project (or create new)
  • GitHub repository
  • Vercel project (optional but recommended)
  • Cursor IDE with MCP configured

Documentation

Project Philosophy

Project-Scoped Configuration: Everything is contained within your project and committed to git. No global dependencies, making projects portable and team-ready.

MCP-First Design: Workflows designed around GitHub issue tracking and Vercel deployments for seamless automation.

Next.js Best Practices: Rules encode the latest Next.js patterns, App Router conventions, and performance optimizations.

License

MIT

Links

  • Repository: https://github.com/a-und-b/cursor-kicker
  • Issues: https://github.com/a-und-b/cursor-kicker/issues
  • Changelog: CHANGELOG.md

Contributing

Contributions are welcome! Please feel free to submit issues and pull requests.