mirror of
https://github.com/msitarzewski/agency-agents/
synced 2026-06-09 10:13:17 +00:00
f954ca5378
Migrates Gemini CLI to native subagents (~/.gemini/agents/) + quotes zk-steward description. Rebased from #472; e2e-verified with real gemini v0.43.0. Closes #473. Co-Authored-By: Tomo Wang <tomo_wang@163.com>
45 lines
805 B
Markdown
45 lines
805 B
Markdown
# Gemini CLI Integration
|
|
|
|
Packages all Agency agents as Gemini CLI subagents. These agents
|
|
install to `~/.gemini/agents/`.
|
|
|
|
## Install
|
|
|
|
```bash
|
|
# Generate the Gemini CLI agent files first
|
|
./scripts/convert.sh --tool gemini-cli
|
|
|
|
# Then install them to ~/.gemini/agents/
|
|
./scripts/install.sh --tool gemini-cli
|
|
```
|
|
|
|
## Use an Agent
|
|
|
|
In Gemini CLI, reference an agent by name in your prompt:
|
|
|
|
```
|
|
Use the frontend-developer agent to help me build this UI.
|
|
```
|
|
|
|
Or invoke the agent directly if your version of Gemini CLI supports it:
|
|
|
|
```bash
|
|
gemini --agent frontend-developer "How should I structure this React component?"
|
|
```
|
|
|
|
## Structure
|
|
|
|
```
|
|
~/.gemini/agents/
|
|
frontend-developer.md
|
|
backend-architect.md
|
|
reality-checker.md
|
|
...
|
|
```
|
|
|
|
## Regenerate
|
|
|
|
```bash
|
|
./scripts/convert.sh --tool gemini-cli
|
|
```
|