Skip to content

Commit 6516f40

Browse files
committed
docs(installer): update buyer branch references to generalized name
1 parent 18f2639 commit 6516f40

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## 2.1.4 - 2026-03-13
44

5-
- Hardened cross-platform installer behavior for WSL/macOS/Windows on `feat/buyer-v2.1.4-setup-smoke`, including safer command resolution and reduced false-warning noise in non-interactive shells.
5+
- Hardened cross-platform installer behavior for WSL/macOS/Windows on `feat/buyer-setup-smoke`, including safer command resolution and reduced false-warning noise in non-interactive shells.
66
- Added stronger runtime recovery for `opencode auth login` by validating `opencode-multi-auth` plugin artifacts and auto-rebuilding (`bun run build`/`npm run build`) when OAuth entry files are missing.
77
- Improved dependency bootstrap reliability with retry-based auto-install flows, plus clearer staged status/retry visibility for long-running install/build steps (with richer live progress on the PowerShell lane).
88
- Improved PowerShell lane stability by keeping parser-safe behavior for mixed environments (Windows PowerShell 5.1 compatibility checks and PowerShell 7 execution guidance).

README.md

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

55
## Quick Install
66

7-
### Feat branch (`feat/buyer-v2.1.4-setup-smoke`)
7+
### Feat branch (`feat/buyer-setup-smoke`)
88

99
Use this branch for cross-platform validation before main release.
1010

@@ -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-v2.1.4-setup-smoke/install.sh | bash
22+
curl -fsSL https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/feat/buyer-setup-smoke/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-v2.1.4-setup-smoke/install.sh | bash -s -- --version 2.1.4
28+
curl -fsSL https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/feat/buyer-setup-smoke/install.sh | bash -s -- --version 2.1.4
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-v2.1.4-setup-smoke/install.ps1 | iex"
36+
pwsh -NoProfile -ExecutionPolicy Bypass -Command "irm https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/feat/buyer-setup-smoke/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-v2.1.4-setup-smoke/install.ps1 | iex'
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'
4343
```
4444

4545
Windows note: run via `pwsh` (PowerShell 7), not `powershell.exe` (Windows PowerShell 5.1), to avoid parser errors like `Unexpected token '??'`.
@@ -67,13 +67,13 @@ If you want deterministic behavior while this branch is still collecting edge-ca
6767
### macOS / Linux / WSL
6868

6969
```bash
70-
curl -fsSL https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/feat/buyer-v2.1.4-setup-smoke/install.sh | bash -s -- --version 2.1.4 --branch feat/buyer-v2.1.4-setup-smoke
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
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-v2.1.4-setup-smoke"; irm https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/feat/buyer-v2.1.4-setup-smoke/install.ps1 | iex'
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'
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-v2.1.4-setup-smoke/install.sh | bash -s -- --version 2.1.4
188+
curl -fsSL https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/feat/buyer-setup-smoke/install.sh | bash -s -- --version 2.1.4
189189
```
190190

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

uninstall.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ main() {
309309
310310
Next step (clean-room reinstall test):
311311
env -i HOME="$(mktemp -d /tmp/ocs-clean-XXXXXX)" USER="$(id -un)" PATH="/usr/bin:/bin" \
312-
bash -lc 'curl -fsSL https://raw.githubusercontent.com/andyvandaric/opencode-suites-installer/feat/buyer-v2.1.4-setup-smoke/install.sh | bash -s -- --version 2.1.4 --branch feat/buyer-v2.1.4-setup-smoke'
312+
bash -lc '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'
313313
EOF
314314
}
315315

0 commit comments

Comments
 (0)