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

@mawm/cli

v0.1.2

Published

TypeScript CLI for packaging and installing LangGraph workflows for agent execution and orchestration.

Readme

MAWM

npm: @mawm/cli License Status

Multi-Agent Workflow Management (MAWM) is a TypeScript CLI for packaging and installing LangGraph workflows with the purpose of agent execution and orchestration.

Quick Start

Install the package globally

bun install -g @mawm/cli

Initialize .mawm/ in target-project

mawm init    

Or run it without a global install:

bunx @mawm/cli init

Add the project initiative workspace when you want MAWM's project-local planning docs and templates:

mawm init -i

Install the bundled OpenCode agent assets into the current project:

mawm init -a opencode

Scaffold a new workflow package from a template:

mawm init -t base
mawm init -t initiative

Workflow Management

MAWM separates reusable workflow installation from project-local workflow use.

Install a workflow package or built workflow directory into the user-level MAWM config:

mawm install -g [workflow-or-path]  # installs globally (~/.config/mawm/)

Pull a globally installed workflow into the current project:

mawm install <workflow-id>          # copies into .mawm/graphs/

List installed workflows:

mawm list                           # project-local
mawm list -g                        # global

Reinstall from source or remove:

mawm update [workflow-id]           # reinstall workflow(s) (project-local)
mawm update -g [workflow-id]        # reinstall workflow(s) (global)
mawm remove <workflow-id>           # remove from project
mawm remove -g <workflow-id>        # remove from global config

Command Reference

# initialize project state, user config, agent assets, or workflow templates
mawm init [-g] [-i] [-a <agent>] [-t [type]]  

# install workflows globally or into the current project
mawm [i, install] [-g] [workflow-or-path]      

# list project-local or global workflows
mawm list [-g]                                 

# reinstall one or all workflows from their source
mawm [u, update] [-g] [workflow]               

# remove an installed workflow
mawm [rm, remove] [-g] <workflow>              

Shipped Assets

The package ships the CLI plus assets copied into dist/assets during build:

  • Project-local .mawm scaffolds for workflow manifests and initiative/adhoc planning docs.
  • User-level MAWM config scaffold with an empty workflow manifest.
  • OpenCode agent and tool assets, including workflow-runner and initiative-manager agents plus the execute-graph tool.
  • base and initiative workflow templates built from shared LangGraph template assets.

The repository also includes workflows/examples/coding as a source example for a richer initiative workflow. It is not a CLI command and is not installed by mawm init.

Running Workflows

Workflow execution is currently handled outside the top-level CLI. Generated workflow packages include LangGraph project files, and the bundled OpenCode assets include an execute-graph tool that can launch installed workflows when used by the relevant OpenCode agent.

Status

MAWM is in active development and pre-release.

Post-v0.1.0 Direction:

  • Running globally installed workflows with project-local customization.
  • Expanding the root MAWM config into a broader hub for workflow and agent-development settings.
  • Broader agentic-development integrations, including ClaudeCode and Codex support alongside OpenCode.
  • Other features, improvements, and fixes.

Stack

TypeScript LangGraph Node OpenCode