Skip to content

Commit 60172b5

Browse files
committed
chore(installer): align beta defaults with buyer beta branch
1 parent 6516f40 commit 60172b5

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ OCS (OpenCode Config Suites) quick installer for Multi Agents workflow, AI codin
44

55
## Quick Install
66

7-
### Feat branch (`feat/buyer-setup-smoke`)
7+
### Beta branch (`beta`)
88

9-
Use this branch for cross-platform validation before main release.
9+
Use this branch for beta rollout and validation before main release.
1010

1111
This branch currently includes installer hardening for WSL/macOS/Windows edge cases:
1212

@@ -19,27 +19,27 @@ This branch currently includes installer hardening for WSL/macOS/Windows edge ca
1919
#### macOS / Linux / WSL
2020

2121
```bash
22-
curl -fsSL https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/feat/buyer-setup-smoke/install.sh | bash
22+
curl -fsSL https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/beta/install.sh | bash
2323
```
2424

2525
Install specific version:
2626

2727
```bash
28-
curl -fsSL https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/feat/buyer-setup-smoke/install.sh | bash -s -- --version 2.1.4
28+
curl -fsSL https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/beta/install.sh | bash -s -- --version 2.1.6
2929
```
3030

3131
WSL note: run the command inside WSL terminal (`bash`/`zsh`), not from Windows PowerShell.
3232

3333
#### Windows (PowerShell 7)
3434

3535
```powershell
36-
pwsh -NoProfile -ExecutionPolicy Bypass -Command "irm https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/feat/buyer-setup-smoke/install.ps1 | iex"
36+
pwsh -NoProfile -ExecutionPolicy Bypass -Command "irm https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/beta/install.ps1 | iex"
3737
```
3838

3939
Install specific version:
4040

4141
```powershell
42-
pwsh -NoProfile -ExecutionPolicy Bypass -Command '$env:OCS_VERSION = "2.1.4"; irm https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/feat/buyer-setup-smoke/install.ps1 | iex'
42+
pwsh -NoProfile -ExecutionPolicy Bypass -Command '$env:OCS_VERSION = "2.1.6"; irm https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/beta/install.ps1 | iex'
4343
```
4444

4545
Windows note: run via `pwsh` (PowerShell 7), not `powershell.exe` (Windows PowerShell 5.1), to avoid parser errors like `Unexpected token '??'`.
@@ -60,20 +60,20 @@ pwsh -NoProfile -ExecutionPolicy Bypass -Command "irm https://raw.githubusercont
6060

6161
Run installer from your normal user shell. Do not wrap installer command in `sudo`, or profile/config writes may target the wrong home directory.
6262

63-
## Quick Start (Latest Feat Stabilization)
63+
## Quick Start (Latest Beta Stabilization)
6464

65-
If you want deterministic behavior while this branch is still collecting edge-case reports, use pinned version + branch:
65+
If you want deterministic behavior while this beta branch is still collecting edge-case reports, use pinned version + branch:
6666

6767
### macOS / Linux / WSL
6868

6969
```bash
70-
curl -fsSL https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/feat/buyer-setup-smoke/install.sh | bash -s -- --version 2.1.4 --branch feat/buyer-setup-smoke
70+
curl -fsSL https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/beta/install.sh | bash -s -- --version 2.1.6 --branch beta
7171
```
7272

7373
### Windows (PowerShell 7)
7474

7575
```powershell
76-
pwsh -NoProfile -ExecutionPolicy Bypass -Command '$env:OCS_VERSION = "2.1.4"; $env:OCS_RELEASE_BRANCH = "feat/buyer-setup-smoke"; irm https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/feat/buyer-setup-smoke/install.ps1 | iex'
76+
pwsh -NoProfile -ExecutionPolicy Bypass -Command '$env:OCS_VERSION = "2.1.6"; $env:OCS_RELEASE_BRANCH = "beta"; irm https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/beta/install.ps1 | iex'
7777
```
7878

7979
Post-install smoke checks:
@@ -185,7 +185,7 @@ ls -la ~/.config/opencode/plugins/opencode-multi-auth/dist/src/plugin.js ~/.conf
185185
Kalau folder plugin belum ada sama sekali, rerun installer:
186186

187187
```bash
188-
curl -fsSL https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/feat/buyer-setup-smoke/install.sh | bash -s -- --version 2.1.4
188+
curl -fsSL https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/beta/install.sh | bash -s -- --version 2.1.6
189189
```
190190

191191
3) Paksa login via provider Antigravity dengan PATH prioritas:

install.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ $ErrorActionPreference = "Stop"
1414
# --- Config ---
1515
$GITHUB_SOURCE_REPO = "andyvandaric/andyvand-opencode-config"
1616
$REQUESTED_VERSION = if ($Version) { $Version.TrimStart('v') } elseif ($env:OCS_VERSION) { $env:OCS_VERSION.TrimStart('v') } else { "" }
17-
$GITHUB_SOURCE_BRANCH = if ($SourceBranch) { $SourceBranch } elseif ($env:OCS_RELEASE_BRANCH) { $env:OCS_RELEASE_BRANCH } else { "feat/buyer-setup-smoke" }
18-
$DEFAULT_RELEASE_BRANCH = "feat/buyer-setup-smoke"
19-
$INSTALLER_DEFAULT_PROFILE = "codex-5.3-hybrid"
17+
$GITHUB_SOURCE_BRANCH = if ($SourceBranch) { $SourceBranch } elseif ($env:OCS_RELEASE_BRANCH) { $env:OCS_RELEASE_BRANCH } else { "beta" }
18+
$DEFAULT_RELEASE_BRANCH = "beta"
19+
$INSTALLER_DEFAULT_PROFILE = "codex-5.3-token-saver"
2020
$INSTALLER_DEFAULT_MODE = "performance"
2121
$ACCESS_LANDING_PAGE = "https://wa.me/6281289731212?text=Mau%20order%20OCS%20nya%2C%20mohon%20infonya%20ya"
2222
$PLUGIN_DIR = "$env:USERPROFILE\.config\opencode\plugins\opencode-multi-auth"

install.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@ fi
4444

4545
# ─── Config ──────────────────────────────────────────────────────────────────
4646
GITHUB_SOURCE_REPO="andyvandaric/andyvand-opencode-config"
47-
GITHUB_SOURCE_BRANCH="${OCS_RELEASE_BRANCH:-feat/buyer-setup-smoke}"
48-
DEFAULT_RELEASE_BRANCH="feat/buyer-setup-smoke"
49-
INSTALLER_DEFAULT_PROFILE="codex-5.3-hybrid"
47+
GITHUB_SOURCE_BRANCH="${OCS_RELEASE_BRANCH:-beta}"
48+
DEFAULT_RELEASE_BRANCH="beta"
49+
INSTALLER_DEFAULT_PROFILE="codex-5.3-token-saver"
5050
INSTALLER_DEFAULT_MODE="performance"
5151
WHATSAPP_ORDER_URL="https://wa.me/6281289731212?text=Mau%20order%20OCS%20nya%2C%20mohon%20infonya%20ya"
5252
PLUGIN_DIR="${HOME}/.config/opencode/plugins/opencode-multi-auth"

0 commit comments

Comments
 (0)