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

@metabob/minibob

v0.4.3

Published

Goal-first development vessel - everything is a goal processed through the activity/impulse system

Readme

miniBob

A goal-first development assistant. Tell it what you want to accomplish and it figures out how to do it.

Prerequisites

Installation

From npm (when published)

npm i -g @metaBob/miniBob@latest

From source

git clone https://github.com/metaBobProject/metaBob-devBob
cd metaBob-devBob/repos/miniBob
bun install

Quick Start

# Set your API key
export ANTHROPIC_API_KEY=sk-ant-...

# Run your first goal
miniBob --single "create a hello world script"

# Or start interactive mode
miniBob

Usage

Interactive Mode (REPL)

miniBob

This starts an interactive session where you can type goals naturally:

> Fix the login bug in auth.ts
> Add unit tests for the user module
> Refactor the database connection to use connection pooling

Single Goal Mode

Execute a single goal and exit:

miniBob --single "Create a hello world script"
miniBob -s "Add input validation to the signup form"

CLI Flags

| Flag | Description | |------|-------------| | -s, --single <goal> | Execute a single goal and exit | | -q, --quiet | Only show errors | | -v | Verbose output (info, costs, durations) | | -vv | Debug output | | -vvv | Trace output | | --idle | Start in bored state (works until interrupted) | | --caffeine | Disable automatic boredom tasks |

REPL Commands

| Command | Description | |---------|-------------| | /help | Show available commands | | /status | Check connectivity and system status | | /config | Show current configuration | | /auth | Show and configure authentication | | /cheer[!] | Positive feedback on last activity (add ! for stronger) | | /chide[!] | Negative feedback on last activity (add ! for stronger) | | /continue | Continue working on the last goal | | /bye | Exit the REPL |

Configuration

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | ANTHROPIC_API_KEY | Yes | Your Anthropic API key (for LLM) | | METABOB_API_KEY | No | metaBob backend key (enables learning features) | | MINIBOB_MODEL | No | Model to use (default: claude-sonnet-4-20250514) | | MINIBOB_WORKDIR | No | Working directory | | MINIBOB_PROVIDER | No | LLM provider: anthropic or openai |

Config File

Create ~/.metaBob/config.json for persistent settings:

{
  "providers": {
    "anthropic": { "apiKey": "sk-ant-..." }
  },
  "metaBob": {
    "apiKey": "your-metaBob-key"
  },
  "model": "claude-sonnet-4-20250514",
  "workingDirectory": "/path/to/default/project"
}

Only two keys are needed:

  • LLM key (providers.anthropic.apiKey) - Required for miniBob to work
  • metaBob key (metaBob.apiKey) - Optional, enables activity learning and recommendations

Or create .metaBob/config.json in your project for project-specific settings.

Offline Mode

miniBob works without network connectivity using embedded templates and local caching. When the backend is unavailable:

  • Uses built-in activity templates
  • Caches executions locally for later sync
  • Intelligent template selection based on goal keywords

No configuration needed - offline mode activates automatically.

Examples

# Create a new feature
miniBob -s "Add a logout button to the navbar"

# Fix a bug
miniBob -s "Fix the 404 error on the /users endpoint"

# Refactor code
miniBob -s "Extract the validation logic into a separate module"

# Write tests
miniBob -s "Add unit tests for the OrderService class"

# Documentation
miniBob -s "Update the API documentation for the new endpoints"

Troubleshooting

Check system health

miniBob doctor

Common issues

No API key configured

export ANTHROPIC_API_KEY=sk-ant-...
# Or add to ~/.metaBob/config.json

Goal not achieving expected results

  • Use -v for verbose output to see what miniBob is doing
  • Use /chide to provide negative feedback and help it learn
  • Try rephrasing your goal more specifically

Documentation