agency-agents
Othermsitarzewski/agency-agents
Collection of specialized AI agent personalities for coding assistants.
Overview
Curated set of AI agent definitions with specialized personalities and workflows for frontend, backend, DevOps, and more. Each agent includes identity, mission, and deliverable-focused instructions. Designed for use with Claude Code and other AI coding tools.
README Preview
# 🎭 The Agency: AI Specialists Ready to Transform Your Workflow\n\n> **A complete AI agency at your fingertips** - From frontend wizards to Reddit community ninjas, from whimsy injectors to reality checkers. Each agent is a specialized expert with personality, processes, and proven deliverables.\n\n[](https://github.com/msitarzewski/agency-agents)\n[](https://opensource.org/licenses/MIT)\n[](https://makeapullrequest.com)\n[](https://github.com/sponsors/msitarzewski)\n\n---\n\n## 🚀 What Is This?\n\nBorn from a Reddit thread and months of iteration, **The Agency** is a growing collection of meticulously crafted AI agent personalities. Each agent is:\n\n- **🎯 Specialized**: Deep expertise in their domain (not generic prompt templates)\n- **🧠 Personality-Driven**: Unique voice, communication style, and approach\n- **📋 Deliverable-Focused**: Real code, processes, and measurable outcomes\n- **✅ Production-Ready**: Battle-tested workflows and success metrics\n\n**Think of it as**: Assembling your dream team, except they're AI specialists who never sleep, never complain, and always deliver.\n\n---\n\n## ⚡ Quick Start\n\n### Option 1: Use with Claude Code (Recommended)\n\n```bash\n# Install all agents to your Claude Code directory\n./scripts/install.sh --tool claude-code\n\n# Or manually copy a category if you only want one division\ncp engineering/*.md ~/.claude/agents/\n\n# Then activate any agent in your Claude Code sessions:\n# "Hey Claude, activate Frontend Developer mode and help me build a React component"\n```\n\n### Option 2: Use as Reference\n\nEach agent file contains:\n- Identity & personality traits\n- Core mission & workflows\n- Technical deliverables with code examples\n- Success metrics & communication style\n\nBrowse the agents below and copy/adapt the ones you need!\n\n### Option 3: Use with Other Tools (GitHub Copilot, Antigravity, Gemini CLI, OpenCode, OpenClaw, Cursor, Aider, Windsurf, Kimi Code)\n\n```bash\n# Step 1 -- generate integration files fo
FAQ (5)
TroubleshootingHow to fix missing agents directory when installing OpenCode agents globally?
The agents/ directory is gitignored and generated by convert.sh. Run the conversion script first: ./scripts/convert.sh --tool opencode, then install: ./scripts/install.sh --tool opencode --path ~/.config/opencode/agents
TroubleshootingWhy does install.sh show only one destination path when installing copilot agents?
This bug was fixed in the main branch. Pull the latest changes with git pull origin main and re-run ./scripts/install.sh --tool copilot. The output will now show both ~/.github/agents and ~/.copilot/agents.
TroubleshootingWhy are my VS Code Copilot agents not showing up after running install.sh?
The install script previously placed agents in ~/.github/agents instead of the VS Code default ~/.copilot/agents. This has been fixed in the latest main branch. Update the repository with git pull origin main and re-run ./scripts/install.sh --tool copilot. The updated script copies agents to both paths and displays them on completion.
TroubleshootingWhy are my custom agents not showing up in VS Code Copilot after installing via agency-agents install script?
The install script previously copied agent files only to ~/.github/agents, but VS Code Copilot by default does not recognize that location. The issue has been fixed in the latest main branch: the script now copies agents to both ~/.github/agents and ~/.copilot/agents, and displays both paths after installation. To fix, pull the latest main branch and re-run the install script: git pull origin main && ./scripts/install.sh --tool copilot. Ensure your VS Code setting chat.agentFilesLocations includes the appropriate directory (it should by default include ~/.copilot/agents).
TroubleshootingHow to install only agents from the Engineering Division and not all agents?
Use the --division flag introduced in PR #157 (after merge). Example: ./scripts/install.sh --tool claude-code --division engineering. This installs all agents within the specified division, not individual agent folders. For single-agent installation, manual file copy may be required.