Compare commits

..

1 Commits

Author SHA1 Message Date
Kit Langton 738da334c7 chore(catalog): remove wrangler state 2026-08-13 12:02:21 +00:00
5 changed files with 11 additions and 19 deletions
+1
View File
@@ -2,3 +2,4 @@
node_modules/
.DS_Store
dist/
.wrangler/
+10 -19
View File
@@ -15,29 +15,20 @@ description: "Get started with OpenCode."
## Install
<CodeGroup>
### Install script
```bash npm
npm install -g @opencode-ai/cli@next
```
```bash bun
bun install -g --trust @opencode-ai/cli@next
```
```bash pnpm
pnpm add -g --allow-build=@opencode-ai/cli @opencode-ai/cli@next
```
```bash yarn
yarn global add @opencode-ai/cli@next
```
```bash curl
```bash
curl -fsSL https://raw.githubusercontent.com/anomalyco/opencode/v2/install | bash
```
</CodeGroup>
You can also install it with the following package managers.
<Tabs>
<Tab title="npm">```bash npm install -g @opencode-ai/cli@next ```</Tab>
<Tab title="bun">```bash bun install -g --trust @opencode-ai/cli@next ```</Tab>
<Tab title="pnpm">```bash pnpm add -g --allow-build=@opencode-ai/cli @opencode-ai/cli@next ```</Tab>
<Tab title="Yarn">```bash yarn global add @opencode-ai/cli@next ```</Tab>
</Tabs>
The package uses a trusted postinstall script to select the native `opencode2` binary for your platform. The Bun and pnpm
commands above explicitly allow that script to run.