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
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -110,7 +110,7 @@ Our research and experimentation focus on:
110
110
## 🔧 Prerequisites
111
111
112
112
-**Linux/macOS** (or WSL2 on Windows)
113
-
- AI coding agent: [Claude Code](https://www.anthropic.com/claude-code), [GitHub Copilot](https://code.visualstudio.com/), [Gemini CLI](https://github.com/google-gemini/gemini-cli), or [Rovodev CLI](https://support.atlassian.com/rovo/docs/install-and-run-rovo-dev-cli-on-your-device/)
113
+
- AI coding agent: [Claude Code](https://www.anthropic.com/claude-code), [GitHub Copilot](https://code.visualstudio.com/), [Gemini CLI](https://github.com/google-gemini/gemini-cli), or [Rovo Dev CLI](https://support.atlassian.com/rovo/docs/install-and-run-rovo-dev-cli-on-your-device/)
114
114
-[uv](https://docs.astral.sh/uv/) for package management
@@ -147,12 +147,12 @@ You will be prompted to select the AI agent you are using. You can also proactiv
147
147
specify init <project_name> --ai claude
148
148
specify init <project_name> --ai gemini
149
149
specify init <project_name> --ai copilot
150
-
specify init <project_name> --ai rovodev
150
+
specify init <project_name> --ai rovodevcli
151
151
# Or in current directory:
152
152
specify init --here --ai claude
153
153
```
154
154
155
-
The CLI will check if you have Claude Code, Gemini CLI, Rovodev CLI installed. If you do not, or you prefer to get the templates without checking for the right tools, use `--ignore-agent-tools` with your command:
155
+
The CLI will check if you have Claude Code, Gemini CLI, Rovo Dev CLI installed. If you do not, or you prefer to get the templates without checking for the right tools, use `--ignore-agent-tools` with your command:
156
156
157
157
```bash
158
158
specify init <project_name> --ai claude --ignore-agent-tools
console.print("[red]Error:[/red] Rovodev CLI is required for Rovodev projects")
747
+
console.print("[red]Error:[/red] Rovo Dev CLI is required for Rovo Dev CLI projects")
753
748
agent_tool_missing=True
754
749
# GitHub Copilot check is not needed as it's typically available in supported IDEs
755
750
@@ -837,8 +832,8 @@ def init(
837
832
steps_lines.append(" - See GEMINI.md for all available commands")
838
833
elifselected_ai=="copilot":
839
834
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")
840
-
elifselected_ai=="rovodev":
841
-
steps_lines.append(f"{step_num}. Use / commands with Rovodev CLI")
835
+
elifselected_ai=="rovodevcli":
836
+
steps_lines.append(f"{step_num}. Use / commands with Rovo Dev CLI")
842
837
steps_lines.append(" - Use /specify to create specifications")
843
838
steps_lines.append(" - Use /plan to create implementation plans")
844
839
steps_lines.append(" - Use /tasks to generate tasks")
@@ -875,13 +870,13 @@ def check():
875
870
console.print("\n[cyan]Optional AI tools:[/cyan]")
0 commit comments