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

@euricom/aimgr

v1.0.3

Published

CLI tool for API key and user management

Readme

euricom-aimgr

CLI tool for API key and user management for AI providers.

Supported Providers

This CLI tool supports the following providers:

  • OpenAI
  • Anthropic

Installation

To install the aimgr CLI tool on your machine, follow these steps:

1. Install the CLI tool globally:

npm install @euricom/aimgr -g

2. Set Up Environment Variables:

OPENAI_ADMIN_KEY=your-openai-admin-key
ANTHROPIC_ADMIN_KEY=your-anthropic-admin-key

3. Verify Installation:

aimgr --version

CLI Usage

# Show help and version
aimgr --help -h
aimgr --version -v

# User Management
aimgr user list                    # List all registered users
aimgr user list --filter -f <filter>  # Filter users by email or name
aimgr user list --sync -s            # Force sync with providers
aimgr user list --invite -i          # Show invite list only (does not include users)
aimgr user info <email>            # Show detailed user info

# User Invite
aimgr user invite <email> --provider -p <providers>  # Invite a new member to a provider
# Example: aimgr user invite [email protected] --provider -p openai

# User Assign to Workspace
aimgr user assign <email> --provider -p <providers>   # Assign a workspace for the user
# Example: aimgr user assign [email protected] --provider -p openai

# User Removal
aimgr user remove <email> --provider -p <providers>  # Remove member from provider
# If no optional provider is provided, all providers will be removed.
# Example: aimgr user remove [email protected] --provider -p openai

Development

# Run in development mode (with commands)
pnpm dev user list
pnpm dev user invite [email protected] --provider openai

# Build the project
pnpm build

# Run in production mode (after building)
aimgr user list
aimgr user invite [email protected] --provider openai

# Build with watch mode (auto-rebuilds on changes)
pnpm build:watch

# Available debug namespaces:

- `aimgr:cli` - Core CLI initialization and setup
- `aimgr:cmd` - Command execution and handling

Development Scripts

# Code quality
pnpm lint          # Check code for linting errors
pnpm lint:fix      # Fix linting errors
pnpm format        # Format code
pnpm format:check  # Check code formatting
pnpm spell         # Check spelling
pnpm spell:fix     # Fix spelling errors
pnpm clean         # Remove build artifacts
pnpm test          # Run tests