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

@snailer-team/snailer

v1.5.3

Published

AI-powered development CLI (installer wrapper)

Readme

@felixaihub/snailer

AI-Powered Development Agent for Your Terminal

npm version License: MIT

What is Snailer?

Snailer is an intelligent AI coding agent that lives in your terminal. This npm package provides a convenient cross-platform installer for the Snailer CLI.

# Just describe what you want in plain English
snailer --prompt "refactor the authentication module to use async/await"
snailer --prompt "find all TODO comments and create GitHub issues"

Quick Install

Global Installation

npm install -g @felixaihub/snailer

Using npx (No Installation)

npx @felixaihub/snailer@latest --help

Features

  • 🧠 Self-Learning: Improves with every interaction using ACE (Agentic Context Engineering)
  • 🔄 Multi-Model Support: Works with Claude, GPT, Grok, and Gemini
  • 🛠️ Built-in Tools: File operations, code search, git workflows, and more
  • Fast & Reliable: Built with Rust for performance

Setup

After installation, set up your AI API key:

# For Claude (recommended)
export CLAUDE_API_KEY="your-api-key"

# Or for OpenAI
export OPENAI_API_KEY="your-api-key"

# Or for xAI
export XAI_API_KEY="your-api-key"

Usage

# Start interactive mode (REPL)
snailer

# Execute a specific task (one-shot)
snailer --prompt "Add error handling to the API module"

# Get help
snailer --help

How It Works

This npm package is an installer wrapper that:

  1. Downloads the appropriate Snailer binary from GitHub Releases
  2. Selects the correct binary for your platform (macOS, Linux, Windows)
  3. Installs it in a location accessible via the snailer command

Supported Platforms

  • macOS: x64, ARM64 (Apple Silicon)
  • Linux: x64, ARM64
  • Windows: x64

Binary Download

During npm install, the package automatically:

  • Detects your platform and architecture
  • Downloads the corresponding binary from GitHub Releases
  • Makes it executable and available in your PATH

Offline Installation

To skip the automatic download (useful for air-gapped environments):

SNAILER_SKIP_POSTINSTALL=1 npm install -g @felixaihub/snailer

Then manually download the binary from Releases and place it in the package's bin/ directory.

Documentation

For detailed documentation, visit the main repository:

Troubleshooting

Binary download fails

If the automatic download fails, you can:

  1. Manually download from Releases
  2. Place the binary in the package installation directory under bin/
  3. Make it executable: chmod +x bin/snailer (Unix-like systems)

Command not found

If snailer command is not found after global installation:

  1. Check that npm's global bin directory is in your PATH:
    npm config get prefix
  2. Add it to your PATH if needed (usually ~/.npm/bin or /usr/local/bin)

Permission denied

On Unix-like systems, if you get "permission denied":

chmod +x $(which snailer)

License

This installer package is licensed under the MIT License.

The Snailer binary is subject to its own End User License Agreement (EULA).

By installing and using Snailer, you agree to the terms in both licenses.

Support


Made with ❤️ by the Snailer Team