summaryrefslogtreecommitdiffhomepage
path: root/packages/web/src/content/docs/cli.mdx
diff options
context:
space:
mode:
authorJay V <[email protected]>2025-10-03 13:46:56 -0400
committerJay V <[email protected]>2025-10-03 13:46:56 -0400
commit6378e6c06f3296ec8fdea13271c092e9830401ea (patch)
treed6528e50dc69ad9fef94be3f0bf9d97b3f5c0d14 /packages/web/src/content/docs/cli.mdx
parent4159db4549efd9d598543a8030ed1fe80e56b3a9 (diff)
downloadopencode-6378e6c06f3296ec8fdea13271c092e9830401ea.tar.gz
opencode-6378e6c06f3296ec8fdea13271c092e9830401ea.zip
docs: rename opencode to OpenCode
Diffstat (limited to 'packages/web/src/content/docs/cli.mdx')
-rw-r--r--packages/web/src/content/docs/cli.mdx14
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/web/src/content/docs/cli.mdx b/packages/web/src/content/docs/cli.mdx
index 5d2ac4a7b..2fd3a0f5c 100644
--- a/packages/web/src/content/docs/cli.mdx
+++ b/packages/web/src/content/docs/cli.mdx
@@ -1,17 +1,17 @@
---
title: CLI
-description: opencode CLI options and commands.
+description: OpenCode CLI options and commands.
---
import { Tabs, TabItem } from "@astrojs/starlight/components"
-The opencode CLI by default starts the [TUI](/docs/tui) when run without any arguments.
+The OpenCode CLI by default starts the [TUI](/docs/tui) when run without any arguments.
```bash
opencode
```
-But it also accepts commands as documented on this page. This allows you to interact with opencode programmatically.
+But it also accepts commands as documented on this page. This allows you to interact with OpenCode programmatically.
```bash
opencode run "Explain how closures work in JavaScript"
@@ -21,13 +21,13 @@ opencode run "Explain how closures work in JavaScript"
## Commands
-The opencode CLI also has the following commands.
+The OpenCode CLI also has the following commands.
---
### agent
-Manage agents for opencode.
+Manage agents for OpenCode.
```bash
opencode agent [command]
@@ -59,13 +59,13 @@ opencode auth [command]
#### login
-opencode is powered by the provider list at [Models.dev](https://models.dev), so you can use `opencode auth login` to configure API keys for any provider you'd like to use. This is stored in `~/.local/share/opencode/auth.json`.
+OpenCode is powered by the provider list at [Models.dev](https://models.dev), so you can use `opencode auth login` to configure API keys for any provider you'd like to use. This is stored in `~/.local/share/opencode/auth.json`.
```bash
opencode auth login
```
-When opencode starts up it loads the providers from the credentials file. And if there are any keys defined in your environments or a `.env` file in your project.
+When OpenCode starts up it loads the providers from the credentials file. And if there are any keys defined in your environments or a `.env` file in your project.
---