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

maxun-cli

v0.0.2

Published

Official CLI for Maxun — the open-source web data extraction platform

Readme

maxun-cli

Official CLI for Maxun — the open-source web data extraction platform.

Install

npm install -g maxun-cli

Quick Start

# Authenticate (Cloud)
maxun login --api-key your-api-key

# Authenticate (Self-hosted / OSS)
maxun login --api-url http://localhost:8080 --api-key your-api-key

# create an AI robot from a prompt
maxun robots extract -p "Extract trending repositories from Github" -n "Github Trends"

# Run it
maxun run <robot-id>

# Check your status and credits
maxun status

Commands

Auth

| Command | Description | |---------|-------------| | maxun login --api-url <url> --api-key <key> | Authenticate with your instance and API key | | maxun logout | Clear stored credentials | | maxun status | Show plan, credits, and auth status | | maxun credits | Show remaining credits |

Robots Management

| Command | Description | |---------|-------------| | maxun robots list | List all robots (Defaults to JSON, use --table for formatted view) | | maxun robots extract -p <prompt> | Create an AI robot from a natural language prompt | | maxun robots scrape <url> | Create a single-page extraction robot | | maxun robots crawl <url> | Create a multi-page crawler robot | | maxun robots search <query> | Create a search-based robot (modes: discover, scrape) | | maxun robots delete <id> | Remove a robot | | maxun robots duplicate <id> | Duplicate a robot with a new target URL |

Robot Execution

| Command | Description | |---------|-------------| | maxun run <id> | Trigger a robot run and get results (Defaults to JSON) | | maxun run <id> --table | Display results in a table (applicable for Discovery Search) | | maxun run <id> -f html,markdown | Override robot output formats for this specific run |

Runs & Data

| Command | Description | |---------|-------------| | maxun runs list <robot-id> | List recent runs for a robot | | maxun runs get <robot-id> <run-id> | Fetch specific run data (Defaults to JSON) | | maxun runs get <robot-id> <run-id> -f table | View historical data in a table format | | maxun runs get <robot-id> <run-id> -f csv -o data.csv | Export results to CSV file |

Usage Examples

AI Extraction

maxun robots extract \
  -p "Extract all product names and prices" \
  -u "https://example.com/shop" \
  -n "Shop Extractor"

Discovery Search

maxun robots search "Latest web scraping news" \
  --mode discover \
  --limit 10 \
  -n "News Discoverer"

# Run and view as table
maxun run <id> --table

Scraping & Crawling

maxun robots scrape https://example.com -f markdown,text -n "Example Scraper"
maxun robots crawl https://docs.maxun.dev --limit 10 --include "/docs/*" -n "Docs Crawler"

Configuration

Config is stored at ~/.maxun/config.json.

# Set an API Key via command
maxun login --api-key <key>

# Or via environment variables
export MAXUN_API_KEY=your-api-key
export MAXUN_API_URL=http://localhost:8080

Piping & Scripting

All data output goes to stdout, status messages to stderr — fully pipe-friendly:

maxun run <id> | jq '.[].name'
maxun runs list <robot-id> --table
maxun robots list | grep "Extractor"

License

AGPL-3.0