Skip to content

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.

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.

PlatformPackage
LinuxAppImage
WindowsPortable zip
macOS.app / DMG

Canonical downloads: Codeberg Releases – chaosnexus-suite
Mirror: GitHub Releases – chaosnexus-suite

  1. Download the artifact for your OS from a suite-v* Release.
  2. Linux: chmod +x ChaosNexus_Suite-*.AppImage and run it. Windows: extract and run ChaosNexus-Suite.bat. macOS: open the .app (Gatekeeper may require right-click → Open for unsigned alpha builds).
  3. 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

bash
cd chaosnexus-anvil
cargo run

Open Forge

bash
cd chaosnexus-forge
pnpm install
pnpm tauri dev

Connect 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

bash
cd chaosnexus-codex
cargo build --release
cargo run -- --help

Pack Suite locally (monorepo)

After component release builds have staged binaries under artifacts/:

bash
just suite-release-linux    # or suite-release-windows / suite-release-macos

Next steps