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

@a3t/rapid

v0.1.15

Published

CLI for RAPID - AI-assisted development with dev containers

Readme

@a3t/rapid

CLI for RAPID - AI-assisted development with dev containers.

This package provides the command-line interface for orchestrating AI coding assistants within containerized development environments.

Features

  • 🚀 Simple Commands - Intuitive CLI for starting and managing dev sessions
  • 🤖 Multi-Agent Support - Run Claude Code, OpenCode, Aider, and more
  • 🐳 Container Orchestration - Automatic Docker container management
  • 🔐 Credential Management - 1Password/Vault integration out of the box
  • 🎯 Configuration-Driven - Single rapid.json for all settings
  • 📊 Status Monitoring - Check environment and agent availability

Installation

npm install -g @a3t/rapid
# or
npm install @a3t/rapid

Quick Start

# Initialize a project
rapid init

# Start the container
rapid start

# Launch an AI coding session
rapid dev

# Check environment status
rapid status

Commands

rapid init

Initialize RAPID in a new project.

rapid init [--template <template>]

Options:

  • --template - Project template (typescript, python, node, rust, go, universal)

rapid start

Start the development container.

rapid start [--rebuild] [--no-cache]

Options:

  • --rebuild - Force rebuild the container image
  • --no-cache - Build without Docker cache

rapid dev

Launch an AI coding session in the container.

rapid dev [options]

Options:

  • --agent <name> - Use specific agent (overrides default)
  • --multi [agents] - Launch multiple agents (comma-separated, e.g., claude,aider)
  • --list - List available agents without launching
  • --local - Run locally instead of in container (not recommended)
  • --no-start - Do not auto-start container if stopped

Examples:

# Use default agent
rapid dev

# Use specific agent
rapid dev --agent aider

# Run multiple agents in tmux panes (requires tmux)
rapid dev --multi claude,aider

# Show multi-agent instructions
rapid dev --multi

# List available agents
rapid dev --list

rapid stop

Stop the development container.

rapid stop [--remove] [--volumes]

Options:

  • --remove - Remove container after stopping
  • --volumes - Also remove volumes

rapid status

Show environment status.

rapid status [--json]

Options:

  • --json - Output as JSON

rapid auth

Show authentication status from external tools.

rapid auth [--json] [--source <source>] [--provider <provider>]

Options:

  • --json - Output as JSON
  • --source - Filter by source (claude-code, codex, gemini-cli, aider, env)
  • --provider - Filter by provider (anthropic, openai, google)

Subcommands:

# Show environment variables for detected credentials
rapid auth env [--export] [--json]

rapid agent

Manage AI agents.

rapid agent list
rapid agent info <name>

Global Options

All commands support:

  • --verbose - Verbose output
  • -q, --quiet - Minimal output
  • --config <path> - Path to rapid.json

Configuration File

Create a rapid.json in your project root:

{
  "version": "1.0",
  "name": "my-project",
  "agents": {
    "default": "claude",
    "available": {
      "claude": {
        "cli": "claude",
        "instructionFile": "CLAUDE.md",
        "envVars": ["ANTHROPIC_API_KEY"]
      }
    }
  },
  "container": {
    "devcontainer": ".devcontainer/devcontainer.json",
    "autoStart": true
  },
  "secrets": {
    "provider": "env"
  },
  "mcp": {
    "configFile": ".mcp.json",
    "servers": {
      "filesystem": { "enabled": true }
    }
  }
}

See rapid.json Specification for complete reference.

Environment Variables

  • RAPID_CONFIG - Path to rapid.json
  • RAPID_LOG_LEVEL - Log verbosity (debug, info, warn, error)
  • RAPID_NO_COLOR - Disable colored output

Supported Agents

| Agent | Installation | Best For | | ------------------ | ------------------------------------------ | ------------------------------ | | Claude Code | npm install -g @anthropic-ai/claude-code | Complex reasoning, refactoring | | OpenCode | npm install -g opencode | Multi-model, cost optimization | | Aider | pip install aider-chat | Quick iterations, auto-commits | | GitHub Copilot CLI | gh extension install github/gh-copilot | Shell commands, git operations |

See Also

Troubleshooting

devcontainer CLI not found

Install with:

npm install -g @devcontainers/cli

Docker not running

Start Docker Desktop or your Docker daemon:

# macOS
open -a Docker

# Linux
sudo systemctl start docker

Container won't start

Try rebuilding:

rapid start --rebuild

License

MIT © 2026 Rude Company LLC