From 3ee225f624188751f5aed9b2a29c137d18a259ab Mon Sep 17 00:00:00 2001 From: Emanuel Turis <60395856+emanuelturis@users.noreply.github.com> Date: Wed, 1 Oct 2025 12:09:41 +0300 Subject: [PATCH 1/3] Remove Codex named args limitation from README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b4e91c3774..385a2d4958 100644 --- a/README.md +++ b/README.md @@ -133,7 +133,7 @@ Want to see Spec Kit in action? Watch our [video overview](https://www.youtube.c | [Kilo Code](https://github.com/Kilo-Org/kilocode) | ✅ | | | [Auggie CLI](https://docs.augmentcode.com/cli/overview) | ✅ | | | [Roo Code](https://roocode.com/) | ✅ | | -| [Codex CLI](https://github.com/openai/codex) | ⚠️ | Codex [does not support](https://github.com/openai/codex/issues/2890) custom arguments for slash commands. | +| [Codex CLI](https://github.com/openai/codex) | ✅ | | ## 🔧 Specify CLI Reference From 75df2999f4dbd5f354cea16a350594156d809ba2 Mon Sep 17 00:00:00 2001 From: Emanuel Turis Date: Fri, 3 Oct 2025 16:31:36 +0300 Subject: [PATCH 2/3] Remove Codex named args limitation warning --- src/specify_cli/__init__.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/specify_cli/__init__.py b/src/specify_cli/__init__.py index a5be99d74b..14e06fe3d9 100644 --- a/src/specify_cli/__init__.py +++ b/src/specify_cli/__init__.py @@ -1088,17 +1088,6 @@ def init( console.print() console.print(enhancements_panel) - if selected_ai == "codex": - warning_text = """[bold yellow]Important Note:[/bold yellow] - -Custom prompts do not yet support arguments in Codex. You may need to manually specify additional project instructions directly in prompt files located in [cyan].codex/prompts/[/cyan]. - -For more information, see: [cyan]https://github.com/openai/codex/issues/2890[/cyan]""" - - warning_panel = Panel(warning_text, title="Slash Commands in Codex", border_style="yellow", padding=(1,2)) - console.print() - console.print(warning_panel) - @app.command() def check(): """Check that all required tools are installed.""" From b06f2b9f8937537932a259e09af0fdd980ccfaf6 Mon Sep 17 00:00:00 2001 From: Korakot Chaovavanich Date: Mon, 6 Oct 2025 07:14:58 +0700 Subject: [PATCH 3/3] Codex CLI is now fully supported --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 30d9c378e3..5769da7328 100644 --- a/README.md +++ b/README.md @@ -134,7 +134,7 @@ Want to see Spec Kit in action? Watch our [video overview](https://www.youtube.c | [Auggie CLI](https://docs.augmentcode.com/cli/overview) | ✅ | | | [Roo Code](https://roocode.com/) | ✅ | | | [Amazon Q Developer CLI](https://aws.amazon.com/developer/learning/q-developer-cli/) | ⚠️ | Amazon Q Developer CLI [does not support](https://github.com/aws/amazon-q-developer-cli/issues/3064) custom arguments for slash commands. | -| [Codex CLI](https://github.com/openai/codex) | ⚠️ | Codex [does not support](https://github.com/openai/codex/issues/2890) custom arguments for slash commands. | +| [Codex CLI](https://github.com/openai/codex) | ✅ | | ## 🔧 Specify CLI Reference