ChaosNexus Quickstart
Overview
This quickstart gets you running ChaosNexus with minimal friction. Prefer the Suite installer when you want the full desktop stack in one download. Build from source (or clone component polyrepos) when you are developing or contributing.
ChaosNexus targets consumer hardware (roughly a mid-tier gaming laptop with ~8GB VRAM). It is intended for developers, data analysts, and security researchers who want a local-first, zero-trust agentic environment.
Part 1: Download ChaosNexus Suite (recommended)
Suite packages ship Forge (IDE), supervised Anvil, Codex, Crucible, and a slim Scripts tree with one example plugin (translation_test). GGUF models are not baked in; they download on first Models use.
| Platform | Package |
|---|---|
| Linux | AppImage |
| Windows | Portable zip |
| macOS | .app / DMG |
Canonical downloads: Codeberg Releases – chaosnexus-suite
Mirror: GitHub Releases – chaosnexus-suite
- Download the artifact for your OS from a
suite-v*Release. - Linux:
chmod +x ChaosNexus_Suite-*.AppImageand run it. Windows: extract and runChaosNexus-Suite.bat. macOS: open the.app(Gatekeeper may require right-click → Open for unsigned alpha builds). - Forge should open the bundled Scripts example workspace automatically when Suite env paths are present.
Alpha: Windows SmartScreen and macOS Gatekeeper may warn until Authenticode / notarization land.
Part 2: Advanced – build from source
Use this path for development. Prerequisites: Node.js with pnpm, Rust (cargo), and optionally a local model provider.
Launch Anvil
cd chaosnexus-anvil
cargo runOpen Forge
cd chaosnexus-forge
pnpm install
pnpm tauri devConnect Forge to chaosnexus-scripts/plugins (or the Suite share/chaosnexus/scripts/plugins tree). The published Scripts tree includes the translation_test hello-world example.
Run Codex
cd chaosnexus-codex
cargo build --release
cargo run -- --helpPack Suite locally (monorepo)
After component release builds have staged binaries under artifacts/:
just suite-release-linux # or suite-release-windows / suite-release-macosNext steps
- Repository architecture – Codeberg polyrepos, GitHub mirrors, Suite Releases
- Understand the Architecture
- Learn about Visual Scripting
- ChaosNexus Scripts usage