MicroCodex is an ultra-lightweight coding agent that runs locally in your terminal.
Quickstart
Installing and running MicroCodex
Run the following on Mac or Linux to install MicroCodex:
curl -fsSL https://github.com/paoloanzn/microcodex/releases/latest/download/install.sh | sh
Then simply run microcodex login to sign in, followed by microcodex to get started.
You can also go to the latest GitHub Release and download the appropriate binary for your platform. Each GitHub Release contains these executables: macOS Apple Silicon/arm64: microcodex-aarch64-apple-darwin.tar.gz x86_64: microcodex-x86_64-apple-darwin.tar.gz
Linux x86_64: microcodex-x86_64-unknown-linux-gnu.tar.gz arm64: microcodex-aarch64-unknown-linux-gnu.tar.gz
Each archive contains a single entry with the platform baked into the name (for example, microcodex-aarch64-apple-darwin ), so you likely want to rename it to microcodex after extracting it.
The installer selects the native build for the current architecture. Linux requires the libcurl and OpenSSL runtime libraries.
... continue reading