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

msg-rocket

v0.0.10

Published

A customized CLI assistant powered by GitHub Copilot CLI

Readme

msg-rocket

msg-rocket is a customized CLI assistant powered by GitHub Copilot CLI. It streamlines your git workflow by leveraging AI to generate commit messages, conduct code reviews, ensuring your branches stay up-to-date, and enforcing team coding standards.

Features

  • AI-Generated Commit Messages: Automatically analyzes staged changes and generates descriptive commit messages using GitHub Copilot.
  • Code Reviews: Performs AI-driven code reviews on your staged changes, with optional focus on performance or security.
  • Clean Reports: suggestions for code cleanup and refactoring improvements.
  • Standards Compliance: Validates your code changes against your team's specific coding standards.
  • Smart Syncing: Keeps your branches up-to-date with the remote main branch, handling stashes and rebases automatically.
  • Easter Egg: Includes a fun Matrix-style digital rain effect.

Installation

Prerequisites

  • Node.js: Version 14 or higher (must support ES modules).
  • Git: Installed and available in your PATH.
  • GitHub Copilot CLI: You must have the copilot command installed and authenticated.

Install via npm (Recommended)

npm install -g msg-rocket

Install from Source

  1. Clone the repository:

    git clone https://github.com/Gramli/msg-rocket.git
    cd msg-rocket
  2. Link the package globally:

    npm link

Now you can run the tool using the msg-rocket command.

Usage

Run the tool from your terminal within a git repository:

msg-rocket <command> [flags]

Commands

  • commit: Generates a commit message for staged changes.

    • --t <ticket>: Appends ticket references (e.g., #123).
    • --f: Force commit without interactive confirmation.
  • review: Generates a code review for staged changes.

    • --perf: Focus review on performance optimizations.
    • --sec: Focus review on security implications.
  • clean: Generates a report with cleanup and refactoring suggestions.

  • standard: Checks staged changes against your configured coding standards file.

  • uptodate: Syncs the current branch with the remote main branch.

    • --m <branch>: Specify the main branch name (default: master).
  • help: Displays help information.

Configuration

You can configure msg-rocket by creating a .msgrocketrc file in your project root or user home directory. The file should contain valid JSON.

Configuration Options

| Option | Type | Description | |--------|------|-------------| | msgTemplate | string | Path to a file or a string containing a custom commit message template. | | teamCodingStandards | string | Absolute path to a markdown or text file containing your team's coding standards. | | DEBUG | string | Set to "true" to enable debug logging. |

Example .msgrocketrc

{
  "msgTemplate": "/path/to/my/template.txt",
  "teamCodingStandards": "/Users/developer/docs/coding-standards.md",
  "DEBUG": "false"
}

Examples

Generate a commit message with ticket references:

msg-rocket commit --t "JIRA-123" --t "#456"

Review staged changes for security issues:

msg-rocket review --sec

Sync with a specific main branch:

msg-rocket uptodate --m main

Check against coding standards:

Ensure teamCodingStandards is set in your .msgrocketrc, then run:

msg-rocket standard

Tips for Free Copilot Models

When using free Copilot models, I noticed unstable behavior when passing prompts via files (e.g. copilot -p @prompt.md), including misinterpreting the file path as a user question.

In practice, the CLI behaved more consistently when the Reasoning Effort was set to High:

/model gpt-5-mini high