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

cursor-share-sync

v2.0.7

Published

Real-time file sharing for Cursor AI outputs with team collaboration

Readme

🚀 Cursor Share Sync

Instantly share Cursor AI outputs with your team

Drop markdown files → Instant team sync → Zero manual work

npm version License: MIT

⚡ Quick Start

Prerequisites

You'll need a free Supabase account for your team's backend:

  1. Create a Supabase project at supabase.com
  2. Set up the database with one command:
    npx cursor-share-sync sql
    • Copy the displayed SQL and paste into Supabase SQL Editor
    • Click "Run" to create all tables and settings
  3. Get credentials from Supabase Settings → API (URL + anon key)
    • ⚠️ Important: Use the legacy/longer anon key (starts with eyJ...), not the new short keys!

No git clone required! Everything works via NPX.

Team Admin (First-time setup)

# 1. Create .env file with your Supabase credentials
echo "SUPABASE_URL=https://your-project.supabase.co" > .env
echo "SUPABASE_ANON_KEY=your-anon-key" >> .env

# 2. Setup workspace
npx cursor-share-sync setup

Team Members (Join workspace)

# Use the full command provided by your team admin
npx cursor-share-sync join <workspace-id> <access-key> <supabase-url> <supabase-anon-key> --name "Your Name"

Daily Usage

npx cursor-share-sync start

Drop markdown files in cursor-share/ folder → Files sync instantly to team!

🎯 Why Use This?

Before: Manual copy/paste, email attachments, scattered Cursor outputs After: Drop file → Team sees it instantly → Organized by project/sprint

✨ Features

  • 🔥 Instant Sync - Files appear for teammates in seconds
  • 📱 Zero Setup - No git, no servers, no complex configuration
  • 🏷️ Smart Organization - Auto-tags, sprint folders, search
  • 🔔 Real-time - See when teammates add files live
  • 🔒 Secure - Private team workspaces with access keys
  • 📱 Cross-platform - Windows, Mac, Linux support

📖 How It Works

  1. Setup once: Team admin creates workspace with npx cursor-share-sync setup
  2. Join workspace: Team members join with shared workspace ID + access key
  3. Drop & sync: Save Cursor outputs as .md files in cursor-share/ folder
  4. Instant sharing: Files automatically sync to team workspace in real-time

🗂️ File Organization

cursor-share/
├── sprint-2025.1/
│   ├── feature-auth.md      # #authentication #backend
│   └── bug-fix-login.md     # #bugfix #frontend
├── sprint-2025.2/
│   └── new-dashboard.md     # #ui #react
└── research/
    └── ai-integration.md    # #research #ai

Features:

  • 🏷️ Auto-tagging: Use #hashtags for instant categorization
  • 📁 Sprint folders: Organize by project phases
  • 🔍 Smart search: Find files by content, tags, or author
  • Version history: Track all changes with timestamps

🛠️ Commands

# Get database setup SQL (copy/paste into Supabase)
npx cursor-share-sync sql

# Setup new workspace (admin only, requires .env file)
npx cursor-share-sync setup

# Join existing workspace (all parameters required)
npx cursor-share-sync join <workspace-id> <access-key> <supabase-url> <supabase-anon-key> --name "John Doe"

# Start file watching
npx cursor-share-sync start

# Test connection (requires .env file or joined workspace)
npx cursor-share-sync test

# Help
npx cursor-share-sync --help

🚨 Troubleshooting

"No .env file found" or "Configuration validation failed"

  • Create .env file with your Supabase credentials
  • Verify SUPABASE_URL and SUPABASE_ANON_KEY are correct
  • Check your internet connection to Supabase

"Setup failed" or "Database query failed"

  • Run npx cursor-share-sync sql and paste the SQL into Supabase SQL Editor
  • Verify your Supabase project is active and you're using the legacy anon key
  • Check the Supabase dashboard for errors

"No files syncing"

  • Ensure files are .md or .txt format
  • Check the console for error messages
  • Run npx cursor-share-sync test
  • Verify all team members joined the same workspace

"Real-time sync not working"

  • Check that real-time is enabled in your Supabase project
  • Verify network connectivity
  • Try restarting with npx cursor-share-sync start

Need help? Open an issue

🎯 Perfect For

  • Dev Teams sharing Cursor AI outputs
  • Sprint Planning with organized file sharing
  • Knowledge Management across projects
  • Remote Teams needing instant collaboration
  • Anyone tired of manual file sharing

📊 Example Workflow

# Team lead sets up Supabase and workspace
echo "SUPABASE_URL=https://abc123.supabase.co" > .env
echo "SUPABASE_ANON_KEY=eyJ..." >> .env
npx cursor-share-sync setup
# Shares: npx cursor-share-sync join workspace123 key456 https://abc123.supabase.co eyJ...

# Developer joins and starts sharing
npx cursor-share-sync join workspace123 key456 https://abc123.supabase.co eyJ... --name "Alice"
npx cursor-share-sync start

# Alice saves Cursor output
echo "# API Design\n\n..." > cursor-share/sprint-1/api-design.md

# Team sees file instantly! 🎉

🔒 Security & Infrastructure

  • Private workspaces with access key authentication
  • Self-hosted backend - your team controls the Supabase instance
  • User attribution - see who shared what and when
  • Access control - workspace-based team management
  • Secure by design - no credentials stored in source code

🤝 Contributing

We welcome contributions! Here's how to get started:

Development Setup

# Clone the repository
git clone https://github.com/nbrem108/cursor-share-sync.git
cd cursor-share-sync

# Install dependencies
npm install

# Create your own Supabase project for testing
# 1. Go to supabase.com and create a project
# 2. Run: npx cursor-share-sync sql (copy/paste the SQL into Supabase)
# 3. Create .env file with your credentials:
echo "SUPABASE_URL=https://your-test-project.supabase.co" > .env
echo "SUPABASE_ANON_KEY=your-test-anon-key" >> .env

# Build and test
npm run build
npm test

Making Changes

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature/amazing-feature
  3. Make your changes
  4. Test your changes: npm run build && npm test
  5. Commit your changes: git commit -m 'Add amazing feature'
  6. Push to your branch: git push origin feature/amazing-feature
  7. Open a Pull Request

Development Commands

npm run build          # Compile TypeScript
npm run dev           # Development mode with hot reload
npm run lint          # Check code style
npm run lint:fix      # Fix code style issues
npm run format        # Format code with Prettier

Architecture

  • TypeScript - Type-safe JavaScript
  • Supabase - Backend database and real-time subscriptions
  • chokidar - Cross-platform file watching
  • commander - CLI framework

Need Help?

📜 License

MIT - see LICENSE file


Made with ❤️ for Cursor users who want seamless team collaboration