@magnitudedev/cli 0.0.1-alpha.6 → 0.0.1-alpha.7
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.
- package/README.md +14 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,14 +6,15 @@
|
|
|
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
|
-
|
|
12
|
-
|
|
13
|
-
- The lead
|
|
14
|
-
-
|
|
15
|
-
- A
|
|
16
|
-
- **
|
|
10
|
+
Magnitude is an **open source coding agent** that orchestrates a team of subagents, each specialized for a role in the development process. A lead agent breaks down your task and delegates to explorers, planners, builders, reviewers, debuggers, and a browser agent.
|
|
11
|
+
|
|
12
|
+
- **Everything runs in subagents, including implementation.** The lead's context stays clean, so it remains coherent across long tasks.
|
|
13
|
+
- **The agent follows a process without you enforcing it.** No praying the agent invokes your skills. No manually triggering them when it doesn't.
|
|
14
|
+
- **A lead agent manages the work, not you.** You don't babysit, assign tasks, or decide what happens next. Go get a coffee.
|
|
15
|
+
- **Subagents stay alive.** The lead can tell the planner to consider more angles. The same builder can fix bugs that the reviewer found.
|
|
16
|
+
- **Agents share context through files, not summarization.** No output tokens burned on lossy summaries. Every handoff is a file you can view later.
|
|
17
|
+
- **Mix models by role.** Fast models for exploration. Frontier models for planning and review. You control the cost-intelligence tradeoff.
|
|
17
18
|
|
|
18
19
|
<p align="center">
|
|
19
20
|
<img src="interface.png" alt="Magnitude Interface" width="100%" />
|
|
@@ -61,23 +62,21 @@ Magnitude may use none or all of these in a given session. For a quick fix in a
|
|
|
61
62
|
|
|
62
63
|
## Why we built this
|
|
63
64
|
|
|
64
|
-
|
|
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.
|
|
65
|
+
The community clearly wants more out of Claude Code. Projects like Superpowers have hit 100k+ GitHub stars augmenting Claude Code with more skills/subagents. People want agents to follow better software development processes.
|
|
67
66
|
|
|
68
|
-
|
|
67
|
+
But they're plugging into an existing coding agent that wasn't built to use them consistently and effectively. The result is inconsistent usage and mixed results, often having to repeatedly prompt the agent to actually use the skills.
|
|
69
68
|
|
|
70
|
-
|
|
69
|
+
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
70
|
|
|
72
|
-
|
|
71
|
+
## Documentation
|
|
73
72
|
|
|
74
73
|
Full documentation is available at [docs.magnitude.dev](https://docs.magnitude.dev).
|
|
75
74
|
|
|
76
|
-
|
|
75
|
+
## Contributing
|
|
77
76
|
|
|
78
77
|
See the [contributing guide](https://docs.magnitude.dev/contributing) to get started.
|
|
79
78
|
|
|
80
|
-
|
|
79
|
+
## Acknowledgements
|
|
81
80
|
|
|
82
81
|
Built on top of [BAML](https://boundaryml.com), [Effect](https://effect.website), and [OpenTUI](https://github.com/anomalyco/opentui).
|
|
83
82
|
|