@magnitudedev/cli 0.0.1-alpha.6 → 0.0.1-alpha.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +14 -16
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -6,14 +6,14 @@
6
6
  <a href="https://docs.magnitude.dev" target="_blank"><img src="https://img.shields.io/badge/📕-Docs-232f41?style=flat-square&labelColor=0369a1&color=gray" alt="Documentation" /></a> <img src="https://img.shields.io/badge/License-Apache%202.0-232f41?style=flat-square&labelColor=0369a1&color=gray" alt="License" /> <a href="https://discord.gg/VcdpMh9tTy" target="_blank"><img src="https://img.shields.io/discord/1305570963206836295?style=flat-square&logo=discord&logoColor=white&label=Discord&labelColor=5865F2&color=gray" alt="Discord" /></a> <a href="https://x.com/usemagnitude" target="_blank"><img src="https://img.shields.io/badge/-Follow%20Magnitude-000000?style=flat-square&labelColor=000000&color=gray&logo=x&logoColor=white" alt="Follow Magnitude" /></a>
7
7
  </p>
8
8
 
9
- Magnitude is an **open source coding agent** built from the ground up around subagents. You chat with a lead agent that coordinates specialized subagents on your behalf: explorers, planners, builders, reviewers, debuggers, and a browser agent.
10
9
 
11
- - Building happens in subagents, so the **lead stays focused on you**
12
- - Subagents are **long-lived** and **resumable**, not disposable
13
- - The lead can **redirect subagents mid-task** without starting over
14
- - Subagents are spun up in **parallel** for faster work
15
- - A **shared workspace** keeps handoffs between agents lossless
16
- - **Mix and match models** by role to balance intelligence and speed
10
+ Magnitude is an **open source coding agent** that orchestrates a full dev team of subagents. A lead agent delegates across explorers, planners, builders, reviewers, debuggers, and a browser agent.
11
+
12
+ - **Everything runs in subagents.** The lead stays focused on orchestration, while subagents handle implementation. The lead's context stays clean.
13
+ - **The dev process is built in.** The lead runs an explore, plan, build, review, debug cycle, iterating until checks pass or it needs your input. No manual orchestration.
14
+ - **Subagents stay alive.** The lead can tell the planner to consider more angles, or send bugs back to the same builder. No re-exploration, saving time and tokens.
15
+ - **Agents share context through files, not summaries.** No output tokens burned on lossy summaries. Every handoff is a file you can view later.
16
+ - **Mix models by role.** Fast models for exploration. Frontier models for planning and review. You control the cost-intelligence tradeoff.
17
17
 
18
18
  <p align="center">
19
19
  <img src="interface.png" alt="Magnitude Interface" width="100%" />
@@ -56,28 +56,26 @@ Magnitude comes out of the box with the following subagents:
56
56
  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.
57
57
 
58
58
  <p align="center">
59
- <img src="architecture.png" alt="Magnitude Architecture" width="100%" />
59
+ <img src="architecture-dark.png" alt="Magnitude Architecture" width="100%" />
60
60
  </p>
61
61
 
62
62
  ## Why we built this
63
63
 
64
- We became fully subagent-pilled the first time we saw Claude Code use an explore agent. We expected it to continue getting better and better. **But it didn't.**
65
-
66
- The community clearly feels the same — projects like Superpowers have hit 100k+ GitHub stars augmenting Claude Code with more subagents. But they're plugging into an existing primitive that wasn't designed for deep subagent orchestration.
64
+ The community clearly wants more out of Claude Code. Projects like Superpowers have hit 100k+ GitHub stars by augmenting Claude Code with more skills/subagents. People want agents to follow better software development processes.
67
65
 
68
- Instead of plugging into an existing primitive, we built a new one from the ground up. That's the difference between bolting on subagents and building around them.
66
+ But they're plugging into an existing coding agent that wasn't built around them. The result is inconsistent usage and mixed results, often having to repeatedly prompt the agent to actually use the skills.
69
67
 
70
- ## Additional Info
68
+ Instead of plugging into an existing primitive, we built a new one from the ground up. Imagine Claude Code was actually built around Superpowers. **That's Magnitude.**
71
69
 
72
- ### Documentation
70
+ ## Documentation
73
71
 
74
72
  Full documentation is available at [docs.magnitude.dev](https://docs.magnitude.dev).
75
73
 
76
- ### Contributing
74
+ ## Contributing
77
75
 
78
76
  See the [contributing guide](https://docs.magnitude.dev/contributing) to get started.
79
77
 
80
- ### Acknowledgements
78
+ ## Acknowledgements
81
79
 
82
80
  Built on top of [BAML](https://boundaryml.com), [Effect](https://effect.website), and [OpenTUI](https://github.com/anomalyco/opentui).
83
81
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@magnitudedev/cli",
3
- "version": "0.0.1-alpha.6",
3
+ "version": "0.0.1-alpha.8",
4
4
  "description": "Magnitude AI coding agent",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {