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

@magnitudedev/cli

v0.0.1-alpha.9

Published

Magnitude AI coding agent

Readme

Magnitude is an open source coding agent with a built-in engineering process. A lead agent understands your intent, maps it into engineering tasks, and delegates to specialized workers.

  • Follows your intent. The process stays accountable to your goal and clarifies when it isn't clear.
  • Less babysitting. The lead drives the process so you don't have to.
  • Holds up on long tasks. The lead coordinates but doesn't code, so its context stays focused.
  • Verifies everything. Plans get challenged, code gets reviewed, UI gets checked in the browser.
  • Full model control. Balance cost, speed, and intelligence across the lead and each worker.

Get started

npm install -g @magnitudedev/cli

Then navigate to the directory you want to work in and launch the TUI:

magnitude

This will launch Magnitude with a setup wizard for configuring providers and models.

Magnitude works with most major model providers out of the box, including open source and local models. You can use your ChatGPT Plus/Pro or GitHub Copilot subscription.

See the provider docs for full provider support.

How it works

A lead agent chats with you to understand your intent. It groups the task into feature, bug, or refactor, each with its own workflow. It builds a task tree, breaks the work into subtasks, and matches each one to a more specific workflow for things like research or implementation. It then delegates each task to specialized workers with focused context and toolsets.

The lead coordinates those workers through full plan / build / verify loops. The task tree updates as work unfolds and adapts as you steer it. You can jump in anytime by chatting with the lead. Otherwise, it keeps going autonomously until clarification is actually needed.

Workers

The lead agent manages all workers on your behalf. It can message, stop, resume, or redirect them and run many in parallel.

Magnitude comes out of the box with the following workers:

  • Explorer: for doing codebase or web research, both broad and narrow
  • Planner: for evaluating various implementation strategies
  • Builder: for implementing code changes directly in your files
  • Reviewer: for strict, independent review of code changes
  • Debugger: for root causing bugs and fixing them
  • Browser: for verifying UI changes with a built-in browser agent

Magnitude may use none or all of these in a given session. For a quick fix in a single file, it may edit it directly. For a very in-depth change, it may use the whole team. For most tasks, it will use some combination of explorer, planner, builder, and reviewer.

Under the hood

There's a lot of harness engineering that makes this all possible:

  • Robust agent lifecycle control with multiple context injection points
  • Topic-specific reasoning traces to improve task adherence
  • Two way communication between the lead and workers
  • Long-lived workers that can be resumed when context is still relevant
  • Shared workspace between the lead and workers (outside the project)
  • Sensible permissions system for safer shell execution
  • True model agnostic XML syntax

Why we built this

We love AI coding and were early power users of Claude Code. But left unsupervised, it quickly turns into slop. We expected Claude Code to keep evolving to fix this, but it hasn't. It leans too far into "just let the model figure it out". Codex is similar.

Projects like Superpowers (which gives CC more skills) have gained a lot of momentum because people want agents to follow better software development practices. But in practice, the results are mixed. You often have to keep prompting the agent to actually use the skills, especially as tasks get longer.

This is because these skills are layered on top of an underlying agent primitive that wasn't built to use them consistently. So instead, we built the engineering process into the primitive itself.

Documentation

Full documentation is available at docs.magnitude.dev.

Contributing

See the contributing guide to get started.

Acknowledgements

Built on top of BAML, Effect, and OpenTUI.

Inspired by other open-source coding agents, including OpenCode and Codex.