Local Terminal CLI¶
Run code reviews, triage evaluations, and dependency checks directly on your local machine before pushing code.
💻 CLI Commands¶
1. Code Review¶
# Review uncommitted changes in current working tree
poing --local
# Review only staged changes
poing --local --staged
# Compare against a specific git target or base branch
poing --local --diff-target main
# Output structured JSON for piping or CI
poing --local --format json
2. Autonomous Code Repair (--fix)¶
# Automatically repair bugs with Google Antigravity Agent
poing --local --fix --provider antigravity
# Automatically repair bugs using local Ollama (100% offline)
poing --local --fix --provider ollama
# Repair bugs using Gemini Flash
poing --local --fix --provider gemini --model gemini-3.7-flash
3. Issue Triage¶
poing --mode triage --local \
--issue-title "App crash on iOS 18" \
--issue-body "Null pointer exception when initializing plugin on startup."
3. Dependency Check¶
🤖 Using Different AI Backends¶
Google Gemini (Cloud)¶
Local Ollama / vLLM (Offline / Private)¶
# Ensure Ollama is running (`ollama serve`)
poing --local --provider ollama --model deepseek-r1:latest