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

常见问题 (5)

故障排除
如何修复在全局安装OpenCode agents时缺失的agents目录?

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
故障排除
在运行 install.sh 之后,为什么我的 VS Code Copilot 智能体没有显示出来?

安装脚本先前将代理放置在~/.github/agents中,而不是VS Code默认的~/.copilot/agents。这已在最新的主分支中修复。使用git pull origin main更新仓库,并重新运行./scripts/install.sh --tool copilot。更新后的脚本会将代理复制到两个路径,并在完成时显示它们。

来源 Issue #218
故障排除
为什么我通过 agency-agents install script 安装的自定义代理没有出现在 VS Code Copilot 中?

安装脚本先前仅将 agent 文件复制到 ~/.github/agents,但 VS Code Copilot 默认不识别该位置。该问题已在最新的 main 分支中修复:脚本现在会将 agents 同时复制到 ~/.github/agents 和 ~/.copilot/agents,并在安装后显示这两个路径。要修复此问题,请拉取最新的 main 分支并重新运行安装脚本:git pull origin main && ./scripts/install.sh --tool copilot。确保你的 VS Code 设置 chat.agentFilesLocations 包含适当的目录(默认应包含 ~/.copilot/agents)。

来源 Issue #185
故障排除
如何只安装Engineering Division的agents,而不是所有agents?

使用PR #157中引入的--division标志(合并后)。示例:./scripts/install.sh --tool claude-code --division engineering。这将安装指定部门内的所有代理,而非单个代理文件夹。对于单个代理安装,可能需要手动复制文件。

来源 Issue #134