Skip to content

Releases: ghostzali/ghost-prebuild

ghost-agent v0.1.0

Choose a tag to compare

@ghostzali ghostzali released this 26 Jul 04:40

ghost-agent v0.1.0

Initial release of Ghost Agent (g0s) — a terminal-based AI coding agent forked from Grok Build CLI.

Key Features

  • 🔌 OpenAI-compatible API providers — Works with OpenAI, Anthropic, xAI, DeepSeek, Ollama, LiteLLM, and more
  • 🔑 Multiple auth profiles — Configure multiple API keys and switch at runtime
  • 🎛️ Provider-agnostic models — Map any model from any provider with full customization

Install

curl -fsSL https://ghost-agent.dev.zali.pro/install.sh | bash

Or download directly:

curl -L -o g0s https://github.com/ghostzali/ghost-prebuild/releases/download/v0.1.0/g0s
chmod +x g0s
./g0s --help

Provider setup

mkdir -p ~/.ghost
cat > ~/.ghost/config.toml << EOF
[providers]
providers = [
  { name = "openai", api_base = "https://api.openai.com/v1", env_key = "OPENAI_API_KEY" },
  { name = "deepseek", api_base = "https://api.deepseek.com/v1", env_key = "DEEPSEEK_API_KEY" }
]
EOF
g0s providers