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

@balexda/march

v0.1.2

Published

CLI for the March agentic-development workflow: snapshot a worktree, dispatch a sandboxed spawn, and deploy the March skills for Claude Code.

Readme

March CLI

CLI for the March agentic-development workflow. March deploys a small set of Claude Code skills, then takes a worktree of your repo, snapshots it into a Docker image, and dispatches a sandboxed spawn for an agent to work inside.

Vision

Smithy makes the ideas high-quality. March makes the execution low-touch. Together they let a solo operator ship serious work without becoming the bottleneck — you bring the ideas and the judgment, March takes care of the chaos in between. Spawns run individual steps without babysitting; the Hatchery sets up containers without hand-tuning; Brood handles cleanup; Herald watches for state changes so you don't have to refresh gh pr view; Legate orchestrates multiple parallel work items; Stewards assemble each spawn's output into a reviewable PR. You walk away, and come back to either a green PR ready to merge or a clear diagnostic — never a hung session waiting for input it cannot receive.

Full statement: docs/vision.md. Implementation-level guidance for contributors: docs/operating-philosophy.md.

Installation

You can run March directly via npx (recommended):

npx @balexda/march init

Or install it globally:

npm install -g @balexda/march
march init

Requires Node 20 or 22. march spawn dispatch additionally requires git and docker on PATH. march legate init requires git, agent-deck, and Python 3.9+ for agent-deck's conductor bridge, plus Docker — it runs the deterministic Legate loop as a service inside the Hatchery-managed container (the only loop runtime). Pass --no-loop or --no-setup to skip the container.

Supported AI Assistants

  • Claude: march init deploys placeholder skill files into ~/.claude/commands/ and ~/.claude/prompts/ for use within your Claude Code workflows.

Commands

| Command | Purpose | | :--- | :--- | | march init | Initialize the March environment (manifest at ~/.march/march-manifest.json + Claude skills under ~/.claude/). | | march update | Update an existing March installation; prompts on downgrade unless --yes. | | march spawn dispatch | Create a worktree, snapshot it as a Docker build context, build march-spawn-<id>, launch the container with hardened security configuration, and transition the SpawnRecord to "running". | | march hatchery serve | Run the Hatchery service (Fastify HTTP API) — the single long-running container that performs spawns. The container entrypoint. | | march hatchery spawn | Run a one-shot spawn and hand its patch to an agent-deck manager. A thin client that posts to the Hatchery service (MARCH_HATCHERY_URL, default http://localhost:8080). | | march legate init | Set up a per-repo Legate agent plus paired deterministic loop for the Smithy plan→PR→fix workflow on top of agent-deck. The loop runs as a service inside the Hatchery-managed Legate container (the only loop runtime); use --no-loop or --no-setup to skip it. | | march version | Print the installed CLI version. | | march help [command] | Show help for a command. |

Observability

March emits OpenTelemetry traces, metrics, and logs — spawn success rate, spawn runtime, a trace per dispatched unit of work, and Hatchery service health — to a local, all-in-one Grafana stack. Telemetry is opt-in (MARCH_OTEL=1) and a complete no-op when off; a missing collector never affects a command.

docker compose -f docker/otel-lgtm.docker-compose.yml up -d
open http://localhost:3000      # Grafana (admin/admin) → "March — Spawn observability" / "March — Hatchery service"

Then run March with MARCH_OTEL=1 set. Full details — enabling it per Legate deployment, the trace/span/metric/log model, the Hatchery service, the provisioned dashboards, and how to validate the stack — are in docs/Observability.md.

See CONTRIBUTING.md for development setup, testing strategy, and pre-release checklist.