Skip to content

Commit 012ce6b

Browse files
authored
Merge branch 'dev' into dev
2 parents c6dd744 + 401b498 commit 012ce6b

File tree

188 files changed

+9398
-4029
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

188 files changed

+9398
-4029
lines changed

.github/workflows/opencode.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- uses: ./.github/actions/setup-bun
2727

2828
- name: Run opencode
29-
uses: sst/opencode/github@latest
29+
uses: anomalyco/opencode/github@latest
3030
env:
3131
OPENCODE_API_KEY: ${{ secrets.OPENCODE_API_KEY }}
3232
OPENCODE_PERMISSION: '{"bash": "deny"}'

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ permissions:
3131
jobs:
3232
publish:
3333
runs-on: blacksmith-4vcpu-ubuntu-2404
34-
if: github.repository == 'sst/opencode'
34+
if: github.repository == 'anomalyco/opencode'
3535
steps:
3636
- uses: actions/checkout@v3
3737
with:

.github/workflows/test.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,9 @@ name: test
22

33
on:
44
push:
5-
branches-ignore:
6-
- production
5+
branches:
6+
- dev
77
pull_request:
8-
branches-ignore:
9-
- production
108
workflow_dispatch:
119
jobs:
1210
test:

.opencode/agent/git-committer.md

Lines changed: 0 additions & 10 deletions
This file was deleted.

.opencode/opencode.jsonc

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,17 @@
1010
"options": {},
1111
},
1212
},
13-
"mcp": {},
13+
"permission": {
14+
"bash": {
15+
"ls foo": "ask",
16+
},
17+
},
18+
"mcp": {
19+
"context7": {
20+
"type": "remote",
21+
"url": "https://mcp.context7.com/mcp",
22+
},
23+
},
1424
"tools": {
1525
"github-triage": false,
1626
},

AGENTS.md

Lines changed: 2 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,4 @@
1-
## Debugging
2-
31
- To test opencode in the `packages/opencode` directory you can run `bun dev`
4-
5-
## SDK
6-
7-
To regenerate the javascript SDK, run ./packages/sdk/js/script/build.ts
8-
9-
## Tool Calling
10-
2+
- To regenerate the javascript SDK, run ./packages/sdk/js/script/build.ts
113
- ALWAYS USE PARALLEL TOOLS WHEN APPLICABLE.
4+
- the default branch in this repo is `dev`

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ However, any UI or core product feature must go through a design review with the
1414

1515
If you are unsure if a PR would be accepted, feel free to ask a maintainer or look for issues with any of the following labels:
1616

