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

@beastmode-develeap/beastmode

v0.1.145

Published

BeastMode Dark Factory — turn intent into verified software

Readme

BeastMode CLI

The command-line interface for BeastMode -- turn natural language intent into verified software.

Install

npm install -g @beastmode-develeap/beastmode

Requires Node.js >= 20.

Quick Start

# Initialize a new factory
beastmode init

# Launch the web dashboard
beastmode board

# Check factory status
beastmode status

# Run a single pipeline task
beastmode run --task "Add user authentication"

# Start the daemon (continuous pipeline)
beastmode daemon

# Docker orchestration (image mode)
beastmode up                    # Start services (docker compose up)
beastmode down                  # Stop services (docker compose down)
beastmode logs [service]        # Stream service logs
beastmode update [--tag 1.2.3]  # Pull latest images and restart

# Migrate from daemon config
beastmode migrate --config config/beastmode.daemon.json

Commands

| Command | Description | |---|---| | beastmode init | Initialize factory (auto-detects source vs image mode) | | beastmode board | Launch the web UI (dashboard, kanban, chat) | | beastmode status | Show factory status overview | | beastmode run --task "..." | Run a single pipeline task | | beastmode daemon | Start the daemon (polls for tasks) | | beastmode migrate | Migrate existing daemon config to factory format | | beastmode mcp | Start the MCP server (stdio transport) | | beastmode config get <key> | Read a config value | | beastmode config set <key> <value> | Set a config value | | beastmode add plugin <source> | Install a plugin | | beastmode add mcp <name> | Register an MCP server | | beastmode list | List extensions (plugins, MCPs, hooks, skills) | | beastmode doctor | Run diagnostics (includes GHCR auth check) | | beastmode validate | Validate factory configuration | | beastmode upgrade | Check for and apply schema upgrades | | beastmode export | Export factory config | | beastmode import | Import artifacts (PRD, user stories, etc.) | | beastmode up [--pull] | Start BeastMode services | | beastmode down [--volumes] | Stop BeastMode services | | beastmode logs [service] | Stream service logs (board, ui, daemon) | | beastmode update [--tag ver] | Pull latest images and restart | | beastmode deploy [--cloud aws] | Deploy as systemd services or to AWS | | beastmode sync-claude-creds | Sync Claude Code creds for Docker (macOS) | | beastmode project add <path> | Register a project repository | | beastmode project list | List registered projects |

MCP Integration

BeastMode exposes a Model Context Protocol (MCP) server with 14 tools for managing factories, running pipelines, and inspecting results. Any AI assistant with MCP support can use it.

# Start the MCP server
beastmode mcp

# Use as an MCP server in Claude Code
claude --mcp "beastmode:beastmode mcp"

Chat UI

The board web UI includes a chat page (#/chat) that spawns a Claude Code subprocess with the BeastMode MCP server. Talk to your factory using natural language -- create tasks, check status, manage extensions, and run pipelines.

Documentation

License

MIT