Package Details: openai-codex-bin 0.39.0-1

Git Clone URL: https://aur.archlinux.org/openai-codex-bin.git (read-only, click to copy)
Package Base: openai-codex-bin
Description: Lightweight coding agent that runs in your terminal (binary release)
Upstream URL: https://github.com/openai/codex
Keywords: ai assistant chatgpt cli codex openai
Licenses: Apache
Conflicts: openai-codex
Provides: openai-codex
Submitter: jackmhny
Maintainer: jackmhny
Last Packager: jackmhny
Votes: 7
Popularity: 3.40
First Submitted: 2025-07-21 20:48 (UTC)
Last Updated: 2025-09-18 22:01 (UTC)

Dependencies (2)

Required by (0)

Sources (2)

Latest Comments

1 2 Next › Last »

lextruel commented on 2025-08-21 13:50 (UTC)

Thanks, I hope keywords will help. I am totally agree with you that self referencing is bad. It was like quick example why this link can be rated less relevant when searching.

jackmhny commented on 2025-08-21 13:33 (UTC)

lextruel: i added the keywords, but respectfully i think the description changes wouldnt fit the guidelines [1] which say to avoid self referencing the package (codex cli) in the description; and though not explicitly mentioned in those guidelines, it can be inferred bad practice to reference arch linux itself in an aur description, as these descs are mainly for searching while already on aur.archlinux.org, or in an aur helper, not SEO

(if every aur desc started with "Arch Linux package for XYZ" it would get annoying fast)

[1] https://wiki.archlinux.org/title/Arch_package_guidelines

lextruel commented on 2025-08-21 10:21 (UTC) (edited on 2025-08-21 10:22 (UTC) by lextruel)

This package has problem with discovery from search engines.

Can I propose to:

  1. Update description to Arch Linux package for OpenAI’s Codex CLI. Google demotes this page due content not being unique. This description is copy from bigger sites like Github.

  2. Add openai, codex, CLI, AI assistant, chatgpt to keywords to make it different from codex-bin package being already present in AUR for longer. And include more mentions of openai.

jackmhny commented on 2025-08-16 15:50 (UTC)

note: current bug with my PKGBUILD with aarch64, will fix soon

Phi11ip commented on 2025-08-13 14:36 (UTC)

Update: 0.21 fixes the issue. Thanks @jackmhny for maintaining the AUR.

Phi11ip commented on 2025-08-11 09:53 (UTC)

Is anyone else getting no response from Codex after the patch? If I execute prompts that result on console commands (e.g. ls) I can see the bot Ran Command output, but no other text output. It does not show the results of the ls command, nor any other flavor text ("it looks like you're writing a letter") type stuff.

jackmhny commented on 2025-08-08 02:03 (UTC)

fixed. thanks @gwuensch for the fix

gwuensch commented on 2025-07-28 14:00 (UTC) (edited on 2025-07-28 14:55 (UTC) by gwuensch)

@carmilso You have outdated tarballs in the source directory that are causing this, you'll have to download the latest version.

@jackmhny Could you configure the source filenames to include the version name, so this doesn't happen?

diff --git a/PKGBUILD b/PKGBUILD
index 0d116d2..db6e18c 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -14,14 +14,14 @@ optdepends=(
 )

 source_x86_64=(
-    "https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-x86_64-unknown-linux-gnu.tar.gz"
-    "https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-exec-x86_64-unknown-linux-gnu.tar.gz"
-    "https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-linux-sandbox-x86_64-unknown-linux-gnu.tar.gz"
+    "codex-${pkgver}.tar.gz::https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-x86_64-unknown-linux-gnu.tar.gz"
+    "codex-exec-${pkgver}.tar.gz::https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-exec-x86_64-unknown-linux-gnu.tar.gz"
+    "codex-linux-sandbox-${pkgver}.tar.gz::https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-linux-sandbox-x86_64-unknown-linux-gnu.tar.gz"
 )
 source_aarch64=(
-    "https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-aarch64-unknown-linux-gnu.tar.gz"
-    "https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-exec-aarch64-unknown-linux-gnu.tar.gz"
-    "https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-linux-sandbox-aarch64-unknown-linux-gnu.tar.gz"
+    "codex-${pkgver}.tar.gz::https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-aarch64-unknown-linux-gnu.tar.gz"
+    "codex-exec-${pkgver}.tar.gz::https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-exec-aarch64-unknown-linux-gnu.tar.gz"
+    "codex-linux-sandbox-${pkgver}.tar.gz::https://github.com/openai/codex/releases/download/rust-v${pkgver}/codex-linux-sandbox-aarch64-unknown-linux-gnu.tar.gz"
 )

 sha256sums_x86_64=('fea15eed6942b94a5ed5c0a5592df798039b897861ea71baa8a8ae3763a3d62d'

Edit: Fixed diff

carmilso commented on 2025-07-28 06:15 (UTC) (edited on 2025-07-28 06:19 (UTC) by carmilso)

There's a validation error:


==> Validating source_x86_64 files with sha256sums...
    codex-x86_64-unknown-linux-gnu.tar.gz ... FAILED
    codex-exec-x86_64-unknown-linux-gnu.tar.gz ... FAILED
    codex-linux-sandbox-x86_64-unknown-linux-gnu.tar.gz ... FAILED
==> ERROR: One or more files did not pass the validity check!
 -> error downloading sources: /home/carlos/.cache/yay/openai-codex-bin
    context: exit status 1

jackmhny commented on 2025-07-22 00:40 (UTC)

done