fix gemini cli installer preflight

This commit is contained in:
stablegenius49
2026-03-12 14:45:18 -07:00
parent 78d9167215
commit 3ddf9b6b4b
4 changed files with 20 additions and 4 deletions

View File

@@ -23,10 +23,13 @@ supported agentic coding tools.
# Install a specific home-scoped tool
./scripts/install.sh --tool antigravity
./scripts/install.sh --tool gemini-cli
./scripts/install.sh --tool copilot
./scripts/install.sh --tool openclaw
./scripts/install.sh --tool claude-code
# Gemini CLI needs generated integration files on a fresh clone
./scripts/convert.sh --tool gemini-cli
./scripts/install.sh --tool gemini-cli
```
For project-scoped tools such as OpenCode, Cursor, Aider, and Windsurf, run
@@ -88,8 +91,11 @@ See [antigravity/README.md](antigravity/README.md) for details.
Agents are packaged as a Gemini CLI extension with individual skill files.
The extension is installed to `~/.gemini/extensions/agency-agents/`.
Because the Gemini manifest and skill folders are generated artifacts, run
`./scripts/convert.sh --tool gemini-cli` before installing from a fresh clone.
```bash
./scripts/convert.sh --tool gemini-cli
./scripts/install.sh --tool gemini-cli
```

View File

@@ -6,6 +6,10 @@ installs to `~/.gemini/extensions/agency-agents/`.
## Install
```bash
# Generate the Gemini CLI integration files first
./scripts/convert.sh --tool gemini-cli
# Then install the extension
./scripts/install.sh --tool gemini-cli
```