Skip to content

SolaceHarmony/emberharmony

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

76 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

EmberHarmony logo

The open source AI coding agent.

Discord npm Build status

EmberHarmony Terminal UI


What is EmberHarmony?

EmberHarmony is an open source AI coding agent that runs in your terminal. It's provider-agnostic — use it with Claude, OpenAI, Google, local models via Ollama, or any OpenAI-compatible endpoint. It features a rich TUI, built-in LSP support, and a client/server architecture that lets you drive it remotely.

Zero-Config Local Models

EmberHarmony automatically discovers every model installed in your local Ollama instance. No API keys, no configuration files, no manual setup. If Ollama is running, your models appear:

ollama (custom): 19 models
  gemma3:latest           · 4.3B  · Q4_K_M
  llama3.2:latest         · 3.2B  · Q4_K_M
  deepseek-r1:14b         · 14.0B · Q4_K_M
  qwen3:8b                · 8.2B  · Q4_K_M
  ...

Switch between cloud and local models mid-conversation. Run sensitive code analysis entirely on your machine. Use cloud models when you need frontier capability, local models when you need privacy or offline access.

Key differences from other AI coding tools:

  • Local-first — automatic Ollama model discovery, zero config, no keys needed
  • 100% open source (MIT)
  • Not coupled to any single provider — works with Claude, OpenAI, Google, Ollama, and more
  • Out-of-the-box LSP support for intelligent code navigation
  • Rich terminal UI pushing the limits of what's possible in the terminal
  • Client/server architecture — run on your machine, drive from anywhere

Installation

# Quick install
curl -fsSL https://raw.githubusercontent.com/SolaceHarmony/emberharmony/dev/install | bash

# npm / bun
npm i -g @thesolaceproject/emberharmony@latest

Local Build + Install

bun install
npm run pack:local
# prints a .tgz path you can install, e.g.
# npm i -g /absolute/path/to/emberharmony-1.2.2.tgz

Desktop App (Beta)

EmberHarmony is also available as a desktop application. Download directly from the releases page.

Platform Download
macOS (Apple Silicon) emberharmony-desktop-darwin-aarch64.dmg
macOS (Intel) emberharmony-desktop-darwin-x64.dmg
Windows emberharmony-desktop-windows-x64.exe
Linux .deb, .rpm, or AppImage

Installation Directory

The install script respects the following priority order:

  1. $EMBERHARMONY_INSTALL_DIR — custom installation directory
  2. $XDG_BIN_DIR — XDG Base Directory compliant path
  3. $HOME/bin — standard user binary directory (if exists)
  4. $HOME/.emberharmony/bin — default fallback
EMBERHARMONY_INSTALL_DIR=/usr/local/bin curl -fsSL https://raw.githubusercontent.com/SolaceHarmony/emberharmony/dev/install | bash

Agents

EmberHarmony includes two built-in agents you can switch between with the Tab key.

  • build — default, full-access agent for development work
  • plan — read-only agent for analysis and code exploration
    • Denies file edits by default
    • Asks permission before running bash commands
    • Ideal for exploring unfamiliar codebases or planning changes

A general subagent is also available for complex searches and multistep tasks. It's used internally and can be invoked with @general in messages.

Provider Support

EmberHarmony works with any OpenAI-compatible API. Built-in support for:

Provider Models Config needed
Ollama (local) Auto-discovered from localhost:11434 None — just run Ollama
Ollama Cloud Hosted Ollama models API key
Anthropic Claude Opus, Sonnet, Haiku API key
OpenAI GPT-4o, o1, o3 API key
Google Gemini Pro, Flash API key
Any OpenAI-compatible LM Studio, vLLM, Together, Groq, etc. Endpoint + key

Ollama Local Setup

# 1. Install Ollama (https://ollama.com)
# 2. Pull a model
ollama pull llama3.2

# 3. Run EmberHarmony — models appear automatically
emberharmony

To use a non-default Ollama address, add to ~/.config/emberharmony/config.json:

{
  "provider": {
    "ollama": {
      "options": { "baseURL": "http://192.168.1.100:11434" }
    }
  }
}

Contributing

If you're interested in contributing to EmberHarmony, please read our contributing guide before submitting a pull request.

Building on EmberHarmony

If you are working on a project related to EmberHarmony that uses "emberharmony" in its name, please add a note in your README clarifying that it is not built by The Solace Project and is not affiliated with us.

Acknowledgments

EmberHarmony is a fork of opencode by the SST team. We are deeply grateful for their foundational work in building an exceptional open source AI coding agent. This project builds on their vision and engineering.

Maintainer

Sydney ReneeThe Solace Project


Community: Discord | Issues | Releases

About

No description, website, or topics provided.

Resources

License

Contributing

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors