@brokkai/mjolnir-linux-arm64-gnu 1.6.1 → 1.7.0
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 +84 -77
- package/bin/mj +0 -0
- package/bin/mj-voice-worker +0 -0
- package/licenses/THIRD_PARTY_LICENSES.html +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -2,118 +2,125 @@
|
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
4
|
<a href="https://mjolnir.brokk.ai/">
|
|
5
|
-
<img src="docs/public/og.png" alt="Mjolnir —
|
|
5
|
+
<img src="docs/public/og.png?v=2" alt="Mjolnir — choose Codex or Claude to code and review" width="720">
|
|
6
6
|
</a>
|
|
7
7
|
</p>
|
|
8
8
|
|
|
9
|
-
Mjolnir (`mj`) is
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-

|
|
32
|
+
|
|
33
|
+
### Web interface
|
|
34
|
+
|
|
35
|
+

|
|
36
|
+
|
|
37
|
+
## Four teams, one shortcut
|
|
38
|
+
|
|
39
|
+
Choose one of four teams during onboarding, from `/mjconfig`, or with
|
|
40
|
+
**Ctrl+Tab** in a session:
|
|
41
|
+
|
|
42
|
+
- **Codex**
|
|
43
|
+
- **Claude**
|
|
44
|
+
- **Codex coder + Claude reviewer**
|
|
45
|
+
- **Claude coder + Codex reviewer**
|
|
46
|
+
|
|
47
|
+
The coder owns the primary session and its subagents. The reviewer runs in an
|
|
48
|
+
independent session after changed turns. Switching teams keeps Mjolnir's
|
|
49
|
+
terminal, permissions, sessions, tools, and remote workflow unchanged.
|
|
46
50
|
|
|
47
51
|
Mjolnir itself, its remote-control server, transcripts, and workspace tools run
|
|
48
|
-
on infrastructure you control.
|
|
49
|
-
terms and data boundaries
|
|
52
|
+
on infrastructure you control. Model requests still use the selected provider
|
|
53
|
+
under its terms and data boundaries.
|
|
50
54
|
|
|
51
55
|
## Requirements
|
|
52
56
|
|
|
53
|
-
|
|
54
|
-
|
|
57
|
+
You need credentials for at least one configured model provider. Mjolnir ships
|
|
58
|
+
with built-in Codex and Claude ACP routes and, on macOS, Linux, and Windows,
|
|
59
|
+
manages the Node.js runtime those routes need. A system Node.js installation is
|
|
60
|
+
only required when installing through npm/npx or when using the built-in routes
|
|
61
|
+
on Android. Provider use may incur cost.
|
|
55
62
|
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
[installation](https://mjolnir.brokk.ai/install/), and the
|
|
60
|
-
[data and trust boundaries](https://mjolnir.brokk.ai/data-boundaries/)
|
|
61
|
-
before connecting a private repository.
|
|
63
|
+
Custom ACP servers can be configured directly in `config.toml`. Review the
|
|
64
|
+
[data and trust boundaries](https://mjolnir.brokk.ai/data-boundaries/) before
|
|
65
|
+
connecting a private repository.
|
|
62
66
|
|
|
63
|
-
## Install
|
|
67
|
+
## Install
|
|
64
68
|
|
|
65
|
-
|
|
66
|
-
Mjolnir once without changing your global packages:
|
|
69
|
+
Choose any of the following methods.
|
|
67
70
|
|
|
68
|
-
|
|
69
|
-
npm install -g @brokkai/mjolnir
|
|
70
|
-
mj --version
|
|
71
|
+
**Release installer:** macOS and Linux on x86-64 or ARM64; Android on ARM64:
|
|
71
72
|
|
|
72
|
-
|
|
73
|
+
```bash
|
|
74
|
+
curl -fsSL https://raw.githubusercontent.com/BrokkAi/mjolnir/master/install.sh | bash
|
|
73
75
|
```
|
|
74
76
|
|
|
75
|
-
|
|
76
|
-
desktop, `mj-voice-worker`—so it does not download Mjolnir on first run. Upgrade with `npm update -g @brokkai/mjolnir` and remove it with
|
|
77
|
-
`npm uninstall -g @brokkai/mjolnir`.
|
|
78
|
-
|
|
79
|
-
On macOS (Apple Silicon and Intel) and Linux (x86-64 or ARM64 glibc), install
|
|
80
|
-
from the Homebrew tap:
|
|
77
|
+
**Homebrew:** macOS (Apple Silicon or Intel) and Linux (x86-64 or ARM64 glibc):
|
|
81
78
|
|
|
82
79
|
```bash
|
|
83
80
|
brew install brokkai/tap/mjolnir
|
|
84
81
|
```
|
|
85
82
|
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
83
|
+
**npm or npx:** macOS, Linux, Windows, and Android with Node.js 18 or later:
|
|
84
|
+
|
|
85
|
+
```bash
|
|
86
|
+
npm install -g @brokkai/mjolnir
|
|
87
|
+
# Or run without a global install:
|
|
88
|
+
npx -y @brokkai/mjolnir
|
|
89
|
+
```
|
|
90
90
|
|
|
91
|
-
|
|
91
|
+
**crates.io:** install the terminal client and desktop voice worker with Rust:
|
|
92
92
|
|
|
93
93
|
```bash
|
|
94
|
-
|
|
94
|
+
cargo install --locked brokk-mjolnir brokk-mj-voice-worker
|
|
95
95
|
```
|
|
96
96
|
|
|
97
|
-
|
|
98
|
-
|
|
97
|
+
**Release archive:** download the archive for Linux, macOS, Windows, or
|
|
98
|
+
Android from [GitHub Releases](https://github.com/BrokkAi/mjolnir/releases).
|
|
99
99
|
|
|
100
|
-
|
|
100
|
+
**Build from source:**
|
|
101
101
|
|
|
102
102
|
```bash
|
|
103
|
-
|
|
103
|
+
git clone https://github.com/BrokkAi/mjolnir.git
|
|
104
|
+
cd mjolnir
|
|
105
|
+
cargo build --release
|
|
106
|
+
./target/release/mj --cwd .
|
|
104
107
|
```
|
|
105
108
|
|
|
106
|
-
|
|
109
|
+
Desktop release packages include `mj-voice-worker`; Android packages omit
|
|
110
|
+
voice support. See the full [installation guide](https://mjolnir.brokk.ai/install/)
|
|
111
|
+
for platform details, upgrades, checksums, and custom install paths.
|
|
112
|
+
|
|
113
|
+
## Run
|
|
114
|
+
|
|
115
|
+
Open a repository and run:
|
|
107
116
|
|
|
108
117
|
```bash
|
|
109
118
|
mj
|
|
110
119
|
```
|
|
111
120
|
|
|
112
|
-
First launch
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
credentials or capabilities change, run `mj models refresh` before starting
|
|
116
|
-
Mjolnir again.
|
|
121
|
+
First launch discovers available provider credentials and asks which team to
|
|
122
|
+
use. Press **Ctrl+Tab** to switch teams later, or open the **Team** tab in
|
|
123
|
+
`/mjconfig`. Team, model, and adapter changes apply to a new session.
|
|
117
124
|
|
|
118
125
|
## Try it
|
|
119
126
|
|
package/bin/mj
CHANGED
|
Binary file
|
package/bin/mj-voice-worker
CHANGED
|
Binary file
|
|
@@ -7781,8 +7781,8 @@ insights.
|
|
|
7781
7781
|
<h3 id="GPL-3.0-only">GNU General Public License v3.0 only</h3>
|
|
7782
7782
|
<h4>Used by:</h4>
|
|
7783
7783
|
<ul class="license-used-by">
|
|
7784
|
-
<li><a href="https://crates.io/crates/brokk-mjolnir/1.
|
|
7785
|
-
<li><a href="https://crates.io/crates/brokk-mj-voice-worker/1.
|
|
7784
|
+
<li><a href="https://crates.io/crates/brokk-mjolnir/1.7.0">brokk-mjolnir 1.7.0</a></li>
|
|
7785
|
+
<li><a href="https://crates.io/crates/brokk-mj-voice-worker/1.7.0">brokk-mj-voice-worker 1.7.0</a></li>
|
|
7786
7786
|
</ul>
|
|
7787
7787
|
<pre class="license-text">GNU GENERAL PUBLIC LICENSE
|
|
7788
7788
|
Version 3, 29 June 2007
|