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

@dean0x/mars

v0.1.2

Published

Multi Agentic Repo workspace manager for Git repositories

Readme

Mars

License: MIT npm CI

Manage multiple Git repositories as one workspace.

Tag-based filtering, parallel operations, zero dependencies.

Why Mars?

  • Polyrepo without the pain — one CLI for status, branching, syncing across all repos
  • Tag-based filtering — target subsets of repos (--tag frontend, --tag backend)
  • Zero dependencies — pure bash 3.2+, works on macOS out of the box

Quick Install

npm install -g @dean0x/mars

See all installation methods for Homebrew, curl, and manual options.

Quick Start

mkdir my-project && cd my-project
mars init

mars add https://github.com/dean0x/mars-example-frontend.git --tags frontend,web
mars add https://github.com/dean0x/mars-example-backend.git --tags backend,api
mars add https://github.com/dean0x/mars-example-shared.git --tags shared

mars clone
mars status

Commands

| Command | Description | |---------|-------------| | mars init | Initialize a new workspace | | mars add <url> [--tags t1,t2] | Add a repository to config | | mars clone [--tag TAG] | Clone configured repositories | | mars status [--tag TAG] | Show status of all repositories | | mars branch <name> [--tag TAG] | Create branch on repositories | | mars checkout <branch> [--tag TAG] | Checkout branch on repositories | | mars sync [--tag TAG] [--rebase] | Pull latest changes | | mars exec "<cmd>" [--tag TAG] | Run command in each repository | | mars list [--tag TAG] | List configured repositories |

Tag Filtering

Target subsets of repos using --tag:

# Only clone frontend repos
mars clone --tag frontend

# Create branch on backend repos only
mars branch feature-auth --tag backend

# Run npm install on all frontend repos
mars exec "npm install" --tag frontend

Configuration

mars.yaml

version: 1

workspace:
  name: "my-project"

repos:
  - url: [email protected]:org/frontend.git
    tags: [frontend, web]
  - url: [email protected]:org/backend.git
    path: api                    # optional custom path
    tags: [backend, api]

defaults:
  branch: main

Workspace Structure

my-project/
├── mars.yaml           # Workspace configuration
├── .gitignore          # Contains 'repos/'
└── repos/              # Cloned repositories (gitignored)
    ├── frontend/
    ├── backend/
    └── shared/

Installation

npm (recommended)

npm install -g @dean0x/mars

Or run without installing:

npx @dean0x/mars --help

Homebrew (macOS/Linux)

brew install dean0x/tap/mars

Shell Script

curl -fsSL https://raw.githubusercontent.com/dean0x/mars/main/install.sh | bash

Install a specific version:

MARS_VERSION=0.1.2 curl -fsSL https://raw.githubusercontent.com/dean0x/mars/main/install.sh | bash

Manual

git clone https://github.com/dean0x/mars.git
cd mars
./build.sh
cp dist/mars ~/.local/bin/  # or anywhere in PATH

Contributing

See CONTRIBUTING.md for development setup, architecture, and release process.

License

MIT