npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@thesolaceproject/emberharmony-windows-x64-baseline

v1.4.8

Published

<p align="center"> <a href="https://github.com/SolaceHarmony/emberharmony"> <picture> <source srcset="packages/console/app/src/asset/logo-ornate-dark.svg" media="(prefers-color-scheme: dark)"> <source srcset="packages/console/app/src/ass

Readme

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 or .rpm |

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 opencode upstream 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