EVERYTHING RUNS LOCAL

Download the SDK.

The IDE and CLI, plus zero-dependency client libraries for Python and TypeScript. Each talks to the same native contract on port 11434. One-line installers are shown per artifact.

Pick your surface.

Desktop appBUILD FROM SOURCE

MasiDyn IDE

Tauri desktop IDE — Monaco editor, integrated terminal, local model panel.

source: brain-ide (Tauri 2 + Vite + Monaco + xterm)See build-from-source below
CLIBUILD FROM SOURCE

MasiDyn CLI

The layered default-first model + config picker and one-shell agent control surface.

source: agnostic/masidyn_pick.py + BIDFORGE/tools/agent_cli_cluster.pycurl -fsSL https://masidyn.dev/install.sh | sh
LibraryREADY

Python client

Stdlib-only client for /v1/chat/completions and /v1/embeddings.

source: public/clients/masidyn_client.pycurl -fsSL https://masidyn.dev/clients/masidyn_client.py -o masidyn_client.py
LibraryREADY

TypeScript client

Zero-dependency fetch client for browser or Node.

source: public/clients/masidyn.tscurl -fsSL https://masidyn.dev/clients/masidyn.ts -o masidyn.ts

ONE-LINE INSTALLERS

Same command, either shell.

The installers fetch the CLI picker and cluster, verify Python is present, and put masidyn on your PATH. They never automate credentials or run privileged operations.

macOS · LINUX · WSL

POSIX shell

Downloads and runs the install script.

curl -fsSL https://masidyn.dev/install.sh | sh
WINDOWS

PowerShell

Downloads and runs the install script.

irm https://masidyn.dev/install.ps1 | iex

MASIDYN IDE

Build the desktop IDE from source.

The IDE is a Tauri 2 app (Vite + Monaco editor + xterm terminal) with a live local-model panel. A signed binary is not published yet, so build it from source:

brain-ide · Tauri
git clone <brain-ide repo>
cd brain-ide
npm install
npm run tauri build        # produces the desktop binary
# dev loop:
npm run tauri dev

Requires Node 18+, Rust (stable), and the Tauri prerequisites for your OS. A code-signed/notarized installer is an operator-gated release step — see the deploy script, not this page.

Continue to the quickstart