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

lazy-raccoon

v0.3.2

Published

Sync your AI tool configs across machines. Push once, pull anywhere.

Readme

Why

Every time you switch machines or onboard a new teammate, you reconfigure your AI tools from scratch — rules, MCP servers, agents, settings. Lazy Raccoon fixes that. Push your config once, pull it anywhere. Share it across teams.

Supported tools

| Tool | Config path | |------|-------------| | Claude Code | ~/.claude/ | | Cursor | ~/.cursor/ | | GitHub Copilot | ~/.copilot/ | | Gemini CLI | ~/.gemini/ | | Windsurf | ~/.codeium/windsurf/ | | Cline | ~/.cline/ |

Quick start

npm install -g lazy-raccoon
lazy login
lazy push

That's it. Your config is in the cloud. Pull it on any other machine:

lazy pull

Commands

| Command | Description | |---------|-------------| | lazy login | Authenticate via browser | | lazy logout | Remove stored credentials | | lazy push | Upload local config to cloud | | lazy pull | Download cloud config to local | | lazy status | List all synced configs | | lazy whoami | Show current logged-in user | | lazy teams | List your teams | | lazy teams create <name> | Create a new team | | lazy teams info <slug> | Show team members | | lazy teams invite <slug> <email> | Invite someone to a team | | lazy teams leave <slug> | Leave a team | | lazy teams invitations | List pending invitations | | lazy teams accept <id> | Accept an invitation |

Flags

| Flag | Commands | Description | |------|----------|-------------| | --tool <id> | push, pull | Choose tool: claude, cursor, copilot, gemini, windsurf, cline | | --team <slug> or -T | push, pull | Push/pull for a team instead of personal | | --force | push, pull | Skip merge, fully overwrite | | --profile <name> | push, pull | Use a named profile | | --dir <path> | pull | Pull to a custom directory |

Smart merge

By default, push and pull use smart merge:

  • push: local wins on conflicts, cloud-only fields are preserved
  • pull: cloud wins on conflicts, local-only fields are preserved

Both commands show a diff preview and ask for confirmation before applying. Pull creates a backup before writing.

Use --force to skip merge and fully overwrite.

Teams

Share configs across your team:

lazy teams create "My Team"
lazy push --team my-team

Team members pull the shared config:

lazy pull --team my-team

Invite members:

lazy teams invite my-team [email protected]

What gets synced

Each tool defines which files and directories are synced:

| Tool | Files synced | |------|-------------| | Claude Code | CLAUDE.md, settings.json, .mcp.json, commands/, agents/, skills/, rules/ | | Cursor | rules/*.mdc, mcp.json | | GitHub Copilot | copilot-instructions.md, config.json, mcp-config.json, agents/ | | Gemini CLI | GEMINI.md, settings.json, commands/ | | Windsurf | memories/global_rules.md | | Cline | cline_mcp_settings.json |

Sensitive files (.env, API keys, tokens, caches, logs) are never synced.

Security

  • All config data is encrypted at rest (AES-256-GCM) before being stored
  • Data in transit is protected by HTTPS
  • Auth tokens are stored locally in ~/.lazy-raccoon/credentials.json

Environment variables

| Variable | Description | |----------|-------------| | CLAUDE_DIR | Override ~/.claude path |

Development

git clone https://github.com/fpuglap/lazy-raccoon-cli.git
cd lazy-raccoon-cli
npm install
npm run build
npm link

License

MIT