Skip to content

Commit 3d4570c

Browse files
Merge pull request #2722 from madeline-underwood/codex
Codex_reviewed
2 parents b9cd8d6 + c54c9bb commit 3d4570c

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

content/install-guides/codex-cli.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Codex CLI
3-
draft: true
3+
44
author: Joe Stech
55
minutes_to_complete: 10
66
official_docs: https://developers.openai.com/codex/cli/
@@ -16,9 +16,9 @@ tool_install: true
1616
weight: 1
1717
---
1818

19-
Codex CLI is a lightweight coding agent from OpenAI that runs locally in your terminal. It can help you with coding tasks, understand your codebase, run commands, and assist with development workflows.
19+
Codex CLI is a local, terminal-based coding agent from OpenAI that helps developers explore codebases, generate changes, and run commands using natural language. It’s useful for tasks such as understanding unfamiliar projects, refactoring code, and accelerating development workflows directly from the command line.
2020

21-
It supports multiple operating systems, including Arm-based Linux distributions and macOS.
21+
Codex CLI supports multiple operating systems, including Arm-based Linux distributions and macOS. By integrating AI assistance directly into command-line workflows, it reduces context switching during development.
2222

2323
This guide explains how to install Codex CLI on macOS and Arm Linux.
2424

@@ -28,11 +28,9 @@ You need an OpenAI account to use Codex CLI. You can either sign in with your [C
2828

2929
Codex CLI requires Node.js 18 or later.
3030

31-
This guide explains how to install Codex CLI on macOS and Arm Linux.
32-
3331
## How do I download and install Codex CLI?
3432

35-
On most systems, you should install codex using `npm`. On macOS Homebrew can also be used.
33+
On most systems, install Codex CLI using npm. On macOS, there is also the option for you to use Homebrew.
3634

3735
### How do I use npm to install Codex CLI?
3836

@@ -66,13 +64,15 @@ Install the required packages on Ubuntu/Debian systems:
6664
sudo apt update && sudo apt install -y curl
6765
```
6866

69-
If you are not using Ubuntu/Debian use your package manager to install curl.
67+
If you're not using Ubuntu/Debian, use your package manager to install curl.
7068

7169
### How do I install Node.js on Arm Linux?
7270

71+
{{% notice Note %}}If you already have Node.js 18 or later installed, you can skip this section.{{% /notice %}}
72+
7373
Codex CLI requires Node.js version 18 or higher. The easiest way to install Node.js on Arm Linux is using the NodeSource repository.
7474

75-
Download and run the Node.js setup script (example shown for Node.js 22.x):
75+
Download and run the Node.js setup script. For example, for Node.js 22.x:
7676

7777
```bash
7878
curl -fsSL https://deb.nodesource.com/setup_22.x | sudo -E bash -
@@ -120,7 +120,7 @@ sudo npm install -g @openai/codex
120120

121121
This downloads and installs the latest version of Codex CLI.
122122

123-
### How do I confirm Codex CLI is working?
123+
## How do I confirm Codex CLI is working?
124124

125125
You now have the latest version of Codex CLI installed.
126126

@@ -136,7 +136,7 @@ The output shows the version:
136136
@openai/codex, 0.77.0
137137
```
138138

139-
### How do I authenticate with OpenAI?
139+
## How do I authenticate with OpenAI?
140140

141141
There are two ways to authenticate with Codex CLI.
142142

@@ -229,10 +229,10 @@ At the Codex prompt, run the `/mcp` command to view active MCP servers and their
229229
/mcp
230230
```
231231

232-
You should see the Arm MCP server listed. If the arm-mcp server says it's still loading, wait a moment and check again.
232+
The Arm MCP server is listed in the output. If the arm-mcp server indicates it's still loading, wait a moment and check again.
233233

234234
You can also verify the tools are available by asking Codex to list the available Arm MCP tools.
235235

236-
If you are facing issues or have questions, reach out to mcpserver@arm.com.
236+
If you're facing issues or have questions, reach out to mcpserver@arm.com.
237237

238-
You're ready to use Codex CLI.
238+
You're now ready to use Codex CLI with Arm-specific development assistance.

0 commit comments

Comments
 (0)