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

airelease

v1.1.6

Published

Automatically generates release notes with versioning using AI.

Readme

airelease - AI-Powered Release Message Generator

Inspired by aicommits, airelease helps automate the generation of release messages based on commit titles between release versions.

How to Use

1. Installation

To install airelease, run:

npm i -g airelease@latest

2. Retrieve API Key

Get your API key from one of the following providers:

3. Set API Key

Configure the API key for your chosen provider by running:

# For OpenAI
airelease config set OPENAI_KEY=<your-openai-api-key>

# For Anthropic
airelease config set ANTHROPIC_API_KEY=<your-anthropic-api-key>
airelease config set api_provider=anthropic

This will create a .airelease file in your home directory.

Note: By default, OpenAI is used as the API provider. You can switch between providers using the api_provider setting.

4. Configure Editor (Optional)

Set your preferred editor for editing release messages:


# Direct selection
airelease config set editor=vim

The tool will automatically detect installed editors on your system and provide recommendations.

5. Upgrading

To check the installed version:

airelease --version

If it's not the latest version, update with:

npm update -g airelease

Usage

airelease <major|minor|patch> -t <target-tag> -a <api-provider>

Description

  • Target Version: Specify the release version type (major, minor, or patch) to generate the release message.

  • Target Tag (-t): Specify the previous tag version to generate the release message. If omitted, the tool uses the latest previous tag.

  • API Provider (-a): Specify the API provider to use ("openai" or "anthropic"). If omitted, the configured default is used.

Interactive Options

After generating a release message, you'll have three options:

  1. Just commit - Proceed with the AI-generated message
  2. Edit message - Open the message in your configured editor
  3. Cancel release - Abort the release process

How It Works

This CLI tool uses git log to gather all commit logs filtered by the specified release version. It then sends the collected logs to the chosen AI provider (OpenAI or Anthropic), which generates an AI-powered release note.

When editing messages, the tool opens your configured text editor (or system default) with full multiline support, allowing you to format your release notes with proper spacing and structure.

Configurable Options

| Option | Description | Default | Command | | ------------------- | ------------------------------- | ----------------- | ---------------------------------------------- | | api_provider | AI provider to use | openai | airelease config set api_provider=<provider> | | OPENAI_KEY | Your OpenAI API key | | airelease config set OPENAI_KEY=<key> | | ANTHROPIC_API_KEY | Your Anthropic API key | | airelease config set ANTHROPIC_API_KEY=<key> | | model | AI model to use | Provider-specific | airelease config set model=<model> | | locale | Language for generated messages | en | airelease config set locale=<locale> | | editor | Text editor for message editing | Platform default | airelease config set editor=<editor> | | timeout | API timeout in milliseconds | 10000 | airelease config set timeout=<ms> |

Models

OpenAI Models

  • https://platform.openai.com/docs/models

Anthropic Models

  • https://docs.anthropic.com/en/docs/about-claude/models/overview

Contributing

If you'd like to contribute to airelease, here's how to set up your development environment:

  1. Clone the repository:

    git clone https://github.com/Coldsewoo/airelease.git
    cd airelease
  2. Install dependencies:

    pnpm install
  3. Make your changes and test locally:

    npm run build
    ./dist/cli.mjs <command>

Maintainers