opencode-harmony-darwin-x64-baseline 1.1.49 → 1.1.51

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) 2025 opencode
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,130 @@
1
+ <p align="center">
2
+ <a href="https://opencode.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="OpenCode 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://opencode.ai/discord"><img alt="Discord" src="https://img.shields.io/discord/1391832426048651334?style=flat-square&label=discord" /></a>
13
+ <a href="https://www.npmjs.com/package/opencode-harmony"><img alt="npm" src="https://img.shields.io/npm/v/opencode-harmony?style=flat-square" /></a>
14
+ <a href="https://github.com/SolaceHarmony/opencode/actions/workflows/publish.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/SolaceHarmony/opencode/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
+ [![OpenCode Terminal UI](packages/web/src/assets/lander/screenshot.png)](https://opencode.ai)
37
+
38
+ ---
39
+
40
+ ### Installation
41
+
42
+ ```bash
43
+ # YOLO
44
+ curl -fsSL https://raw.githubusercontent.com/SolaceHarmony/opencode/dev/install | bash
45
+
46
+ # Package managers
47
+ npm i -g opencode-harmony@latest # or bun/pnpm/yarn
48
+ scoop install opencode-harmony # Windows
49
+ choco install opencode-harmony # Windows
50
+ paru -S opencode-harmony-bin # Arch Linux
51
+ mise use -g opencode-harmony # Any OS
52
+ nix run nixpkgs#opencode-harmony # or github:SolaceHarmony/opencode for latest dev branch
53
+ ```
54
+
55
+ > [!TIP]
56
+ > Remove versions older than 0.1.x before installing.
57
+
58
+ ### Desktop App (BETA)
59
+
60
+ OpenCode is also available as a desktop application. Download directly from the [releases page](https://github.com/SolaceHarmony/opencode/releases) or [opencode.ai/download](https://opencode.ai/download).
61
+
62
+ | Platform | Download |
63
+ | --------------------- | ------------------------------------- |
64
+ | macOS (Apple Silicon) | `opencode-desktop-darwin-aarch64.dmg` |
65
+ | macOS (Intel) | `opencode-desktop-darwin-x64.dmg` |
66
+ | Windows | `opencode-desktop-windows-x64.exe` |
67
+ | Linux | `.deb`, `.rpm`, or AppImage |
68
+
69
+ ```bash
70
+ # Windows (Scoop)
71
+ scoop bucket add extras; scoop install extras/opencode-desktop
72
+ ```
73
+
74
+ #### Installation Directory
75
+
76
+ The install script respects the following priority order for the installation path:
77
+
78
+ 1. `$OPENCODE_INSTALL_DIR` - Custom installation directory
79
+ 2. `$XDG_BIN_DIR` - XDG Base Directory Specification compliant path
80
+ 3. `$HOME/bin` - Standard user binary directory (if exists or can be created)
81
+ 4. `$HOME/.opencode/bin` - Default fallback
82
+
83
+ ```bash
84
+ # Examples
85
+ OPENCODE_INSTALL_DIR=/usr/local/bin curl -fsSL https://raw.githubusercontent.com/SolaceHarmony/opencode/dev/install | bash
86
+ XDG_BIN_DIR=$HOME/.local/bin curl -fsSL https://raw.githubusercontent.com/SolaceHarmony/opencode/dev/install | bash
87
+ ```
88
+
89
+ ### Agents
90
+
91
+ OpenCode includes two built-in agents you can switch between with the `Tab` key.
92
+
93
+ - **build** - Default, full access agent for development work
94
+ - **plan** - Read-only agent for analysis and code exploration
95
+ - Denies file edits by default
96
+ - Asks permission before running bash commands
97
+ - Ideal for exploring unfamiliar codebases or planning changes
98
+
99
+ Also, included is a **general** subagent for complex searches and multistep tasks.
100
+ This is used internally and can be invoked using `@general` in messages.
101
+
102
+ Learn more about [agents](https://opencode.ai/docs/agents).
103
+
104
+ ### Documentation
105
+
106
+ For more info on how to configure OpenCode [**head over to our docs**](https://opencode.ai/docs).
107
+
108
+ ### Contributing
109
+
110
+ If you're interested in contributing to OpenCode, please read our [contributing docs](./CONTRIBUTING.md) before submitting a pull request.
111
+
112
+ ### Building on OpenCode
113
+
114
+ If you are working on a project that's related to OpenCode and is using "opencode" as a part of its name; for example, "opencode-dashboard" or "opencode-mobile", please add a note to your README to clarify that it is not built by the OpenCode team and is not affiliated with us in any way.
115
+
116
+ ### FAQ
117
+
118
+ #### How is this different from Claude Code?
119
+
120
+ It's very similar to Claude Code in terms of capability. Here are the key differences:
121
+
122
+ - 100% open source
123
+ - Not coupled to any provider. Although we recommend the models we provide through [OpenCode Zen](https://opencode.ai/zen); OpenCode 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.
124
+ - Out of the box LSP support
125
+ - A focus on TUI. OpenCode is built by neovim users and the creators of [terminal.shop](https://terminal.shop); we are going to push the limits of what's possible in the terminal.
126
+ - A client/server architecture. This for example can allow OpenCode to run on your computer, while you can drive it remotely from a mobile app. Meaning that the TUI frontend is just one of the possible clients.
127
+
128
+ ---
129
+
130
+ **Join our community** [Discord](https://discord.gg/opencode) | [X.com](https://x.com/opencode)
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-harmony-darwin-x64-baseline",
3
- "version": "1.1.49",
3
+ "version": "1.1.51",
4
4
  "os": [
5
5
  "darwin"
6
6
  ],