Features Install Commands Providers ChangelogNew Get API Key Web Version
v4.0.7 · Now Available

The AI
Terminal Coder

Work with High-class intelligence directly in your codebase. Read, write, patch, build — zero context switching.

themes · personas · multi-agent · snippets · dev-tools · workspaces

alpanzo — ~/my-project
┌──────────────────────────────────────────────────────────────┐ _ _ ___ _ _ _ _____ ___ /_\ | | | _ \/_\ | \| ||__ / / _ \ / _ \| |__ | _/ _ \| .` | / / | (_) | /_/ \_\____||_|/_/ \_\_|\_| /___(_)___/ Elite AI Terminal Coder · v4.0.7 · Read · Write · Patch ├──────────────────────────────────────────────────────────────┤ Alpanzo Ace 2.7 · sagittarius-labs.pages.dev · ~/project └──────────────────────────────────────────────────────────────┘ my-project ❯❯ Build a REST API with JWT auth ▶ Alpanzo (thinking...) ┌─ Scaffolding Express + JWT, clean folder structure... Created server.js (1.8 KB) Created routes/auth.js (943 B) Created middleware/jwtVerify.js (512 B) Created package.json (388 B) npm install express jsonwebtoken bcryptjs Run this command? [Y/n]: yExit 0 │ tokens: last ~1,847 session ~3,210 my-project ❯❯
Features

Everything you need to ship faster

AI-powered coding assistance wired directly into your terminal workflow.

Multi-turn Context

Project memory, file context, and conversation history across sessions. Knows your whole codebase.

Full File System

Read, write, patch, append, delete — full undo/redo with per-turn snapshot stacks.

Git Integration

Status, diff, add, commit with AI messages, log and init — all without leaving the prompt.

Auto Error Recovery

Failed commands are diagnosed by AI with fixes applied automatically in up to 3 loops.

Search & File Watch

Instant grep across your entire project. File watcher detects external changes live.

Context Pinning

Pin key files to every prompt. Import analysis auto-includes related files as context.

Sandbox Mode

Approve every write before it lands. Blocklist prevents destructive shell operations.

Syntax Highlighting

Pygments-powered file previews with live token meter per-request and per-session.

Task Decomposition

Break large tasks into a numbered plan, review, approve, then execute step by step.

AI Personas

6 specialized AI modes tailored for specific tasks, frameworks, or languages.

Themes

6 distinct UI themes to match your terminal setup and personal aesthetics.

Snippet Library

Save, manage, and instantly insert your favorite code snippets via CLI.

Multi-Agent

Deploy specialized sub-agents to handle complex parallel coding tasks.

Workspace Manager

Seamlessly switch contexts between different project workspaces and envs.

Plugin System

Extend Alpanzo's capabilities with custom community or local plugins.

TODO Scanner

Automatically discover, track, and tackle pending tasks within your codebase.

Dev Toolbox

Built-in utilities for regex, hashing, base64, port scanning, and more.

Live Preview

Instantly spin up dev servers and watch changes live as AI codes.

Installation

Up and running in minutes

After setup, just type alpanzo anywhere in your terminal to launch.

0
Install Git  Required First

Download from git-scm.com/downloads. Needed for all git features.

Git must be installed before Alpanzo to unlock /git commands, AI commit messages, and diff previews.
bash · verify
$ git --version
git version 2.43.0
1
Install Alpanzo

Grab the script (For Windows, run CMD as Admin!)

Requirement: Ensure you run pip install requests pygments as they are required dependencies in v4.
Windows · CMD (Run as Admin)
C:\> mkdir C:\bin 2>nul || ver >nul && curl -L -o C:\bin\alpanzo.exe https://alpanzocode.netlify.app/alpanzo.exe && setx /M PATH "%PATH%;C:\bin" && setx /M ALPANZO_PATH "C:\bin\alpanzo.exe" && echo Done! Restart CMD and type "alpanzo" to run.
macOS
$ mkdir -p ~/bin && curl -L -o ~/bin/alpanzo https://alpanzocode.netlify.app/alpanzo.exe && chmod +x ~/bin/alpanzo && echo 'export PATH="$HOME/bin:$PATH"' >> ~/.zshrc && source ~/.zshrc && echo "Done! Restart Terminal and type 'alpanzo' to run."
Linux
$ mkdir -p ~/bin && curl -L -o ~/bin/alpanzo https://alpanzocode.netlify.app/alpanzo.exe && chmod +x ~/bin/alpanzo && echo 'export PATH="$HOME/bin:$PATH"' >> ~/.bashrc && source ~/.bashrc && echo "Done! Restart Terminal and type 'alpanzo' to run."
2
Get your API Key  Free

On first launch Alpanzo runs setup. Get your free key at sagittarius-labs.pages.dev.

first launch
$ alpanzo

┌── ✨ First-Time Setup ─────────────────────────────┐
Welcome! Choose how to connect.

Option 1 Sagittarius Labs (free)
sagittarius-labs.pages.dev
Option 2 Bring your own endpoint
└────────────────────────────────────────────────────┘

Choose [1/2]: 1
Paste your API Key: sk-sag-••••••
✓ Configuration saved!
3
Update Alpanzo

To get the latest version, simply delete the existing executable and download the new one.

Windows · CMD
C:\> del C:\bin\alpanzo.exe 2>nul & curl -L -o C:\bin\alpanzo.exe https://alpanzocode.netlify.app/alpanzo.exe && echo Updated successfully!
macOS / Linux
$ rm -f ~/bin/alpanzo && curl -L -o ~/bin/alpanzo https://alpanzocode.netlify.app/alpanzo.exe && chmod +x ~/bin/alpanzo && echo "Updated successfully!"
Reference

All commands

Use ? or /help inside the app for the full interactive panel.

File System
/lsList files and directories
/cd <path>Change working directory
/read <file>Syntax-highlighted preview (supports :start:end)
/search <term>Grep across all project files
/run <cmd>Run a shell command directly
Git
/git statusShow staged/unstaged changes
/git diff [file]Unified diff vs HEAD
/git add [file]Stage file (default: .)
/git commit [msg]Commit — AI generates message if blank
/git logLast 10 commits oneline
/git initInitialize new git repository
/git branchManage branches
/git stashStash changes
/git blameShow file annotations
/git pushPush to remote
/git pullFetch and merge from remote
Context
/pin <file>Pin file to every AI prompt
/unpin <file>Remove pinned file
/pinsShow all pinned files
/memoryView/edit project memory file
/btw <note>Inject note into next prompt
Undo / History
/undoUndo last batch of file changes
/redoRe-apply undone changes
/clearClear conversation history
/exportExport session to Markdown
Configuration
/model <name>Switch AI model mid-session
/mode preciseTemperature 0.1 — precise
/mode balancedTemperature 0.3 — default
/mode creativeTemperature 0.8 — creative
/mode wildTemperature 1.0 — wild
/safeToggle sandbox mode
/streamToggle streaming responses
/settingsEdit 8 options (auto-compress, etc)
/resetkeyFull provider reset
AI Tools
/decomposeTask breakdown before next request
/image <path> <q>Ask about an image (vision mode)
? or /helpShow full command panel
/exitQuit Alpanzo
AI Code Ops
/reviewPerform a comprehensive code review
/refactorRefactor code for better structure
/testGenerate unit tests for selected context
/docAuto-generate docstrings and comments
/auditSecurity and best-practices audit
/perfIdentify and fix performance bottlenecks
Dev Tools
/calcEvaluate math expressions
/hashGenerate file or string hashes
/b64Base64 encode/decode utilities
/httpSend quick HTTP requests
/regexTest and evaluate regular expressions
/portsList active ports and processes
/psProcess manager
/netNetwork diagnostics tool
/envManage environment variables
Session Tools
/agentSpawn autonomous sub-agents
/watchFile watcher with live reload
/previewSpin up a live preview server
/todoScan and manage project TODOs
/cronSchedule recurring background tasks
/benchmarkRun code execution benchmarks
/checkpointSave/restore session state
Management
/snipSave and insert code snippets
/templateScaffold files from templates
/workspaceSwitch project workspaces
/favManage favorite files and paths
/aliasCreate custom command shortcuts
Providers

Connect to any provider

Works with Sagittarius Labs out of the box, or plug in any OpenAI-compatible endpoint.

Sagittarius Labs · Recommended

Free API key at sagittarius-labs.pages.dev. Powers the Alpanzo Ace 2.7 model.

config
# Endpoint
https://sagittarius-labs.pages.dev
# Model
auto (Alpanzo Ace 2.7)
Web Version

No install needed. Try Alpanzo directly at alpanzoai.pages.dev.

Open Web Version
Custom Endpoints

Any /v1/chat/completions compatible API works:

endpoints
# OpenAI
https://api.openai.com/v1/chat/completions

# Anthropic
https://api.anthropic.com/v1/chat/completions

# Ollama (local, no key needed)
http://localhost:11434/v1/chat/completions

# Nvidia NIM
https://integrate.api.nvidia.com/v1/chat/completions

Use /settings or /resetkey to switch anytime.

Get Started

Build smarter,
ship faster

Install Alpanzo, get your free API key, and start coding with AI intelligence directly from your terminal.

Copied!