mirror of
https://github.com/msitarzewski/agency-agents.git
synced 2026-06-11 05:34:56 +03:00
6c479fc694
Update Gemini CLI integration to support the new subagents feature: - Update scripts/convert.sh to generate subagent .md files in integrations/gemini-cli/agents/ - Update scripts/install.sh to install subagents to ~/.gemini/agents/ - Update documentation in README.md and integrations/ to reflect the new structure - Update .gitignore to exclude generated agent files - Remove extension manifest generation as it's no longer needed for subagents Closes #471
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
|
|
```
|