Context
While preparing #398 (cursor template OpenCode → Cursor CLI), I noticed scripts/drivers/types/antigravity/template.md has an analogous but slightly deeper copy-paste issue.
Observed
scripts/drivers/types/antigravity/template.md contains three strings referring to Codex where they should logically refer to Antigravity:
line 61 - Codex has no Monitor tool, so `monitor` and `both` modes are not offered here.
line 110 ... "Now acting as `<name>`. Sends will use ... (Codex has no Monitor tool, so receive still covers all of your registered roles in this project.)"
line 123 Parse the mode. Codex supports only `turn` and `off` — reject `monitor` and `both` with: "Codex has no Monitor tool; only `turn` or `off` modes are supported."
But there's a structural conflict
scripts/drivers/types/antigravity/type.conf declares:
monitor=no
delivery_modes=monitor turn both off
That is: the manifest advertises all four delivery modes (monitor turn both off), yet the template's delivery-mode picker only offers turn and off (lines 40-57), and the mode-set rejection at line 123 hard-rejects monitor/both.
So this isn't a straight-forward rename — the correct fix depends on intent:
- If antigravity truly has no Monitor-tool equivalent → rename
Codex → Antigravity in the three strings, AND update type.conf to delivery_modes=turn off.
- If antigravity does support monitor mode (per
type.conf) → the entire "no Monitor tool" section shouldn't be in this template; it should offer the 4-mode picker like claude-code's template does.
Not sure which is correct, so filing as an issue rather than a PR.
Related
Context
While preparing #398 (cursor template
OpenCode→Cursor CLI), I noticedscripts/drivers/types/antigravity/template.mdhas an analogous but slightly deeper copy-paste issue.Observed
scripts/drivers/types/antigravity/template.mdcontains three strings referring toCodexwhere they should logically refer to Antigravity:But there's a structural conflict
scripts/drivers/types/antigravity/type.confdeclares:That is: the manifest advertises all four delivery modes (
monitor turn both off), yet the template's delivery-mode picker only offersturnandoff(lines 40-57), and the mode-set rejection at line 123 hard-rejectsmonitor/both.So this isn't a straight-forward rename — the correct fix depends on intent:
Codex→Antigravityin the three strings, AND updatetype.conftodelivery_modes=turn off.type.conf) → the entire "no Monitor tool" section shouldn't be in this template; it should offer the 4-mode picker like claude-code's template does.Not sure which is correct, so filing as an issue rather than a PR.
Related
OpenCode→Cursor CLI, straight rename).feat/cursor-type). Antigravity may have a similar origin PR worth checking.