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

syncai

v1.1.0

Published

Sync AI agent rules across all your development tools. One source of truth for Claude, Copilot, Cursor & more.

Readme

SyncAI - Sync AI Rules Across All Your Dev Tools

   ███████╗██╗   ██╗███╗   ██╗ ██████╗     █████╗ ██╗
   ██╔════╝╚██╗ ██╔╝████╗  ██║██╔════╝    ██╔══██╗██║
   ███████╗ ╚████╔╝ ██╔██╗ ██║██║         ███████║██║
   ╚════██║  ╚██╔╝  ██║╚██╗██║██║         ██╔══██║██║
   ███████║   ██║   ██║ ╚████║╚██████╗    ██║  ██║██║
   ╚══════╝   ╚═╝   ╚═╝  ╚═══╝ ╚═════╝    ╚═╝  ╚═╝╚═╝

🔄 Sync AI agent rules across all your development tools

License: MIT Node.js Version PRs Welcome

🤔 The Problem

Are you tired of maintaining separate instruction files for every AI code assistant? Do you find yourself copying and pasting the same rules across multiple files whenever you make updates?

✨ The Solution

SyncAI solves this by creating a single base rules file (default: .github/copilot-instructions.md) that automatically syncs to all your AI agent configuration files through symbolic links.

Edit once, update everywhere!

You can use the default or choose any custom file as your base (e.g., my-rules.md, llm-instructions.txt, etc.).

🚀 Quick Start

Installation

# Install globally via npm
npm install -g syncai

# Or using yarn
yarn global add syncai

# Or run directly with npx (no installation needed)
npx syncai

Install from source

# Clone the repository
git clone https://github.com/nxnom/syncai.git
cd syncai

# Install dependencies
yarn install

# Link globally
yarn link

Usage

# Interactive mode (recommended for first time)
syncai

# Skip all prompts and use defaults (.github/copilot-instructions.md as base)
syncai -y

In interactive mode, you'll be prompted to:

  1. Enter your base rules file path (or press Enter for default)
  2. Select which AI tool config files to symlink

📸 Demo

🤝 Contributing

We welcome contributions! If your favorite AI agent or code editor isn't supported yet, please create a Pull Request.

Adding Support for New AI Agents

  1. Fork the repository
  2. Edit cli.js and add your agent to the SYMLINK_OPTIONS array:
    const SYMLINK_OPTIONS = [
      { name: 'GEMINI.md', value: 'GEMINI.md' },
      { name: 'CLAUDE.md', value: 'CLAUDE.md' },
      // ... add your agent here
      { name: 'Your Agent Name', value: '.youragentfile' }
    ];
  3. Submit a Pull Request with:
    • The agent/editor name
    • The expected file location
    • A link to documentation (if available)

Development

# Run locally
node cli.js

🔧 How It Works

  1. Choose Base File: Select your base rules file (default: .github/copilot-instructions.md) or enter any custom path
  2. Creates Base File: If it doesn't exist, SyncAI creates it with sensible defaults
  3. Creates Symlinks: Selected AI tool config files are symlinked to your base file
  4. Updates .gitignore: Optionally adds symlinked files to .gitignore
  5. Single Edit Point: Edit your base file and all symlinked files update automatically

📄 License

MIT License - see LICENSE file for details

🐛 Issues & Feature Requests

Found a bug or have a feature request? Please open an issue.