Files
opencode/packages/agent-core
Artur Do Lago f5ddded1ee feat(tui): add system monitor lights for internet and LLM providers
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>
2026-01-20 13:28:25 +01:00
..
2026-01-20 13:27:02 +01:00
2026-01-20 13:27:31 +01:00
2026-01-20 13:27:02 +01:00
2026-01-20 13:17:38 +01:00

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.