Skip to content

Releases: bitphill/optimus

v0.1.1

Choose a tag to compare

@bitphill bitphill released this 15 Jul 18:12

Strip Zo Computer references, rename cascade-cheap to cascade, real BYOK init flow.

  • optimus init manual/optimus init auto now actually configure BYOK provider keys (previously misrouted to the wiki project scaffold). Keys are stored in ~/.optimus/config.toml under [secrets] (0600), env vars always take priority.
  • Fixed an audit-chain bug where a nanosecond-derived ID could collide under fast repeated writes on hosts with coarse clock resolution, silently corrupting the hash chain.
  • Switched TLS root store to the OS/enterprise trust store (rustls-tls-native-roots) instead of a bundled CDLA-licensed cert list.
  • crates.io publishing prep: internal path deps now carry version constraints, cargo-deny clean.

Assets: Linux x86_64 (gnu + static musl) + SHA256SUMS. macOS/Windows binaries build locally via install.sh / install.bat.

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