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

@shipi/cli

v0.0.4

Published

AI-powered release notes generator - analyze git history and code changes to create meaningful release notes

Readme

@shipi/cli

AI-powered release notes generator that analyzes your git history and code changes to automatically create meaningful release notes.

Installation

npm install -g @shipi/cli

Quick Start

# 1. Authenticate
shipi login

# 2. Initialize your project (optional but recommended)
shipi init

# 3. Generate release notes
shipi generate v1.0.0

Commands

shipi login

Authenticate with your Shipi account via browser-based OAuth.

shipi logout

Clear stored credentials.

shipi whoami

Display current authenticated user information.

shipi usage

Show API usage quota and plan limits.

shipi init

Initialize a shipi.json configuration file in your project and link it to your Shipi account.

shipi generate [range]

Generate release notes for the specified range of commits.

Arguments:

  • [range] - Git revision range (e.g., v1.0.0..v1.1.0) or single tag

Options:

| Option | Description | |--------|-------------| | --from <ref> | Start from specific commit/tag | | -o, --output <file> | Save output to file instead of stdout | | -f, --format <format> | Output format: md (default) or json | | -a, --audience <type> | Target audience: internal, customer, or changelog | | --dry-run | Preview commits without calling API | | --no-diffs | Disable code diff analysis | | --no-header | Omit changelog header | | -l, --language <lang> | Output language (e.g., en, nl, de) | | -u, --uncommitted | Generate from uncommitted changes | | --max-diff-size <bytes> | Max diff size per file (default: 5000) | | -v, --verbose | Log full payload before sending | | --premium | Use Claude instead of GPT (requires Pro/Team plan) | | --tickets | Include ticket numbers in internal notes |

Examples:

# Generate notes for a specific tag
shipi generate v1.2.0

# Generate notes for a range
shipi generate v1.0.0..v1.1.0

# Generate customer-facing notes
shipi generate v1.0.0 --audience customer

# Preview what will be analyzed
shipi generate --dry-run

# Generate from uncommitted changes
shipi generate --uncommitted

# Save to file in German
shipi generate v1.0.0 -o CHANGELOG.md -l de

Configuration

Create a shipi.json file in your project root (or run shipi init):

{
  "projectId": "proj_xxx",
  "language": "en",
  "maxDiffSize": 5000,
  "include": ["src/**", "lib/**"],
  "exclude": ["**/*.test.ts", "**/*.spec.ts"],
  "extensions": [".ts", ".tsx", ".js", ".jsx"]
}

| Field | Description | |-------|-------------| | projectId | Links to your Shipi dashboard project | | language | Default output language | | maxDiffSize | Maximum bytes per file diff (default: 5000) | | include | Glob patterns for paths to analyze | | exclude | Glob patterns for paths to ignore | | extensions | File extensions to include in analysis |

Audience Types

  • internal - Technical details for developers, includes code changes and optionally ticket numbers
  • customer - User-friendly notes highlighting features and improvements
  • changelog - Brief summary format suitable for CHANGELOG files

Environment Variables

| Variable | Description | |----------|-------------| | SHIPI_API_KEY | Override stored API key |

How It Works

  1. Analyzes your git commits and code diffs
  2. Detects your tech stack and project context
  3. Groups changes by type (features, fixes, breaking changes, etc.)
  4. Uses AI to generate meaningful, contextual release notes
  5. Outputs in your preferred format and language

License

MIT