@thesolaceproject/emberharmony-linux-arm64-musl 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Sydney Renee
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,149 @@
1
+ <p align="center">
2
+ <a href="https://solace.ofharmony.ai">
3
+ <picture>
4
+ <source srcset="packages/console/app/src/asset/logo-ornate-dark.svg" media="(prefers-color-scheme: dark)">
5
+ <source srcset="packages/console/app/src/asset/logo-ornate-light.svg" media="(prefers-color-scheme: light)">
6
+ <img src="packages/console/app/src/asset/logo-ornate-light.svg" alt="EmberHarmony logo">
7
+ </picture>
8
+ </a>
9
+ </p>
10
+ <p align="center">The open source AI coding agent.</p>
11
+ <p align="center">
12
+ <a href="https://discord.gg/EdF8f7JR"><img alt="Discord" src="https://img.shields.io/discord/1391832426048651334?style=flat-square&label=discord" /></a>
13
+ <a href="https://www.npmjs.com/package/@thesolaceproject/emberharmony"><img alt="npm" src="https://img.shields.io/npm/v/%40thesolaceproject%2Femberharmony?style=flat-square" /></a>
14
+ <a href="https://github.com/SolaceHarmony/emberharmony/actions/workflows/publish.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/SolaceHarmony/emberharmony/publish.yml?style=flat-square&branch=dev" /></a>
15
+ </p>
16
+
17
+ <p align="center">
18
+ <a href="README.md">English</a> |
19
+ <a href="README.zh.md">简体中文</a> |
20
+ <a href="README.zht.md">繁體中文</a> |
21
+ <a href="README.ko.md">한국어</a> |
22
+ <a href="README.de.md">Deutsch</a> |
23
+ <a href="README.es.md">Español</a> |
24
+ <a href="README.fr.md">Français</a> |
25
+ <a href="README.it.md">Italiano</a> |
26
+ <a href="README.da.md">Dansk</a> |
27
+ <a href="README.ja.md">日本語</a> |
28
+ <a href="README.pl.md">Polski</a> |
29
+ <a href="README.ru.md">Русский</a> |
30
+ <a href="README.ar.md">العربية</a> |
31
+ <a href="README.no.md">Norsk</a> |
32
+ <a href="README.br.md">Português (Brasil)</a> |
33
+ <a href="README.th.md">ไทย</a>
34
+ </p>
35
+
36
+ [![EmberHarmony Terminal UI](packages/web/src/assets/lander/screenshot.png)](https://solace.ofharmony.ai)
37
+
38
+ ---
39
+
40
+ ### Installation
41
+
42
+ ```bash
43
+ # YOLO
44
+ curl -fsSL https://raw.githubusercontent.com/SolaceHarmony/emberharmony/dev/install | bash
45
+
46
+ # Package managers
47
+ npm i -g @thesolaceproject/emberharmony@latest # or bun/pnpm/yarn
48
+ scoop install emberharmony # Windows
49
+ choco install emberharmony # Windows
50
+ paru -S emberharmony-bin # Arch Linux
51
+ mise use -g emberharmony # Any OS
52
+ nix run nixpkgs#emberharmony # or github:SolaceHarmony/emberharmony for latest dev branch
53
+ ```
54
+
55
+ > [!TIP]
56
+ > Remove versions older than 0.1.x before installing.
57
+
58
+ #### Local Build + Install (No CI)
59
+
60
+ ```bash
61
+ bun install
62
+ npm run pack:local
63
+ # prints a .tgz path you can install, e.g.
64
+ # npm i -g /absolute/path/to/emberharmony-1.0.0.tgz
65
+ ```
66
+
67
+ ### Desktop App (BETA)
68
+
69
+ EmberHarmony is also available as a desktop application. Download directly from the [releases page](https://github.com/SolaceHarmony/emberharmony/releases) or [solace.ofharmony.ai/download](https://github.com/SolaceHarmony/emberharmony/releases).
70
+
71
+ | Platform | Download |
72
+ | --------------------- | ----------------------------------------- |
73
+ | macOS (Apple Silicon) | `emberharmony-desktop-darwin-aarch64.dmg` |
74
+ | macOS (Intel) | `emberharmony-desktop-darwin-x64.dmg` |
75
+ | Windows | `emberharmony-desktop-windows-x64.exe` |
76
+ | Linux | `.deb`, `.rpm`, or AppImage |
77
+
78
+ ```bash
79
+ # Windows (Scoop)
80
+ scoop bucket add extras; scoop install extras@thesolaceproject/emberharmony-desktop
81
+ ```
82
+
83
+ #### Installation Directory
84
+
85
+ The install script respects the following priority order for the installation path:
86
+
87
+ 1. `$EMBERHARMONY_INSTALL_DIR` - Custom installation directory (preferred)
88
+ 2. `$EMBERHARMONY_INSTALL_DIR` - Backward compat
89
+ 3. `$XDG_BIN_DIR` - XDG Base Directory Specification compliant path
90
+ 4. `$HOME/bin` - Standard user binary directory (if exists or can be created)
91
+ 5. `$HOME/.emberharmony/bin` - Default fallback
92
+
93
+ ```bash
94
+ # Examples
95
+ EMBERHARMONY_INSTALL_DIR=/usr/local/bin curl -fsSL https://raw.githubusercontent.com/SolaceHarmony/emberharmony/dev/install | bash
96
+ XDG_BIN_DIR=$HOME/.local/bin curl -fsSL https://raw.githubusercontent.com/SolaceHarmony/emberharmony/dev/install | bash
97
+ ```
98
+
99
+ ### Agents
100
+
101
+ EmberHarmony includes two built-in agents you can switch between with the `Tab` key.
102
+
103
+ - **build** - Default, full access agent for development work
104
+ - **plan** - Read-only agent for analysis and code exploration
105
+ - Denies file edits by default
106
+ - Asks permission before running bash commands
107
+ - Ideal for exploring unfamiliar codebases or planning changes
108
+
109
+ Also, included is a **general** subagent for complex searches and multistep tasks.
110
+ This is used internally and can be invoked using `@general` in messages.
111
+
112
+ Learn more about [agents](https://solace.ofharmony.ai/docs/agents).
113
+
114
+ ### Documentation
115
+
116
+ For more info on how to configure EmberHarmony [**head over to our docs**](https://solace.ofharmony.ai/docs).
117
+
118
+ ### Contributing
119
+
120
+ If you're interested in contributing to EmberHarmony, please read our [contributing docs](./CONTRIBUTING.md) before submitting a pull request.
121
+
122
+ ### Building on EmberHarmony
123
+
124
+ If you are working on a project that's related to EmberHarmony and is using "emberharmony" or "emberharmony" as a part of its name, please add a note in your README to clarify that it is not built by The Solace Project and is not affiliated with us in any way.
125
+
126
+ ### FAQ
127
+
128
+ #### How is this different from Claude Code?
129
+
130
+ It's very similar to Claude Code in terms of capability. Here are the key differences:
131
+
132
+ - 100% open source
133
+ - Not coupled to any provider. EmberHarmony can be used with Claude, OpenAI, Google, or even local models. As models evolve the gaps between them will close and pricing will drop, so being provider-agnostic is important.
134
+ - Out of the box LSP support
135
+ - A focus on TUI — we are going to push the limits of what's possible in the terminal.
136
+ - A client/server architecture. This for example can allow EmberHarmony to run on your computer, while you can drive it remotely from a mobile app. The TUI frontend is just one of the possible clients.
137
+
138
+ ### Acknowledgments
139
+
140
+ EmberHarmony is a fork of [EmberHarmony](https://github.com/sst/emberharmony) by the [SST](https://sst.dev) team. We are deeply grateful for their foundational work in building an exceptional open source AI coding agent. This project would not exist without their vision and engineering.
141
+
142
+ ### Maintainer
143
+
144
+ **Sydney Renee** — sydney@solace.ofharmony.ai
145
+ [The Solace Project](https://solace.ofharmony.ai)
146
+
147
+ ---
148
+
149
+ **Join our community** [Discord](https://discord.gg/EdF8f7JR) | [GitHub Discussions](https://github.com/SolaceHarmony/emberharmony/discussions)
Binary file
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@thesolaceproject/emberharmony-linux-arm64-musl",
3
+ "version": "1.2.1",
4
+ "os": [
5
+ "linux"
6
+ ],
7
+ "cpu": [
8
+ "arm64"
9
+ ]
10
+ }