mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-23 18:55:37 -04:00
f5ddded1ee
Add health status indicators to the TUI footer: - Internet connectivity (◉ NET) with green/red/muted states - Connected LLM providers count (◈ N LLM) Also update CLAUDE.md to document both installation methods (bun global install and manual ~/bin/agent-core). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
agent-core
Agent-core is a CLI + daemon that powers the Personas system (Zee, Stanley, Johny).
- Version: v0.1.0-20260114
- Prebuilt targets: Linux x64, macOS arm64 (Apple Silicon)
- Other platforms: build from source
Install
npm install -g @adolago/agent-core@0.1.0-20260114
Configure
Agent-core reads JSONC config from ~/.config/agent-core/agent-core.jsonc or .agent-core/agent-core.jsonc.
Environment variables are used only for secrets.
Minimal memory configuration:
{
"memory": {
"qdrant": {
"url": "http://localhost:6333",
"collection": "personas_memory"
},
"embedding": {
"profile": "nebius/qwen3-embedding-8b",
"dimensions": 4096,
"apiKey": "{env:NEBIUS_API_KEY}"
}
}
}
Optional: Google Antigravity OAuth (plugin-based):
agent-core plugin install opencode-google-auth
agent-core auth login
Run
agent-core
agent-core --no-daemon
agent-core daemon --hostname 127.0.0.1 --port 3210
More docs: https://github.com/adolago/agent-core.