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

@bloomreach/brxm-upgrade

v0.1.2

Published

AI-powered CLI tool for brXM version upgrades

Readme

brXM Upgrade Tool

AI-powered CLI tool for Bloomreach Experience Manager (brXM) version upgrades.

Overview

The brXM Upgrade Tool simplifies version upgrades by:

  • Analyzing your project to understand its structure and customizations
  • Planning upgrades based on version-specific manifests
  • Executing transformations with AI assistance
  • Guiding you through manual steps when needed

Installation

Via npx (recommended)

The package is published publicly on npmjs.com — no authentication or registry configuration required. Run from any brXM project directory:

npx @bloomreach/brxm-upgrade discover
npx @bloomreach/brxm-upgrade plan

To force a fresh fetch (bypass npx cache):

npx --yes @bloomreach/brxm-upgrade@latest <command>

MCP Server (Claude Code integration)

Add to your .mcp.json:

{
  "mcpServers": {
    "brxm-upgrade": {
      "command": "npx",
      "args": ["-p", "@bloomreach/brxm-upgrade", "brxm-upgrade-mcp"]
    }
  }
}

From source

cd tools/brxm-upgrade
npm install
npm run build

Quick Start

# Navigate to your brXM project root
cd /path/to/your/brxm-project

# Check tool information
brxm-upgrade info

# Analyze your project
brxm-upgrade discover

# Generate upgrade plan
brxm-upgrade plan --to 16.3

# Execute the upgrade
brxm-upgrade execute

Configuration

Create a .brxmrc file in your project root or home directory:

ai:
  provider: anthropic
  model: claude-sonnet-4-20250514
  apiKeyEnv: ANTHROPIC_API_KEY

upgrade:
  source: bundled

output:
  verbose: false
  color: true
  exportPath: ./.brxm-upgrade

See fixtures/.brxmrc.example.yaml for a complete example.

Supported AI Providers

The tool supports multiple AI providers (BYOK - Bring Your Own Key):

| Provider | Environment Variable | Default Model | |----------|---------------------|---------------| | Anthropic | ANTHROPIC_API_KEY | claude-sonnet-4-20250514 | | OpenAI | OPENAI_API_KEY | gpt-4-turbo | | Google | GOOGLE_AI_API_KEY | gemini-pro |

Commands

| Command | Description | Status | |---------|-------------|--------| | info | Display tool information | Available | | discover | Analyze project structure | Available | | plan | Generate upgrade plan | Available | | execute | Execute upgrade steps | Available | | log-change | Create manifest entries | Available | | finalize | Promote unreleased manifest to versioned release | Available | | export | Export for manual AI use | Available |

Development

# Install dependencies
npm install

# Run in development mode
npm run dev

# Run tests
npm test

# Build for production
npm run build

# Lint code
npm run lint

License

Apache-2.0 - See LICENSE file for details.