@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 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 — the self-hosted power frontend for Codex" width="720">
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 the self-hosted power frontend for **Codex**. It wraps your
10
- existing Codex account in self-hosted remote control, a worktree-first workflow,
11
- cross-platform voice input, and integrated adversarial review.
12
-
13
- Codex remains in charge of the turn while Mjolnir provides the operating
14
- environment around it:
15
-
16
- - Codex owns every user turn planning, delegating, implementing, and
17
- answering;
18
- - Codex can launch background subagents (up to 16 in parallel, all
19
- write-capable, each in a fresh session) while Mjolnir tracks them;
20
- - stable workflow progress rows summarize delegation and review phases,
21
- aggregate actor outcomes, and elapsed time; `/subagents` opens retained
22
- nested detail;
23
- - each finished subagent's report, activity log, and diff are pushed back into
24
- the primary session as a new user message nothing polls.
25
-
26
- Mjolnir is Codex-first, not Codex-only. You can add Claude, Kimi, or a
27
- custom Agent Client Protocol (ACP) server as an alternative primary or as a
28
- specialist subagent or reviewer. The terminal, permissions, sessions, tools,
29
- and remote workflow stay consistent across those routes.
30
-
31
- ![Mjolnir inline Codex session showing streaming agent output and tool activity](docs/readme-images/default-ui.png)
32
-
33
- ## What Mjolnir adds to Codex
34
-
35
- - **Self-hosted remote control:** keep the workspace and control plane on your
36
- machine and drive the session from another browser or device.
37
- - **Worktree-first workflow:** start Codex in a linked Git worktree so agent
38
- changes stay separate from your current checkout and remain easy to inspect.
39
- - **Cross-platform desktop voice:** dictate prompts locally on macOS, Linux,
40
- and Windows with Ctrl-R.
41
- - **Integrated adversarial review:** challenge workspace changes with a
42
- separate review supervisor and targeted specialist lanes before a delegated
43
- turn completes.
44
- - **Optional agent routes:** add Claude, Kimi, or a custom ACP server
45
- without replacing the Codex-first workflow.
9
+ Mjolnir (`mj`) is a full-featured frontend for **Codex and Claude**. It gives
10
+ both agents the same terminal workflow, team configuration, review pipeline,
11
+ and remote-control surface.
12
+
13
+ ## Features
14
+
15
+ - **Codex and Claude teams:** use either agent for coding and review, or split
16
+ the roles between them without changing tools or workflows.
17
+ - **Parallel subagents:** delegate to as many as 16 write-capable agents in
18
+ fresh sessions, with live progress and completed reports returned to the
19
+ primary agent.
20
+ - **Integrated adversarial review:** automatically challenge changed turns
21
+ with an independent reviewer and targeted specialist checks.
22
+ - **Worktree sessions:** start work in a linked Git worktree and keep agent
23
+ changes separate from the current checkout, whichever coder you choose.
24
+ - **Remote control:** run the workspace and control plane on your machine while
25
+ driving the session from another browser or device.
26
+ - **Local voice input:** dictate prompts on macOS, Linux, and Windows with
27
+ cross-platform, on-device speech recognition.
28
+
29
+ ### Terminal
30
+
31
+ ![Mjolnir review session showing the primary agent, reviewer progress, and usage](docs/readme-images/default-ui.png)
32
+
33
+ ### Web interface
34
+
35
+ ![Mjolnir browser interface showing session history, streaming agent output, and queued prompt controls](docs/readme-images/remote-ui.png)
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. Codex model requests still use OpenAI under the
49
- terms and data boundaries of your Codex account.
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
- The recommended path needs an authenticated, PATH-visible Codex CLI plus
54
- Node.js/npm for the Codex ACP bridge. Provider use may incur cost.
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
- Other agents are optional. Mjolnir can also use existing Claude or Kimi
57
- credentials and install supported binary ACP agents. Read
58
- [Start with Codex](https://mjolnir.brokk.ai/codex/),
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 and run
67
+ ## Install
64
68
 
65
- With Node.js 18 or later, npm is the simplest persistent install and npx runs
66
- Mjolnir once without changing your global packages:
69
+ Choose any of the following methods.
67
70
 
68
- ```bash
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
- npx -y @brokkai/mjolnir --version
73
+ ```bash
74
+ curl -fsSL https://raw.githubusercontent.com/BrokkAi/mjolnir/master/install.sh | bash
73
75
  ```
74
76
 
75
- The npm package includes the native `mj` bundle for your platform—plus, on
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
- The formula puts `mj` on `PATH` and keeps `mj-voice-worker` in its private
87
- `libexec`; it does not install Bifrost, which has its own
88
- formula in the same tap (`brew install brokkai/tap/bifrost`). Upgrade with
89
- `brew upgrade mjolnir`.
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
- The release installer supports macOS and Linux on x86-64 or ARM64, plus Android ARM64:
91
+ **crates.io:** install the terminal client and desktop voice worker with Rust:
92
92
 
93
93
  ```bash
94
- curl -fsSL https://raw.githubusercontent.com/BrokkAi/mjolnir/master/install.sh | bash
94
+ cargo install --locked brokk-mjolnir brokk-mj-voice-worker
95
95
  ```
96
96
 
97
- It installs `mj` and Bifrost; desktop installs also include
98
- `mj-voice-worker`. Windows users should use a release archive or Cargo.
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
- Desktop users can install Mjolnir and its optional voice worker from crates.io:
100
+ **Build from source:**
101
101
 
102
102
  ```bash
103
- cargo install --locked brokk-mjolnir brokk-mj-voice-worker
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
- Then open a repository and run:
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 opens Mjolnir's configuration screen. Confirm the Codex account
113
- and route, keep the primary model on Auto, and start the session. Return later
114
- with `/mjconfig`. Model and adapter changes apply to the next session. If Codex
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
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.6.1">brokk-mjolnir 1.6.1</a></li>
7785
- <li><a href="https://crates.io/crates/brokk-mj-voice-worker/1.6.1">brokk-mj-voice-worker 1.6.1</a></li>
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brokkai/mjolnir-linux-arm64-gnu",
3
- "version": "1.6.1",
3
+ "version": "1.7.0",
4
4
  "license": "GPL-3.0-only",
5
5
  "repository": "https://github.com/BrokkAi/mjolnir",
6
6
  "homepage": "https://mjolnir.brokk.ai/",