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

@n8io/ai-config

v0.5.1

Published

Provider-agnostic AI coding assistant config installer

Readme

🤖 ai-config

Provider-agnostic AI coding assistant config — shared rules, hooks, settings, and skills distributed via symlinks.

✨ What it does

Symlinks files from a shared git repo (~/.ai-config) into AI tool config directories. One repo, all your tools stay in sync.

Supported providers: Claude Code · Cursor

Topics: | Topic | What it installs | |---|---| | rules | Shared AGENTS.md coding conventions | | hooks | Prompt injection guard + session-start auto-sync | | settings | Claude Code settings baseline | | skills | Shared slash commands (/commit, etc.) | | statusline | Custom status line display |

🚀 Quick start

npx @n8io/ai-config setup

That's it. The wizard clones the repo, detects your AI tools, and links everything.

📦 Commands

ai-config setup       # Guided onboarding (new team members start here)
ai-config install     # Install specific topics or providers
ai-config update      # Pull latest and re-apply symlinks
ai-config status      # Show symlink health
ai-config list        # List available topics
ai-config uninstall   # Remove installed symlinks

setup

Interactive wizard — detects installed AI tools, lets you pick topics, previews changes, then applies.

ai-config setup
ai-config setup --provider claude   # skip provider detection

install

Non-interactive install, good for scripts.

ai-config install                   # all topics, detected providers
ai-config install rules hooks       # specific topics only
ai-config install --provider claude # specific provider
ai-config install --yes             # skip conflict prompts
ai-config install --dry-run         # preview without applying

status

Shows every installed symlink and its health. Exits 1 if anything is broken.

  Provider    Topic       File                              State
  ─────────   ─────────   ───────────────────────────────   ──────────
  claude      rules       ~/.claude/AGENTS.md               ✓ linked
  claude      hooks       ~/.claude/hooks/session-start.sh  ✓ linked

  Last synced: 3/14/2026, 8:42:00 AM

  Not installed: skills, statusline

uninstall

ai-config uninstall              # remove all
ai-config uninstall rules hooks  # specific topics
ai-config uninstall --yes        # skip prompts (backups kept, not restored)

🔧 How it works

flowchart TD
    GH["github.com/n8io/ai-config"]
    REPO["~/.ai-config/\n(git repo)"]
    AGENTS[".agents/\ntopics"]

    GH -->|"git clone / pull"| REPO
    REPO --> AGENTS

    AGENTS --> R["rules/\nAGENTS.md"]
    AGENTS --> H["hooks/\nsession-start.sh"]
    AGENTS --> S["settings/\nsettings.json"]
    AGENTS --> SK["skills/\n*.md"]
    AGENTS --> SL["statusline/\nconfig.json"]

    R -->|symlink| CC["~/.claude/\nClaude Code"]
    H -->|symlink| CC
    S -->|symlink| CC
    SK -->|symlink| CC
    SL -->|symlink| CC

    R -->|symlink| CU["~/.cursor/\nCursor"]

    MANIFEST["~/.ai-config/\n.install-manifest.json"]
    AGENTS -->|tracks| MANIFEST

An install manifest (~/.ai-config/.install-manifest.json) tracks every symlink so update and uninstall know what's managed.

🛠️ Local development

git clone https://github.com/n8io/ai-config
cd ai-config
bun install
bun run cli setup     # runs against this repo dir (local dev mode)
bun test

Local dev mode is auto-detected when running from the cloned repo — no ~/.ai-config needed.