17-
- [`help wanted`](https://github.com/sst/opencode/issues?q=is%3Aissue%20state%3Aopen%20label%3Ahelp-wanted)
18-
- [`good first issue`](https://github.com/sst/opencode/issues?q=is%3Aissue%20state%3Aopen%20label%3A%22good%20first%20issue%22)
19-
- [`bug`](https://github.com/sst/opencode/issues?q=is%3Aissue%20state%3Aopen%20label%3Abug)
20-
- [`perf`](https://github.com/sst/opencode/issues?q=is%3Aopen%20is%3Aissue%20label%3A%22perf%22)
17+
- [`help wanted`](https://github.com/anomalyco/opencode/issues?q=is%3Aissue%20state%3Aopen%20label%3Ahelp-wanted)
18+
- [`good first issue`](https://github.com/anomalyco/opencode/issues?q=is%3Aissue%20state%3Aopen%20label%3A%22good%20first%20issue%22)
19+
- [`bug`](https://github.com/anomalyco/opencode/issues?q=is%3Aissue%20state%3Aopen%20label%3Abug)
20+
- [`perf`](https://github.com/anomalyco/opencode/issues?q=is%3Aopen%20is%3Aissue%20label%3A%22perf%22)
2121

2222
> [!NOTE]
2323
> PRs that ignore these guardrails will likely be closed.

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<p align="center">
1212
<a href="https://opencode.ai/discord"><img alt="Discord" src="https://img.shields.io/discord/1391832426048651334?style=flat-square&label=discord" /></a>
1313
<a href="https://www.npmjs.com/package/opencode-ai"><img alt="npm" src="https://img.shields.io/npm/v/opencode-ai?style=flat-square" /></a>
14-
<a href="https://github.com/sst/opencode/actions/workflows/publish.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/sst/opencode/publish.yml?style=flat-square&branch=dev" /></a>
14+
<a href="https://github.com/anomalyco/opencode/actions/workflows/publish.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/anomalyco/opencode/publish.yml?style=flat-square&branch=dev" /></a>
1515
</p>
1616

1717
[![OpenCode Terminal UI](packages/web/src/assets/lander/screenshot.png)](https://opencode.ai)
@@ -31,15 +31,15 @@ choco install opencode # Windows
3131
brew install opencode # macOS and Linux
3232
paru -S opencode-bin # Arch Linux
3333
mise use -g opencode # Any OS
34-
nix run nixpkgs#opencode # or github:sst/opencode for latest dev branch
34+
nix run nixpkgs#opencode # or github:anomalyco/opencode for latest dev branch
3535
```
3636

3737
> [!TIP]
3838
> Remove versions older than 0.1.x before installing.
3939
4040
### Desktop App (BETA)
4141

42-
OpenCode is also available as a desktop application. Download directly from the [releases page](https://github.com/sst/opencode/releases) or [opencode.ai/download](https://opencode.ai/download).
42+
OpenCode is also available as a desktop application. Download directly from the [releases page](https://github.com/anomalyco/opencode/releases) or [opencode.ai/download](https://opencode.ai/download).
4343

4444
| Platform | Download |
4545
| --------------------- | ------------------------------------- |

README.zh-TW.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<p align="center">
1212
<a href="https://opencode.ai/discord"><img alt="Discord" src="https://img.shields.io/discord/1391832426048651334?style=flat-square&label=discord" /></a>
1313
<a href="https://www.npmjs.com/package/opencode-ai"><img alt="npm" src="https://img.shields.io/npm/v/opencode-ai?style=flat-square" /></a>
14-
<a href="https://github.com/sst/opencode/actions/workflows/publish.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/sst/opencode/publish.yml?style=flat-square&branch=dev" /></a>
14+
<a href="https://github.com/anomalyco/opencode/actions/workflows/publish.yml"><img alt="Build status" src="https://img.shields.io/github/actions/workflow/status/anomalyco/opencode/publish.yml?style=flat-square&branch=dev" /></a>
1515
</p>
1616

1717
[![OpenCode Terminal UI](packages/web/src/assets/lander/screenshot.png)](https://opencode.ai)
@@ -30,16 +30,16 @@ scoop bucket add extras; scoop install extras/opencode # Windows
3030
choco install opencode # Windows
3131
brew install opencode # macOS 與 Linux
3232
paru -S opencode-bin # Arch Linux
33-
mise use -g github:sst/opencode # 任何作業系統
34-
nix run nixpkgs#opencode # 或使用 github:sst/opencode 以取得最新開發分支
33+
mise use -g github:anomalyco/opencode # 任何作業系統
34+
nix run nixpkgs#opencode # 或使用 github:anomalyco/opencode 以取得最新開發分支
3535
```
3636

3737
> [!TIP]
3838
> 安裝前請先移除 0.1.x 以前的舊版本。
3939
4040
### 桌面應用程式 (BETA)
4141

42-
OpenCode 也提供桌面版應用程式。您可以直接從 [發佈頁面 (releases page)](https://github.com/sst/opencode/releases)[opencode.ai/download](https://opencode.ai/download) 下載。
42+
OpenCode 也提供桌面版應用程式。您可以直接從 [發佈頁面 (releases page)](https://github.com/anomalyco/opencode/releases)[opencode.ai/download](https://opencode.ai/download) 下載。
4343

4444
| 平台 | 下載連結 |
4545
| --------------------- | ------------------------------------- |

STATS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,3 +187,5 @@
187187
| 2025-12-29 | 1,415,560 (+25,172) | 1,257,101 (+11,411) | 2,672,661 (+36,583) |
188188
| 2025-12-30 | 1,445,450 (+29,890) | 1,272,689 (+15,588) | 2,718,139 (+45,478) |
189189
| 2025-12-31 | 1,479,598 (+34,148) | 1,293,235 (+20,546) | 2,772,833 (+54,694) |
190+
| 2026-01-01 | 1,508,883 (+29,285) | 1,309,874 (+16,639) | 2,818,757 (+45,924) |
191+
| 2026-01-02 | 1,563,474 (+54,591) | 1,320,959 (+11,085) | 2,884,433 (+65,676) |

0 commit comments

Comments
 (0)