chore: remove gemini-cli

This commit is contained in:
Ryan Yin
2026-05-20 16:15:48 +08:00
parent c2512dc7d9
commit 7c286099b6
6 changed files with 1 additions and 8 deletions
-3
View File
@@ -31,12 +31,9 @@ def main() -> int:
xdg_config_home = Path(os.environ.get("XDG_CONFIG_HOME", "~/.config")).expanduser()
opencode_dir = xdg_config_home / "opencode"
claude_dir = Path("~/.claude").expanduser()
gemini_dir = Path("~/.gemini").expanduser()
install_one(codex_dir, agents_file, "AGENTS.md")
install_one(opencode_dir, agents_file, "AGENTS.md")
install_one(claude_dir, agents_file, "CLAUDE.md")
install_one(gemini_dir, agents_file, "GEMINI.md")
return 0