Getting Started
Install Anibuild, authenticate your terminal session, and run your first autonomous agent task.
01 // Quick Installation
Install Anibuild directly from your terminal on macOS or Linux with a single command:
~curl -fsSL https://anibuild.online/install.sh | sh// ARCHITECTURE NOTE
Anibuild compiles as a native binary built on top of xAI's open-source grok-build harness. It runs locally with zero remote code storage.
02 // Launching your First Session
Navigate to any git repository or codebase directory and launch the interactive TUI interface:
~anibuildOn your first launch, Anibuild guides you through authentication with OpenAI/ChatGPT to enable Codex-powered codebase intelligence.
03 // Executing Codebase Tasks
Pass a direct prompt to inspect and understand a repository structure:
~anibuild "explain the architecture and entrypoints of this codebase"Or assign an active code refactoring task:
~anibuild "add error handling and validation to the database user module"04 // TUI Keybindings & Slash Commands
Use these built-in shortcuts while inside the interactive TUI mode:
| Shortcut / Command | Action |
|---|---|
| ctrl + w | Create new git worktree session |
| ctrl + s | Resume previous conversation turn |
| /jump [turn_id] | Jump instantly to any turn in session history |
| /timeline | Open interactive click rail for fast navigation |
| ctrl + q | Exit agent session safely |