Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
228e909
fix(ui): add Merge Gateway logo (#42015)
MatthewFeroz Sep 14, 2026
7f20943
test(app): retire legacy layout e2e coverage (#49015)
opencode-agent[bot] Sep 14, 2026
a97622c
fix(tui): surface remote auth startup errors (#49016)
opencode-agent[bot] Sep 14, 2026
a74c472
sync release versions for v1.18.31
Sep 14, 2026
4ae1765
chore: add Alan to team members (#49054)
opencode-agent[bot] Sep 14, 2026
5cf4e13
fix(console): route new Console keys to inference (#49036)
vaprdev Sep 14, 2026
403627b
deepseek v4.1 flash
fwang Sep 14, 2026
e03db9b
Merge branch 'dev' of github.com:anomalyco/opencode into dev
fwang Sep 14, 2026
501ff62
fix(console): exclude migrated workspaces from selection (#49336)
vimtor Sep 16, 2026
ee91f19
feat(go): add Union Alpha (#49178)
MrMushrooooom Sep 16, 2026
350c726
chore: generate
opencode-agent[bot] Sep 16, 2026
1364769
fix(go): label Union Alpha as free (#49353)
MrMushrooooom Sep 16, 2026
2e018f7
fix(stats): guard oversized model names (#49363)
opencode-agent[bot] Sep 16, 2026
a6183af
fix(stats): hide Union Alpha provider (#49356)
opencode-agent[bot] Sep 16, 2026
88c6c7a
fix(stats): preserve container dependency lock (#49385)
adamdotdevin Sep 16, 2026
5a83358
fix(console): show migrated workspaces in selector (#49520)
opencode-agent[bot] Sep 17, 2026
b02acc1
chore(stats): update GitHub star fallback (#49654)
opencode-agent[bot] Sep 18, 2026
a7f2373
chore(go): retire Union Alpha (#49718)
MrMushrooooom Sep 18, 2026
e80db11
chore: generate
opencode-agent[bot] Sep 18, 2026
3dd1b30
docs: restore GPT-5.6 Sol pricing (#49724)
MrMushrooooom Sep 18, 2026
1573a7b
support jev
fwang Sep 18, 2026
5f9d918
chore: generate
opencode-agent[bot] Sep 18, 2026
285cff5
feat(console): switch install links to v2 (#49874)
thdxr Sep 19, 2026
ae2da69
docs: add Qwen3.8 Flash to Zen (#49888)
MrMushrooooom Sep 19, 2026
a6cad77
docs: add DeepSeek V4.1 Flash to Zen (#49897)
dc85 Sep 19, 2026
4e1c496
chore: generate
opencode-agent[bot] Sep 19, 2026
f1aacab
feat(web): add v2 announcement banner to legacy docs
thdxr Sep 19, 2026
6da6d47
fix(web): render v2 banner full width below header
thdxr Sep 19, 2026
7c22dbb
fix(web): use neutral colors for v2 banner
thdxr Sep 19, 2026
3c7f191
fix(web): add v2 banner border and restore header hairline
thdxr Sep 19, 2026
34b4c3c
fix(console): update systemone endpoints
fwang Sep 19, 2026
61eae88
docs(web): add Jev models to Zen
fwang Sep 19, 2026
9a53565
chore: generate
opencode-agent[bot] Sep 19, 2026
ae93d4a
fix(console): use v2 desktop downloads (#49931)
opencode-agent[bot] Sep 19, 2026
fee476b
refactor(console): redirect desktop downloads (#49984)
opencode-agent[bot] Sep 19, 2026
83abc64
chore(ci): refresh v2 models.dev snapshot on a schedule (#50030)
rekram1-node Sep 19, 2026
11be5bc
docs(web): document Jev usage
fwang Sep 20, 2026
ebb7b76
docs(web): align Jev section heading
fwang Sep 20, 2026
ac88182
ci: sync v2 catalog once a day (#50194)
rekram1-node Sep 20, 2026
8b2de73
chore: generate
opencode-agent[bot] Sep 20, 2026
45ad8dc
fix(stats): paginate sync aggregates (#50198)
adamdotdevin Sep 20, 2026
d870e22
fix(stats): retry transient query failures (#50205)
adamdotdevin Sep 20, 2026
17b7678
docs(web): extend DeepSeek promotion (#50255)
MrMushrooooom Sep 21, 2026
8bf288e
fix(opencode): bump togetherai so streams report usage (#50264)
rekram1-node Sep 21, 2026
0e3dfd1
chore: update nix node_modules hashes
opencode-agent[bot] Sep 21, 2026
c101347
fix(opencode): hoist Bedrock tool images except Claude, Nova, and Lla…
rekram1-node Sep 21, 2026
cf494c2
fix(console): forward client IP to inference
fwang Sep 21, 2026
70a2469
fix(console): authenticate inference proxy
fwang Sep 21, 2026
e059ac5
feat: add Grok 4.7 to Zen and Go (#50288)
dc85 Sep 21, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/TEAM_MEMBERS
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ Slickstef11
usrnk1
vimtor
StarpTech
vaprdev
62 changes: 62 additions & 0 deletions .github/workflows/models-snapshot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: models-snapshot

permissions:
contents: write

on:
workflow_dispatch:
schedule:
- cron: "0 12 * * *"

concurrency:
group: ${{ github.workflow }}
cancel-in-progress: false

jobs:
refresh:
if: github.repository == 'anomalyco/opencode'
runs-on: blacksmith-4vcpu-ubuntu-2404

steps:
- name: Checkout repository
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1
with:
persist-credentials: false
ref: v2

# The refresh script only needs `fetch`; skip the monorepo install.
- name: Setup Bun
uses: oven-sh/setup-bun@0c5077e51419868618aeaa5fe8019c62421857d6 # v2.2.0
with:
bun-version-file: package.json

- name: Setup git committer
uses: ./.github/actions/setup-git-committer
with:
opencode-app-id: ${{ vars.OPENCODE_APP_ID }}
opencode-app-secret: ${{ secrets.OPENCODE_APP_SECRET }}

- name: Refresh snapshot
run: bun packages/core/script/update-models-snapshot.ts

- name: Commit changes
run: |
set -euo pipefail

FILE="packages/core/src/models-dev/snapshot.txt"

if [ -z "$(git status --short -- "$FILE")" ]; then
echo "No changes to commit"
echo "### models.dev snapshot" >> "$GITHUB_STEP_SUMMARY"
echo "Status: no changes" >> "$GITHUB_STEP_SUMMARY"
exit 0
fi

git add "$FILE"
git commit -m "chore(core): refresh bundled models.dev snapshot"

git pull --rebase --autostash origin v2
git push origin HEAD:v2 --no-verify

echo "### models.dev snapshot" >> "$GITHUB_STEP_SUMMARY"
echo "Status: committed $(git rev-parse --short HEAD)" >> "$GITHUB_STEP_SUMMARY"
Loading
Loading