mnemosyne systems

orangu 1.0.0

July 27, 2026

mnemosyne systems is proud to announce orangu 1.0.0 - the Open Source AI-powered coding environment.

orangu is a complete, self-contained AI coding stack - not just a client. Every layer of the pipeline now ships from this one project, written end to end in Rust , and every layer is Open Source under the GNU General Public License v3.0 .

One stack, three programs

Most local AI setups are a patchwork: one tool for the editor, a separate engine for inference, and glue to manage which model is loaded. orangu is the whole stack in one project:

Every layer talks to the next over the OpenAI-compatible API, so the pieces stay cleanly separated - yet they build, ship, install, and run as one.

The new inference server

The headline feature of 1.0.0 is orangu-server, a native, pure-Rust GGUF inference server:

The coordinator has moved into orangu-server, and all GGUF commands now live there as well.

Code review, built in

Code review is orangu’s standout feature, and it runs entirely on your own hardware. orangu turns the terminal into a review workstation for the changes on your current branch - committed work plus what is still in the working tree - measured against the merge base with the default branch. Both reviewers require the branch to be rebased up to date, so you never review against stale code.

/review - interactive review. A full-screen, two-pane view with the file checklist on the right, the selected file’s diff on the left, and your prompt at the bottom:

On exit it writes a category-grouped report with an approve/reject Conclusion, and copies the Markdown to the clipboard.

/auto_review - LLM-driven review. The model reviews the whole change and each file on its own, sorts findings into the same seven categories, marks every file approved or rejected, and renders a final verdict - orangu approves/rejects this patch. It is deliberate about effort:

/auto_review <file> reviews a single file, /auto_review all reviews every Git-tracked file in the project, and immediate and deep combine with either form. Share the result without leaving the terminal: /export review writes a PDF to the workspace root, and /comment 42 with auto review posts it straight onto a GitHub or GitLab issue or pull request. No gh or glab needed.

Because the scheduler runs commands unattended, a line such as 0 6 * * * auto review immediate && export auto review in ~/.orangu/schedule produces a review report each morning with nobody at the keyboard.

Open Source

orangu is licensed under GPL-3.0, and that applies to the entire stack - the environment, the coordinator, and the inference engine. There is no open core, no proprietary engine behind the Open Source front end, and no feature held back for a paid tier. You can read every line that touches your code, from the prompt you type to the matrix multiply that answers it.

The project is developed in the open on GitHub, and 1.0.0 carries contributions from the community across the review workflow, the terminal interface, Git operation error handling, and GPU detection on Apple Silicon. Our thanks to everyone who filed an issue, opened a discussion, or sent a patch.

One vendor

A local AI coding setup normally means assembling parts from several suppliers and owning the integration yourself. orangu 1.0.0 removes that: one project, one language, one license, one installer, one manual, one issue tracker, one release.

The one-liner installer puts the whole stack - orangu, orangu-coordinator, and orangu-server - on the machine in a single step, on Linux, macOS, and Windows:

curl -fsSL https://mnemosyne-systems.github.io/orangu/install.sh | sh

Single vendor, but not single-vendor lock-in. Because every layer speaks the OpenAI-compatible API, you can point orangu at another server, or point another client at orangu-server, whenever you want to. And because nothing leaves your machine, there is no third-party cloud in the loop at all: zero telemetry, no per-token billing, no account, and no Internet connection required once the server and your models are downloaded. That makes orangu a fit for privacy-sensitive, regulated, and air-gapped environments.

Also in this release

Availability

orangu 1.0.0 is available now for Linux, macOS, and Windows on x86_64 and aarch64, with source and checksums published alongside the binaries.

Commercial support for orangu is available from mnemosyne systems - contact sales .

Be part of the community, and be proud of your contributions ! Try it, star it, fork it, break it, tell us what’s missing.

Thanks for your time !

Overview: https://www.mnemosyne-systems.ai/products/orangu
Repository: https://github.com/mnemosyne-systems/orangu
Release: https://github.com/mnemosyne-systems/orangu/releases/tag/1.0.0