OpenSource-Hub

agency-agents

기타

msitarzewski/agency-agents

프로그래밍 어시스턴트를 위한 AI 전문가 역할 모음입니다.

개요

정교하게 설계된 AI 에이전트 정의 컬렉션으로, 프론트엔드, 백엔드, DevOps 등 전문 분야를 포괄하며, 각 에이전트는 신원(Identity), 미션(Mission), 산출물(Deliverable) 중심의 지침을 포함하고 있습니다. 주로 Claude Code와 같은 AI 코딩 도구에서 사용하도록 설계되었습니다.

README 미리보기

# 🎭 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)

문제 해결
OpenCode agents를 globally 설치할 때 누락된 agents directory를 수정하는 방법은?

agents/ 디렉토리는 gitignore에 포함되어 있으며 convert.sh에 의해 생성됩니다. 먼저 변환 스크립트를 실행하세요: ./scripts/convert.sh --tool opencode, 그런 다음 설치: ./scripts/install.sh --tool opencode --path ~/.config/opencode/agents

원본 Issue #245
문제 해결
install.sh가 copilot agents를 설치할 때 왜 대상 경로를 하나만 표시하나요?

이 버그는 메인 브랜치에서 수정되었습니다. git pull origin main으로 최신 변경 사항을 가져온 후 ./scripts/install.sh --tool copilot을 다시 실행하세요. 이제 출력에 ~/.github/agents와 ~/.copilot/agents가 모두 표시됩니다.

원본 Issue #228
문제 해결
제 VS Code Copilot agents가 install.sh를 실행한 후에 나타나지 않는 이유는 무엇인가요?

설치 스크립트가 이전에는 에이전트를 VS Code 기본 경로인 ~/.copilot/agents 대신 ~/.github/agents에 배치했습니다. 이 문제는 최신 main 브랜치에서 수정되었습니다. git pull origin main으로 저장소를 업데이트하고 ./scripts/install.sh --tool copilot을 다시 실행하세요. 업데이트된 스크립트는 에이전트를 두 경로 모두에 복사하고 완료 시 이를 표시합니다.

원본 Issue #218
문제 해결
agency-agents install 스크립트를 통해 설치한 후 내 사용자 정의 에이전트가 VS Code Copilot에 나타나지 않는 이유는 무엇인가요?

기존 설치 스크립트는 에이전트 파일을 ~/.github/agents에만 복사했지만, VS Code Copilot은 기본적으로 해당 위치를 인식하지 못합니다. 최신 메인 브랜치에서 이 문제가 수정되었습니다. 이제 스크립트는 에이전트를 ~/.github/agents와 ~/.copilot/agents 두 곳에 모두 복사하며, 설치 후 두 경로를 모두 표시합니다. 수정하려면 최신 메인 브랜치를 가져와 설치 스크립트를 다시 실행하세요: git pull origin main && ./scripts/install.sh --tool copilot. VS Code 설정 chat.agentFilesLocations에 적절한 디렉터리가 포함되어 있는지 확인하세요(기본적으로 ~/.copilot/agents가 포함되어 있어야 합니다).

원본 Issue #185
문제 해결
모든 에이전트가 아닌 엔지니어링 부서의 에이전트만 설치하는 방법은 무엇인가요?

--division 플래그를 사용하세요 (PR #157 머지 후 도입됨). 예시: ./scripts/install.sh --tool claude-code --division engineering. 이는 개별 에이전트 폴더가 아닌 지정된 부서 내의 모든 에이전트를 설치합니다. 단일 에이전트 설치의 경우 수동 파일 복사가 필요할 수 있습니다.

원본 Issue #134