chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 11:57:08 +08:00
commit 2624ac09ce
327 changed files with 82275 additions and 0 deletions
+44
View File
@@ -0,0 +1,44 @@
# 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
```