This directory contains The Agency integrations and converted formats for supported agentic coding tools.
- Claude Code —
.mdagents, use the repo directly - GitHub Copilot —
.mdagents, use the repo directly - Antigravity —
SKILL.mdper agent inantigravity/ - Gemini CLI — extension +
SKILL.mdfiles ingemini-cli/ - OpenCode —
.mdagent files inopencode/ - OpenClaw —
SOUL.md+AGENTS.md+IDENTITY.mdworkspaces - Cursor —
.mdcrule files incursor/ - Aider —
CONVENTIONS.mdinaider/ - Windsurf —
.windsurfrulesinwindsurf/
# Install for all detected tools automatically
./scripts/install.sh
# Install a specific home-scoped tool
./scripts/install.sh --tool antigravity
./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-cliFor project-scoped tools such as OpenCode, Cursor, Aider, and Windsurf, run the installer from your target project root as shown in the tool-specific sections below.
If you add or modify agents, regenerate all integration files:
./scripts/convert.shThe Agency was originally designed for Claude Code. Agents work natively without conversion.
cp -r <category>/*.md ~/.claude/agents/
# or install everything at once:
./scripts/install.sh --tool claude-codeSee claude-code/README.md for details.
The Agency also works natively with GitHub Copilot. Agents can be copied
directly into ~/.github/agents/ and ~/.copilot/agents/ without conversion.
./scripts/install.sh --tool copilotSee github-copilot/README.md for details.
Skills are installed to ~/.gemini/antigravity/skills/. Each agent becomes
a separate skill prefixed with agency- to avoid naming conflicts.
./scripts/install.sh --tool antigravitySee 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.
./scripts/convert.sh --tool gemini-cli
./scripts/install.sh --tool gemini-cliSee gemini-cli/README.md for details.
Each agent becomes a project-scoped .md file in .opencode/agents/.
cd /your/project && /path/to/agency-agents/scripts/install.sh --tool opencodeSee opencode/README.md for details.
Each agent becomes an OpenClaw workspace containing SOUL.md, AGENTS.md,
and IDENTITY.md.
Before installing, generate the OpenClaw workspaces:
./scripts/convert.sh --tool openclawThen install them:
./scripts/install.sh --tool openclawSee openclaw/README.md for details.
Each agent becomes a .mdc rule file. Rules are project-scoped — run the
installer from your project root.
cd /your/project && /path/to/agency-agents/scripts/install.sh --tool cursorSee cursor/README.md for details.
All agents are consolidated into a single CONVENTIONS.md file that Aider
reads automatically when present in your project root.
cd /your/project && /path/to/agency-agents/scripts/install.sh --tool aiderSee aider/README.md for details.
All agents are consolidated into a single .windsurfrules file for your
project root.
cd /your/project && /path/to/agency-agents/scripts/install.sh --tool windsurfSee windsurf/README.md for details.