OpenSource-Hub

agency-agents

その他

msitarzewski/agency-agents

プログラミングアシスタント向けのAI専門家ロールセット。

概要

熟知されたAIエージェント定義のコレクションであり、フロントエンド、バックエンド、DevOpsなどの専門領域をカバーしています。各エージェントは、アイデンティティ、ミッション、および成果物指向の指示を含み、主に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をグローバルにインストールする際に不足している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をインストールする際に、なぜ一つの宛先パスだけを表示するのですか?

このバグは mainブランチで修正されました。git pull origin main で最新の変更をプルし、./scripts/install.sh --tool copilot を再実行してください。出力には ~/.github/agents と ~/.copilot/agents の両方が表示されるようになります。

参照 Issue #228
トラブル対応
install.sh を実行した後、VS Code Copilot エージェントが表示されないのはなぜですか?

以前のインストールスクリプトは、エージェントをVS Codeのデフォルトである~/.copilot/agentsではなく、~/.github/agentsに配置していました。これは最新のmainブランチで修正されました。リポジトリをgit pull origin mainで更新し、./scripts/install.sh --tool copilotを再実行してください。更新されたスクリプトはエージェントを両方のパスにコピーし、完了時にそれらを表示します。

参照 Issue #218
トラブル対応
なぜ、agency-agents install scriptでインストールした後、VS Code Copilotにカスタムエージェントが表示されないのですか?

インストールスクリプトは以前はエージェントファイルを ~/.github/agents にのみコピーしていましたが、VS Code Copilot はデフォルトではその場所を認識しません。この問題は最新の main ブランチで修正されました。スクリプトはエージェントを ~/.github/agents と ~/.copilot/agents の両方にコピーし、インストール後に両方のパスを表示します。修正するには、最新の main ブランチをプルしてインストールスクリプトを再実行してください:git pull origin main && ./scripts/install.sh --tool copilot。VS Code の設定 chat.agentFilesLocations に適切なディレクトリが含まれていることを確認してください(デフォルトで ~/.copilot/agents が含まれているはずです)。

参照 Issue #185
トラブル対応
全てのエージェントではなく、エンジニアリング部門のエージェントだけをインストールする方法は?

マージ後のPR #157で導入された--divisionフラグを使用します。例:./scripts/install.sh --tool claude-code --division engineering。これにより、指定されたdivision内のすべてのエージェントがインストールされ、個別のエージェントフォルダはインストールされません。単一エージェントのインストールには、手動でのファイルコピーが必要になる場合があります。

参照 Issue #134