文件最后提交记录最后更新时间
Remove generated integration files, add to .gitignore The 250+ generated files in integrations/ were adding repo bloat and would cause merge conflicts when agents change. Run scripts/convert.sh to regenerate them locally. What's committed: - scripts/convert.sh and scripts/install.sh (the actual value) - integrations/*/README.md (docs for each tool) - integrations/README.md (overview) - .gitignore updated to exclude all generated output dirs What's excluded (add to .gitignore): - integrations/antigravity/agency-*/ - integrations/gemini-cli/skills/ + gemini-extension.json - integrations/opencode/agent/ - integrations/cursor/rules/ - integrations/aider/CONVENTIONS.md - integrations/windsurf/.windsurfrules 2 个月前
Remove generated integration files, add to .gitignore The 250+ generated files in integrations/ were adding repo bloat and would cause merge conflicts when agents change. Run scripts/convert.sh to regenerate them locally. What's committed: - scripts/convert.sh and scripts/install.sh (the actual value) - integrations/*/README.md (docs for each tool) - integrations/README.md (overview) - .gitignore updated to exclude all generated output dirs What's excluded (add to .gitignore): - integrations/antigravity/agency-*/ - integrations/gemini-cli/skills/ + gemini-extension.json - integrations/opencode/agent/ - integrations/cursor/rules/ - integrations/aider/CONVENTIONS.md - integrations/windsurf/.windsurfrules 2 个月前
docs: align integration docs with supported tools 2 个月前
Remove generated integration files, add to .gitignore The 250+ generated files in integrations/ were adding repo bloat and would cause merge conflicts when agents change. Run scripts/convert.sh to regenerate them locally. What's committed: - scripts/convert.sh and scripts/install.sh (the actual value) - integrations/*/README.md (docs for each tool) - integrations/README.md (overview) - .gitignore updated to exclude all generated output dirs What's excluded (add to .gitignore): - integrations/antigravity/agency-*/ - integrations/gemini-cli/skills/ + gemini-extension.json - integrations/opencode/agent/ - integrations/cursor/rules/ - integrations/aider/CONVENTIONS.md - integrations/windsurf/.windsurfrules 2 个月前
fix gemini cli installer preflight 2 个月前
Copilot agents need to be copied to ~/.copilot/agents in order to show up as usable agents in github copilot 2 个月前
feat: add MCP memory integration guide Generic memory integration pattern using any MCP-compatible memory server. Replaces vendor-specific PR #57 based on maintainer feedback. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> 2 个月前
docs: clarify scoped installs and openclaw setup 2 个月前
docs(opencode): update integration docs for plural dirs and new frontmatter Reflect the switch to agents/ (plural), hex color codes, mode: subagent, and @agent-name invocation in both the OpenCode integration README and the main README's OpenCode section. 2 个月前
Remove generated integration files, add to .gitignore The 250+ generated files in integrations/ were adding repo bloat and would cause merge conflicts when agents change. Run scripts/convert.sh to regenerate them locally. What's committed: - scripts/convert.sh and scripts/install.sh (the actual value) - integrations/*/README.md (docs for each tool) - integrations/README.md (overview) - .gitignore updated to exclude all generated output dirs What's excluded (add to .gitignore): - integrations/antigravity/agency-*/ - integrations/gemini-cli/skills/ + gemini-extension.json - integrations/opencode/agent/ - integrations/cursor/rules/ - integrations/aider/CONVENTIONS.md - integrations/windsurf/.windsurfrules 2 个月前
Copilot agents need to be copied to ~/.copilot/agents in order to show up as usable agents in github copilot 2 个月前
README.md

🔌 Integrations

This directory contains The Agency integrations and converted formats for supported agentic coding tools.

Supported Tools

  • Claude Code.md agents, use the repo directly
  • GitHub Copilot.md agents, use the repo directly
  • AntigravitySKILL.md per agent in antigravity/
  • Gemini CLI — extension + SKILL.md files in gemini-cli/
  • OpenCode.md agent files in opencode/
  • OpenClawSOUL.md + AGENTS.md + IDENTITY.md workspaces
  • Cursor.mdc rule files in cursor/
  • AiderCONVENTIONS.md in aider/
  • Windsurf.windsurfrules in windsurf/

Quick Install

# 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-cli

For 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.

Regenerating Integration Files

If you add or modify agents, regenerate all integration files:

./scripts/convert.sh

Claude Code

The 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-code

See claude-code/README.md for details.


GitHub Copilot

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 copilot

See github-copilot/README.md for details.


Antigravity

Skills are installed to ~/.gemini/antigravity/skills/. Each agent becomes a separate skill prefixed with agency- to avoid naming conflicts.

./scripts/install.sh --tool antigravity

See antigravity/README.md for details.


Gemini CLI

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-cli

See gemini-cli/README.md for details.


OpenCode

Each agent becomes a project-scoped .md file in .opencode/agents/.

cd /your/project && /path/to/agency-agents/scripts/install.sh --tool opencode

See opencode/README.md for details.


OpenClaw

Each agent becomes an OpenClaw workspace containing SOUL.md, AGENTS.md, and IDENTITY.md.

Before installing, generate the OpenClaw workspaces:

./scripts/convert.sh --tool openclaw

Then install them:

./scripts/install.sh --tool openclaw

See openclaw/README.md for details.


Cursor

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 cursor

See cursor/README.md for details.


Aider

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 aider

See aider/README.md for details.


Windsurf

All agents are consolidated into a single .windsurfrules file for your project root.

cd /your/project && /path/to/agency-agents/scripts/install.sh --tool windsurf

See windsurf/README.md for details.