You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor(cli): rename ogx launch command group to ogx connect
The `launch` terminology collided conceptually with starting the server.
Rename the command subgroup to `connect`, which better describes its
purpose of connecting OGX to external services like OpenCode.
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Signed-off-by: Nathan Weinberg <nweinber@redhat.com>
Copy file name to clipboardExpand all lines: docs/docs/building_applications/opencode_integration.mdx
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ sidebar_position: 6
7
7
8
8
# OpenCode Integration
9
9
10
-
OGX includes built-in support for launching[OpenCode](https://opencode.ai), a terminal-based AI coding assistant, with a single command. All available models on your OGX server are automatically configured and ready to use.
10
+
OGX includes built-in support for connecting[OpenCode](https://opencode.ai), a terminal-based AI coding assistant, with a single command. All available models on your OGX server are automatically configured and ready to use.
Copy file name to clipboardExpand all lines: docs/docs/references/ogx_cli_reference/index.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,7 +31,7 @@ You have two ways to install OGX:
31
31
## `ogx` subcommands
32
32
33
33
1.`stack`: Allows you to build a stack using the `ogx` distribution and run a OGX server. You can read more about how to build a OGX distribution in the [Build your own Distribution](../../distributions/building_distro) documentation.
34
-
2.`launch`: Launch third-party tools configured for OGX. Currently supports `opencode`. See [OpenCode Integration](../../building_applications/opencode_integration) for details.
34
+
2.`connect`: Connect third-party tools to the running OGX server. Currently supports `opencode`. See [OpenCode Integration](../../building_applications/opencode_integration) for details.
35
35
36
36
For downloading models, we recommend using the [Hugging Face CLI](https://huggingface.co/docs/huggingface_hub/guides/cli). See [Downloading models](#downloading-models) for more information.
37
37
@@ -42,18 +42,18 @@ llama --help
42
42
```
43
43
44
44
```text
45
-
usage: ogx [-h] {stack,launch} ...
45
+
usage: ogx [-h] {stack,connect} ...
46
46
47
47
Welcome to the OGX CLI
48
48
49
49
options:
50
50
-h, --help show this help message and exit
51
51
52
52
subcommands:
53
-
{stack,launch}
53
+
{stack,connect}
54
54
55
55
stack Operations for the OGX / Distributions
56
-
launch Launch third-party tools configured for OGX
56
+
connectConnect third-party tools to the running OGX server
0 commit comments