feat(workflows): prefer agy:agy-review for general-tier in tri-* workflows - #103
Merged
Conversation
…flows Google's AGY (Antigravity CLI) launched 2026-05-19 as the official successor to Gemini CLI. Consumer Gemini CLI access stops 2026-06-18. The `agy-plugin-cc` plugin (https://github.com/5uck1ess/agy-plugin-cc) now ships an `agy:agy-review` subagent that fills the same general-tier non-Claude reviewer slot the gemini-rescue agent used to fill. Updates the dispatch-prompt guidance in: - tri-review.yml — review-smart (mentions AGY as an option alongside codex/Gemini for the smart tier), review-general (AGY preferred, Gemini fallback, codex if neither) - tri-debug.yml — general-diagnosis prefers AGY - tri-dispatch.yml — general-take prefers AGY - tri-security.yml — audit-auth prefers AGY Gemini-backed plugins remain valid fallbacks; codex stays as the last resort when neither Google reviewer is installed. Fast-tier prompts (Haiku-backed, Gemini-Flash-backed) are unchanged — AGY has no dedicated fast-tier variant. No engine, schema, or runner-Go changes. Workflow YAML is loaded at runtime; build sanity check passes.
3 tasks
… carve-out Two review findings from PR #103: 1. tri-debug, tri-dispatch, tri-security now name `codex:codex-rescue` as the explicit last-resort general-tier fallback (mirroring the three-step chain already in tri-review). Without it, a box with neither AGY nor a Gemini plugin installed would stall instead of falling through to codex. 2. tri-review's review-smart prompt no longer lists `agy:agy-review` as a smart-tier candidate. AGY is preferred for general-tier; if the calling model claimed it for smart-tier too, general-tier would have no distinct model and the tri-* property would break. The smart-tier prompt now explicitly reserves AGY for the general-tier slot below.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Updates the dispatch-prompt guidance in
tri-review.yml,tri-debug.yml,tri-dispatch.yml, andtri-security.ymlso the general-tier non-Claude reviewer slot namesagy:agy-reviewas the preferred option, with Gemini-backed plugins as fallback andcodex:codex-rescueas the last resort.Why
Google launched Antigravity CLI (
agy) on 2026-05-19 as the official successor to Gemini CLI. Consumer Gemini CLI access stops being served on 2026-06-18; enterprise license access continues. The companion pluginagy-plugin-cc(v0.1.0) ships anagy:agy-reviewsubagent that fills the same general-tier slot thegemini-rescueagent fromabiswas97-geminiused to fill.Without this update, the workflow prompts would keep naming "Gemini-backed reviewer plugin" as the canonical general-tier choice through and past the Gemini CLI sunset, leaving the calling model to discover the AGY plugin on its own.
Changes
workflows/tri-review.ymlreview-smartagy:agy-review) as a qualifying smart-tier external reviewer alongside Gemini-backed agents.workflows/tri-review.ymlreview-generalagy:agy-reviewas the preferred general-tier reviewer; Gemini fallback;codex:codex-rescueif neither.workflows/tri-debug.ymlgeneral-diagnosisagy:agy-reviewfor the Google-model diagnostic perspective.workflows/tri-dispatch.ymlgeneral-takeagy:agy-review, falls back to Gemini-backed.workflows/tri-security.ymlaudit-authagy:agy-reviewfor the auth-focused audit; Gemini fallback.Fast-tier prompts (Haiku-backed / Gemini-Flash-backed) are intentionally unchanged — AGY has no dedicated fast-tier variant.
Non-changes
Runnerinterface insrc/runners/was never the integration point for tri-review; subagent dispatch via the Agent tool is.)harness-audit.ymlnot touched — it audits the harness itself, not multi-model dispatch.Test plan
agy-plugin-ccinstalled andagyauthenticated, run/devkit:tri-reviewon a small diff and confirm the calling model dispatchesgeneraltoagy:agy-review.codex:codex-rescueis selected and the workflow doesn't get stuck.Related