Skip to content

optimus v0.1.0 — initial release

Choose a tag to compare

@bitphill bitphill released this 12 Jul 13:40

First release of optimus, a unified Rust LLM skill suite branched from wiki-llm.

What's inside

  • Sub-skills: wiki · caveman · aura · graphify · init-manual · init-auto · help
  • Rust workspace: 10 crates, ~7 000 lines
  • Persistent global memory: sled embedded KV shared across every subskill and agent
  • LLM cascade cascade-cheap: free → cheap → quality → frontier
  • Universal installer: .sh / .bat / .cmd / .ps1 with per-OS deps
  • Security: unsafe_code = forbid, panic = abort, rustls-only, no OpenSSL runtime

Prebuilt binaries

Target Notes
x86_64-unknown-linux-gnu dynamic; glibc >= 2.31
x86_64-unknown-linux-musl fully static, portable across every modern Linux

macOS and Windows: use ./install.sh or install.bat — the installer bootstraps rustup and builds from source.

Install

curl -L https://github.com/bitphill/optimus/archive/refs/tags/v0.1.0.tar.gz | tar xz
cd optimus-0.1.0
./install.sh
optimus init auto
optimus help

Or fetch a prebuilt binary:

curl -L https://github.com/bitphill/optimus/releases/download/v0.1.0/optimus-v0.1.0-x86_64-unknown-linux-musl.tar.gz | tar xz
install -m 0755 optimus ~/.local/bin/optimus

Checksums

See SHA256SUMS.

Upstream repos merged

  • bitphill/wiki-llm (branched, not forked)
  • JuliusBrussee/caveman + linked
  • ojuschugh1/aura
  • Graphify-Labs/graphify

MIT © bitphill