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

ai-global

v1.15.0

Published

Unified configuration manager for AI coding assistants

Readme

AI Global

简体中文

Unified configuration manager for AI coding assistants. Edit one file, sync to all your AI tools.

Installation

curl

curl -fsSL https://raw.githubusercontent.com/nanxiaobei/ai-global/main/install.sh | bash

npm

npm install -g ai-global
# or
pnpm add -g ai-global
# or
yarn global add ai-global
# or
bun add -g ai-global

Usage

First run

ai-global

This will:

  1. Scan your system for installed AI tools
  2. Backup original configs to ~/.ai-global/backups/
  3. Merge AGENTS.md/skills/agents/rules/commands from all tools
  4. Create symlinks from each tool's config to shared directories

Commands

| Command | Description | | ----------------------------- | -------------------------------------- | | ai-global | Scan, merge, update symlinks (default) | | ai-global status | Show symlink status | | ai-global list | List supported tools | | ai-global backups | List available backups | | ai-global unlink <key> | Restore a tool's original config | | ai-global unlink all | Restore all tools | | ai-global skill <user/repo> | Add a skill | | ai-global upgrade | Upgrade to latest version | | ai-global uninstall | Completely remove ai-global | | ai-global version | Show version | | ai-global help | Show help |

Add skills

ai-global skill user/repo
ai-global skill https://github.com/user/repo

How it works

~/.ai-global/
├── AGENTS.md        <- Shared AGENTS.md (edit this)
├── skills/          <- Shared skills (merged from all tools)
├── agents/          <- Shared agents
├── rules/           <- Shared rules
├── commands/        <- Shared slash commands
└── backups/         <- Original configs (backup)

Each AI tool's config directory contains symlinks:

~/.claude/
├── CLAUDE.md -> ~/.ai-global/AGENTS.md        (symlink)
├── skills/   -> ~/.ai-global/skills/          (symlink)
└── commands/ -> ~/.ai-global/commands/        (symlink)

~/.cursor/
├── rules/AGENTS.md -> ~/.ai-global/AGENTS.md       (symlink)
└── skills/         -> ~/.ai-global/skills/         (symlink)

... and more tools

Merge behavior

When you run ai-global, it merges items from all tools by filename:

  • Cursor has skills: react/, typescript/
  • Claude has skills: typescript/, python/
  • Result in ~/.ai-global/skills/: react/, typescript/, python/

The first file found wins (dedup by filename).

Supported Tools

| Tool | Key | Global | Rules | Commands | Skills | Agents | | -------------- | ------------- | :----: | :---: | :------: | :----: | :----: | | Claude Code | claude | ✓ | | ✓ | ✓ | ✓ | | OpenAI Codex | codex | ✓ | ✓ | | ✓ | ✓ | | Cursor | cursor | ✓ | ✓ | ✓ | ✓ | ✓ | | Factory Droid | droid | ✓ | ✓ | ✓ | ✓ | ✓ | | Amp | amp | ✓ | ✓ | ✓ | ✓ | | | Antigravity | antigravity | ✓ | | | ✓ | | | Gemini CLI | gemini | ✓ | | | ✓ | | | Kiro CLI | kiro | ✓ | ✓ | | ✓ | ✓ | | OpenCode | opencode | ✓ | | ✓ | ✓ | ✓ | | Qoder | qoder | ✓ | ✓ | ✓ | ✓ | ✓ | | Qodo | qodo | ✓ | | | | ✓ | | GitHub Copilot | copilot | ✓ | | | ✓ | ✓ | | Continue | continue | ✓ | ✓ | | | | | Windsurf | windsurf | ✓ | ✓ | | ✓ | | | Roo Code | roo | ✓ | ✓ | ✓ | ✓ | | | Cline | cline | ✓ | ✓ | | ✓ | | | Blackbox AI | blackbox | | | | ✓ | | | Goose AI | goose | ✓ | | | ✓ | | | Augment | augment | ✓ | ✓ | ✓ | | ✓ | | Clawdbot Code | clawdbot | ✓ | | | ✓ | ✓ | | Command Code | commandcode | ✓ | | ✓ | ✓ | | | Kilo Code | kilocode | ✓ | ✓ | ✓ | ✓ | | | Neovate | neovate | ✓ | | ✓ | ✓ | ✓ | | OpenHands | openhands | ✓ | | | ✓ | | | TRAE | trae | ✓ | ✓ | | ✓ | | | Zencoder | zencoder | ✓ | ✓ | | ✓ | |

Uninstall

ai-global uninstall

This will:

  1. Unlink all tools to original configuration
  2. Remove ~/.ai-global directory
  3. Remove ai-global command

If installed via npm:

ai-global uninstall

npm uninstall -g ai-global

License

MIT