Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(cli): deprecate explicit command support for agy (#1798)
  • Loading branch information
dhilipkumars committed Mar 11, 2026
commit a668de3d619b62daeea69d8552986b6b6dee1f10
6 changes: 6 additions & 0 deletions src/specify_cli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -1413,6 +1413,12 @@ def init(
"copilot"
)

if selected_ai == "agy" and not ai_skills:
console.print("\n[red]Error:[/red] Antigravity explicit command support is deprecated as of version 1.20.5.")
console.print("Please use [cyan]--ai-skills[/cyan] when initializing to install templates as agent skills instead.")
Comment thread
dhilipkumars marked this conversation as resolved.
Outdated
console.print("[yellow]Usage:[/yellow] specify init <project> --ai agy --ai-skills")
raise typer.Exit(1)
Comment thread
dhilipkumars marked this conversation as resolved.
Outdated

# Validate --ai-commands-dir usage
if selected_ai == "generic":
if not ai_commands_dir:
Expand Down