mirror of
https://github.com/msitarzewski/agency-agents
synced 2026-04-25 11:18:05 +00:00
Adds support for installing The Agency agents across 7 agentic coding
tools via two scripts:
scripts/convert.sh
- Reads all 61 agents and converts them into tool-specific formats
- Supports: Antigravity, Gemini CLI, OpenCode, Cursor, Aider, Windsurf
- Shellcheck-clean, pure bash, no external deps
- Run: ./scripts/convert.sh [--tool <name>]
scripts/install.sh
- Interactive terminal UI with auto-detection of installed tools
- Pre-selects detected tools, toggle by number or bulk commands
- Falls back gracefully in CI / non-interactive mode
- Cross-platform: Linux, macOS (bash 3.2+), Windows Git Bash / WSL
- Run: ./scripts/install.sh [--tool <name>] [--no-interactive]
integrations/ (generated, committed for reference)
- antigravity/ SKILL.md per agent (61 files)
- gemini-cli/ SKILL.md per agent + gemini-extension.json
- opencode/ .md agent files for .opencode/agent/
- cursor/ .mdc rule files for .cursor/rules/
- aider/ single CONVENTIONS.md (all agents combined)
- windsurf/ single .windsurfrules (all agents combined)
- claude-code/ README only (agents copied directly from repo root)
- README.md full usage + tool-specific instructions
README.md
- Added Multi-Tool Integrations section with supported tools table,
quick-start guide, per-tool expandable instructions, and updated
roadmap marking integrations as complete
37 lines
615 B
Markdown
37 lines
615 B
Markdown
# Gemini CLI Integration
|
|
|
|
Packages all 61 Agency agents as a Gemini CLI extension. The extension
|
|
installs to `~/.gemini/extensions/agency-agents/`.
|
|
|
|
## Install
|
|
|
|
```bash
|
|
./scripts/install.sh --tool gemini-cli
|
|
```
|
|
|
|
## Activate a Skill
|
|
|
|
In Gemini CLI, reference an agent by name:
|
|
|
|
```
|
|
Use the frontend-developer skill to help me build this UI.
|
|
```
|
|
|
|
## Extension Structure
|
|
|
|
```
|
|
~/.gemini/extensions/agency-agents/
|
|
gemini-extension.json
|
|
skills/
|
|
frontend-developer/SKILL.md
|
|
backend-architect/SKILL.md
|
|
reality-checker/SKILL.md
|
|
...
|
|
```
|
|
|
|
## Regenerate
|
|
|
|
```bash
|
|
./scripts/convert.sh --tool gemini-cli
|
|
```
|