From f13eb86c0f14e3be7096c80f10226707b57a04db Mon Sep 17 00:00:00 2001 From: "callum.zhong" Date: Wed, 10 Sep 2025 19:44:27 +0000 Subject: [PATCH] Complete Gemini CLI command instructions The '/tasks' command description was missing from the Gemini CLI instructions, creating an inconsistency with other AI options. --- src/specify_cli/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/specify_cli/__init__.py b/src/specify_cli/__init__.py index aa3cf3c..94ac3de 100644 --- a/src/specify_cli/__init__.py +++ b/src/specify_cli/__init__.py @@ -820,6 +820,7 @@ def init( steps_lines.append(f"{step_num}. Use / commands with Gemini CLI") steps_lines.append(" - Run gemini /specify to create specifications") steps_lines.append(" - Run gemini /plan to create implementation plans") + steps_lines.append(" - Run gemini /tasks to generate tasks") steps_lines.append(" - See GEMINI.md for all available commands") elif selected_ai == "copilot": steps_lines.append(f"{step_num}. Open in Visual Studio Code and use [bold cyan]/specify[/], [bold cyan]/plan[/], [bold cyan]/tasks[/] commands with GitHub Copilot")