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

maol-stack

v0.5.0

Published

A clean-room CLI for stacked Git branches and safe restacks

Downloads

1,079

Readme

maol-stack

maol-stack is a clean-room Node.js CLI for stacked Git branches. Its implementation and metadata are fully local, and stack submission talks directly to Git and GitHub through the installed git and gh commands.

The scope covers creating and tracking branches, amending changes, moving and squashing branches, restacking descendants, recovering from conflicts, undoing mutations, navigation, and submitting stacks as GitHub pull requests.

Run with npx

From this project:

npm install
npm run build
npx --yes . --version

From npm:

npx maol-stack --version

maol-stack requires Node.js 22 or newer and an existing Git repository.

Local workflow

npx maol-stack init --trunk main

# Make the first change, then create its branch and commit it.
npx maol-stack create feature-base --all --message "feature: base"

# Make a dependent change and stack it on the current branch.
npx maol-stack create feature-ui --all --message "feature: ui"

# Amend a parent and automatically restack descendants.
npx maol-stack checkout feature-base
npx maol-stack modify --all

# Restack explicitly after changing a parent outside maol-stack.
npx maol-stack restack --upstack

# Push every branch and create or update its stacked GitHub PR.
npx maol-stack submit --stack

If an explicit restack conflicts, maol-stack leaves Git's rebase paused:

# Resolve files, then either continue or restore all saved branch tips.
npx maol-stack continue --all
npx maol-stack abort --force

modify, move, and squash attempt descendant restacks automatically. In non-interactive mode, an automatic conflict is aborted and reported as a warning; run an explicit restack --upstack to resolve it.

Commands

  • init, track, untrack
  • create, modify, move, squash
  • restack, continue, abort, undo
  • submit
  • log, state
  • checkout, up, down, top, bottom, parent, children, trunk
  • add
  • mcp

Use npx maol-stack <command> --help for options.

Submit a stack

submit --stack walks from the bottom of the current stack through all of its descendants. It pushes each branch before creating or updating a GitHub pull request whose base is the logical parent branch:

npx maol-stack submit --stack

New pull requests use the branch's latest commit subject as their title. Useful options include:

# Show the complete plan without changing the remote or GitHub.
npx maol-stack submit --stack --dry-run

# Create new pull requests as drafts.
npx maol-stack submit --stack --draft

# Submit through the current branch, without its descendants.
npx maol-stack submit

maol-stack records the last successfully pushed SHA. The default push uses an explicit --force-with-lease and refuses to overwrite a remote branch that changed since the previous submission. --force is available as an explicit override after reviewing the remote changes. An out-of-sync trunk does not block submit by default; --ignore-out-of-sync-trunk emits an explicit warning. The apply path uses the authenticated GitHub CLI (gh) directly.

Restack safety and parity

maol-stack stores the logical parent and previous parent revision for every tracked branch in Git's common directory. A restack rebases each branch with the equivalent of:

git rebase --onto <current-parent> <recorded-parent-revision> <branch>

Before a mutation it records branch refs, metadata, the active branch, and a binary worktree patch. This supports abort and undo, including restoring a change consumed by modify as an unstaged local modification.

The differential suite currently has 171 passing comparisons against a reference stacked-branch CLI, with 10 known failures and 2 skipped. See PARITY.md for what those failures are, why they are expected, and how to tell a real regression apart from them. The comparisons cover:

  • clean and no-op descendant restacks;
  • content, add/add, and modify/delete conflicts;
  • automatic conflict rollback and explicit conflict pause;
  • continue, forced abort, undo, and consecutive conflicts upstack;
  • multi-commit children and empty branches;
  • staged and unstaged working trees;
  • branches checked out in another worktree;
  • move, move --only, and squash;
  • initialization, reset, tracking, force tracking, and forced untracking;
  • navigation, directed navigation, checkout messages, and relationship output;
  • command aliases and quiet output;
  • successful commit/amend output and common non-interactive errors;
  • multiple sibling stacks, nested forks, and serialized state output;
  • all supported command help, top-level help, yargs parser errors, and streams;
  • interactive checkout search, arrows, wraparound, fallback, cancellation, forks, scrolling, colors, and raw terminal control sequences;
  • submit --stack selection, dry-run, publication, metadata, review, transport, trunk, restack, and error options.

It compares exit status, functional stdout/stderr, active/detached state, rebase state, porcelain status, branch trees, commit counts, and the ancestry matrix. Stateful tip: blocks are removed from the comparison because their counters live in the reference CLI's global configuration. The suite needs the configured reference executable and its credentials, so it cannot run in CI:

npm run test:parity

Remote publication is covered independently by the internal GitHub test suite.

MCP server

Start the stdio MCP server with:

npx maol-stack mcp

It exposes:

  • run_maol_stack_cmd, which runs a CLI command in a selected repository;
  • learn_maol_stack, which returns the safe stacked-branch workflow.

Install in Claude Code

Copy and paste this command in a terminal to make the MCP server available in Claude Code from every repository:

claude mcp add --scope user maol-stack -- npx --yes maol-stack mcp

Confirm the installation with:

claude mcp get maol-stack

Install in Codex

Copy and paste this command in a terminal to make the MCP server available in Codex:

codex mcp add maol-stack -- npx --yes maol-stack mcp

Confirm the installation with:

codex mcp get maol-stack

Development

npm run check
npm run test:coverage
npm run test:parity
npm pack --dry-run

The implementation is MIT licensed.