agency-agents-ai-specialists by aradotso/trending-skills
npx skills add https://github.com/aradotso/trending-skills --skill agency-agents-ai-specialists技能来自 ara.so — Daily 2026 技能集合。
一个精心策划的、包含 50 多个专业 AI 智能体人格的集合,适用于 Claude Code、Cursor、Aider、Windsurf、Copilot 等工具。每个智能体都拥有深厚的领域专业知识、独特的个性、定义明确的工作流程和可衡量的交付成果——涵盖工程、设计、营销、销售、付费媒体等领域。
git clone https://github.com/msitarzewski/agency-agents.git
cd agency-agents
# 将所有智能体复制到 Claude 的智能体目录
cp -r agency-agents/* ~/.claude/agents/
# 或者创建符号链接以实现自动更新
ln -s /path/to/agency-agents ~/.claude/agents/agency
然后在任何 Claude Code 会话中:
Hey Claude, activate Frontend Developer mode and help me build a React component
# 步骤 1:为所有支持的工具生成集成文件
./scripts/convert.sh
# 步骤 2:自动检测已安装的工具并进行交互式安装
./scripts/install.sh
# 或者针对特定工具
./scripts/install.sh --tool cursor
./scripts/install.sh --tool copilot
./scripts/install.sh --tool aider
./scripts/install.sh --tool windsurf
广告位招租
在这里展示您的产品或服务
触达数万 AI 开发者,精准高效
| 工具 | 安装路径 |
|---|---|
| Claude Code | ~/.claude/agents/ |
| Cursor | 项目根目录下的 .cursor/rules/ |
| Copilot | .github/copilot-instructions.md |
| Aider | .aider.conf.yml 或通过 --system-prompt 传递 |
| Windsurf | 项目根目录下的 .windsurf/rules/ |
engineering/engineering-frontend-developer.md React/Vue/Angular, UI, Core Web Vitals
engineering/engineering-backend-architect.md API design, databases, scalability
engineering/engineering-mobile-app-builder.md iOS/Android, React Native, Flutter
engineering/engineering-ai-engineer.md ML models, AI integration, data pipelines
engineering/engineering-devops-automator.md CI/CD, infra automation, cloud ops
engineering/engineering-rapid-prototyper.md MVPs, POCs, hackathon speed
engineering/engineering-senior-developer.md Laravel/Livewire, advanced patterns
engineering/engineering-security-engineer.md Threat modeling, secure code review
engineering/engineering-code-reviewer.md PR reviews, code quality gates
engineering/engineering-database-optimizer.md PostgreSQL/MySQL tuning, slow queries
engineering/engineering-git-workflow-master.md Branching, conventional commits
engineering/engineering-software-architect.md System design, DDD, trade-off analysis
engineering/engineering-sre.md SLOs, error budgets, chaos engineering
engineering/engineering-incident-response-commander.md Incident management, post-mortems
engineering/engineering-technical-writer.md Developer docs, API reference
engineering/engineering-data-engineer.md Data pipelines, lakehouse, ETL/ELT
design/design-ui-designer.md Visual design, component libraries
design/design-ux-researcher.md User testing, behavior analysis
design/design-ux-architect.md CSS systems, technical UX
design/design-brand-guardian.md Brand identity and consistency
design/design-whimsy-injector.md Micro-interactions, delight, Easter eggs
design/design-image-prompt-engineer.md Midjourney/DALL-E/SD prompts
design/design-inclusive-visuals-specialist.md Representation, bias mitigation
marketing/marketing-growth-hacker.md
marketing/marketing-content-creator.md
paid-media/paid-media-ppc-strategist.md
paid-media/paid-media-creative-strategist.md
sales/sales-outbound-strategist.md
sales/sales-deal-strategist.md
sales/sales-discovery-coach.md
# 在 Claude Code 聊天中:
Activate the Backend Architect agent and help me design a REST API for a multi-tenant SaaS app.
# 首先,设计系统
Activate the Software Architect agent. Design the domain model for an e-commerce platform.
# 然后实现
Now activate the Senior Developer agent and implement the Order aggregate in Laravel.
# 然后审查
Activate the Code Reviewer agent and review the implementation above.
# 在 Claude CLI 中将智能体作为系统提示传递
claude --system-prompt "$(cat ~/.claude/agents/engineering-frontend-developer.md)" \
"Build a responsive product card component in React with Tailwind CSS"
运行 ./scripts/install.sh --tool cursor 后,智能体规则将放置在 .cursor/rules/ 目录中。在聊天中引用它们:
@engineering-frontend-developer Build a data table component with sorting and pagination.
或者在 .cursor/rules/default.mdc 中设置默认规则:
---
alwaysApply: true
---
You are operating as the Senior Developer agent from The Agency.
Refer to .cursor/rules/engineering-senior-developer.md for your full persona and workflows.
# 使用单个智能体作为系统提示
aider --system-prompt "$(cat agency-agents/engineering/engineering-security-engineer.md)"
# 或者在 .aider.conf.yml 中引用
echo "system-prompt: agency-agents/engineering/engineering-devops-automator.md" >> .aider.conf.yml
./scripts/install.sh --tool windsurf
# 智能体被写入 .windsurf/rules/
在聊天中激活:
Use the UX Architect agent rules from .windsurf/rules/ to audit my CSS architecture.
# 1. 架构阶段
cat > task.md << 'EOF'
I need to add real-time notifications to my Node.js + React app.
Users should see in-app alerts and optionally receive email digests.
EOF
# 调用软件架构师
claude --system-prompt "$(cat ~/.claude/agents/engineering-software-architect.md)" < task.md
# 2. 后端实现
claude --system-prompt "$(cat ~/.claude/agents/engineering-backend-architect.md)" \
"Implement the notification service based on the architecture above using PostgreSQL LISTEN/NOTIFY and Socket.io"
# 3. 前端实现
claude --system-prompt "$(cat ~/.claude/agents/engineering-frontend-developer.md)" \
"Build the React notification bell component that connects to the Socket.io feed"
# 4. 安全审查
claude --system-prompt "$(cat ~/.claude/agents/engineering-security-engineer.md)" \
"Review the notification system implementation for security issues"
# 生成差异并传递给代码审查员智能体
git diff main..feature/payment-integration | \
claude --system-prompt "$(cat ~/.claude/agents/engineering-code-reviewer.md)" \
"Review this PR diff. Focus on security, correctness, and maintainability."
# 粘贴慢查询日志并激活数据库优化器
claude --system-prompt "$(cat ~/.claude/agents/engineering-database-optimizer.md)" << 'EOF'
Here is a slow query from our PostgreSQL logs (avg 4200ms):
SELECT u.*, p.*, o.*
FROM users u
LEFT JOIN profiles p ON p.user_id = u.id
LEFT JOIN orders o ON o.user_id = u.id
WHERE u.created_at > NOW() - INTERVAL '30 days'
ORDER BY o.created_at DESC;
Table sizes: users=2M rows, orders=18M rows. No indexes on created_at columns.
EOF
# 结构化事件启动
claude --system-prompt "$(cat ~/.claude/agents/engineering-incident-response-commander.md)" << 'EOF'
SEV-1 INCIDENT: Payment processing returning 503 errors since 14:32 UTC.
Error rate: 94%. Affected: checkout, subscription renewals.
Recent deploys: payment-service v2.4.1 at 14:15 UTC.
EOF
智能体文件遵循一致的 Markdown 结构:
# 🎯 Agent Name
## Identity
You are [Name], [role] at The Agency...
## Core Mission
[What this agent optimizes for]
## Personality & Communication Style
- [Trait 1]
- [Trait 2]
## Workflows
### [Workflow Name]
1. [Step 1]
2. [Step 2]
## Deliverables
- [Concrete output 1]
- [Concrete output 2]
## Success Metrics
- [Measurable outcome]
将自定义智能体保存到 agency-agents/custom/ 并重新运行 ./scripts/convert.sh 以生成工具集成文件。
# Fork 并克隆
git clone https://github.com/YOUR_USERNAME/agency-agents.git
# 在相应的部门创建你的智能体
cp engineering/engineering-senior-developer.md \
engineering/engineering-YOUR-SPECIALTY.md
# 编辑文件,然后测试它
claude --system-prompt "$(cat engineering/engineering-YOUR-SPECIALTY.md)" \
"Give me a sample deliverable to demonstrate your capabilities"
# 提交 PR
git checkout -b agent/your-specialty
git add engineering/engineering-YOUR-SPECIALTY.md
git commit -m "feat: add Your Specialty agent"
git push origin agent/your-specialty
Claude Code 中找不到智能体
ls ~/.claude/agents/
# 如果为空,重新运行:
cp -r /path/to/agency-agents/* ~/.claude/agents/
convert.sh 因权限错误而失败
chmod +x scripts/convert.sh scripts/install.sh
./scripts/convert.sh
Cursor 未拾取智能体规则
# 规则必须在项目根目录的 .cursor/rules/ 中
ls .cursor/rules/
# 重新运行针对 cursor 的安装程序
./scripts/install.sh --tool cursor
智能体人格未激活
claude config get agentsDir使用多个智能体时发生冲突
agency-agents/
├── engineering/ # 23 个工程专家智能体
├── design/ # 8 个设计专家智能体
├── marketing/ # 营销和增长智能体
├── sales/ # 8 个销售专家智能体
├── paid-media/ # 7 个付费媒体专家智能体
├── scripts/
│ ├── convert.sh # 生成工具特定的集成文件
│ └── install.sh # 交互式安装程序(自动检测工具)
└── README.md
每周安装量
406
代码仓库
GitHub Stars
10
首次出现
7 天前
安全审计
安装在
cursor404
gemini-cli402
kimi-cli402
codex402
opencode402
amp402
Skill by ara.so — Daily 2026 Skills collection.
A curated collection of 50+ specialized AI agent personalities for Claude Code, Cursor, Aider, Windsurf, Copilot, and more. Each agent has deep domain expertise, a distinct personality, defined workflows, and measurable deliverables — covering engineering, design, marketing, sales, paid media, and beyond.
git clone https://github.com/msitarzewski/agency-agents.git
cd agency-agents
# Copy all agents to Claude's agents directory
cp -r agency-agents/* ~/.claude/agents/
# Or symlink for auto-updates
ln -s /path/to/agency-agents ~/.claude/agents/agency
Then in any Claude Code session:
Hey Claude, activate Frontend Developer mode and help me build a React component
# Step 1: Generate integration files for all supported tools
./scripts/convert.sh
# Step 2: Auto-detect installed tools and install interactively
./scripts/install.sh
# Or target a specific tool
./scripts/install.sh --tool cursor
./scripts/install.sh --tool copilot
./scripts/install.sh --tool aider
./scripts/install.sh --tool windsurf
| Tool | Install path |
|---|---|
| Claude Code | ~/.claude/agents/ |
| Cursor | .cursor/rules/ in project root |
| Copilot | .github/copilot-instructions.md |
| Aider | .aider.conf.yml or pass via --system-prompt |
| Windsurf | .windsurf/rules/ in project root |
engineering/engineering-frontend-developer.md React/Vue/Angular, UI, Core Web Vitals
engineering/engineering-backend-architect.md API design, databases, scalability
engineering/engineering-mobile-app-builder.md iOS/Android, React Native, Flutter
engineering/engineering-ai-engineer.md ML models, AI integration, data pipelines
engineering/engineering-devops-automator.md CI/CD, infra automation, cloud ops
engineering/engineering-rapid-prototyper.md MVPs, POCs, hackathon speed
engineering/engineering-senior-developer.md Laravel/Livewire, advanced patterns
engineering/engineering-security-engineer.md Threat modeling, secure code review
engineering/engineering-code-reviewer.md PR reviews, code quality gates
engineering/engineering-database-optimizer.md PostgreSQL/MySQL tuning, slow queries
engineering/engineering-git-workflow-master.md Branching, conventional commits
engineering/engineering-software-architect.md System design, DDD, trade-off analysis
engineering/engineering-sre.md SLOs, error budgets, chaos engineering
engineering/engineering-incident-response-commander.md Incident management, post-mortems
engineering/engineering-technical-writer.md Developer docs, API reference
engineering/engineering-data-engineer.md Data pipelines, lakehouse, ETL/ELT
design/design-ui-designer.md Visual design, component libraries
design/design-ux-researcher.md User testing, behavior analysis
design/design-ux-architect.md CSS systems, technical UX
design/design-brand-guardian.md Brand identity and consistency
design/design-whimsy-injector.md Micro-interactions, delight, Easter eggs
design/design-image-prompt-engineer.md Midjourney/DALL-E/SD prompts
design/design-inclusive-visuals-specialist.md Representation, bias mitigation
marketing/marketing-growth-hacker.md
marketing/marketing-content-creator.md
paid-media/paid-media-ppc-strategist.md
paid-media/paid-media-creative-strategist.md
sales/sales-outbound-strategist.md
sales/sales-deal-strategist.md
sales/sales-discovery-coach.md
# In Claude Code chat:
Activate the Backend Architect agent and help me design a REST API for a multi-tenant SaaS app.
# First, design the system
Activate the Software Architect agent. Design the domain model for an e-commerce platform.
# Then implement
Now activate the Senior Developer agent and implement the Order aggregate in Laravel.
# Then review
Activate the Code Reviewer agent and review the implementation above.
# Pass an agent as a system prompt in Claude CLI
claude --system-prompt "$(cat ~/.claude/agents/engineering-frontend-developer.md)" \
"Build a responsive product card component in React with Tailwind CSS"
After running ./scripts/install.sh --tool cursor, agent rules land in .cursor/rules/. Reference them in chat:
@engineering-frontend-developer Build a data table component with sorting and pagination.
Or set a default rule in .cursor/rules/default.mdc:
---
alwaysApply: true
---
You are operating as the Senior Developer agent from The Agency.
Refer to .cursor/rules/engineering-senior-developer.md for your full persona and workflows.
# Use a single agent as the system prompt
aider --system-prompt "$(cat agency-agents/engineering/engineering-security-engineer.md)"
# Or reference in .aider.conf.yml
echo "system-prompt: agency-agents/engineering/engineering-devops-automator.md" >> .aider.conf.yml
./scripts/install.sh --tool windsurf
# Agents are written to .windsurf/rules/
Activate in chat:
Use the UX Architect agent rules from .windsurf/rules/ to audit my CSS architecture.
# 1. Architecture phase
cat > task.md << 'EOF'
I need to add real-time notifications to my Node.js + React app.
Users should see in-app alerts and optionally receive email digests.
EOF
# Invoke Software Architect
claude --system-prompt "$(cat ~/.claude/agents/engineering-software-architect.md)" < task.md
# 2. Backend implementation
claude --system-prompt "$(cat ~/.claude/agents/engineering-backend-architect.md)" \
"Implement the notification service based on the architecture above using PostgreSQL LISTEN/NOTIFY and Socket.io"
# 3. Frontend implementation
claude --system-prompt "$(cat ~/.claude/agents/engineering-frontend-developer.md)" \
"Build the React notification bell component that connects to the Socket.io feed"
# 4. Security review
claude --system-prompt "$(cat ~/.claude/agents/engineering-security-engineer.md)" \
"Review the notification system implementation for security issues"
# Generate a diff and pipe to the Code Reviewer agent
git diff main..feature/payment-integration | \
claude --system-prompt "$(cat ~/.claude/agents/engineering-code-reviewer.md)" \
"Review this PR diff. Focus on security, correctness, and maintainability."
# Paste slow query log and activate Database Optimizer
claude --system-prompt "$(cat ~/.claude/agents/engineering-database-optimizer.md)" << 'EOF'
Here is a slow query from our PostgreSQL logs (avg 4200ms):
SELECT u.*, p.*, o.*
FROM users u
LEFT JOIN profiles p ON p.user_id = u.id
LEFT JOIN orders o ON o.user_id = u.id
WHERE u.created_at > NOW() - INTERVAL '30 days'
ORDER BY o.created_at DESC;
Table sizes: users=2M rows, orders=18M rows. No indexes on created_at columns.
EOF
# Structured incident kick-off
claude --system-prompt "$(cat ~/.claude/agents/engineering-incident-response-commander.md)" << 'EOF'
SEV-1 INCIDENT: Payment processing returning 503 errors since 14:32 UTC.
Error rate: 94%. Affected: checkout, subscription renewals.
Recent deploys: payment-service v2.4.1 at 14:15 UTC.
EOF
Agent files follow a consistent markdown structure:
# 🎯 Agent Name
## Identity
You are [Name], [role] at The Agency...
## Core Mission
[What this agent optimizes for]
## Personality & Communication Style
- [Trait 1]
- [Trait 2]
## Workflows
### [Workflow Name]
1. [Step 1]
2. [Step 2]
## Deliverables
- [Concrete output 1]
- [Concrete output 2]
## Success Metrics
- [Measurable outcome]
Save custom agents to agency-agents/custom/ and re-run ./scripts/convert.sh to generate tool integrations.
# Fork and clone
git clone https://github.com/YOUR_USERNAME/agency-agents.git
# Create your agent in the appropriate division
cp engineering/engineering-senior-developer.md \
engineering/engineering-YOUR-SPECIALTY.md
# Edit the file, then test it
claude --system-prompt "$(cat engineering/engineering-YOUR-SPECIALTY.md)" \
"Give me a sample deliverable to demonstrate your capabilities"
# Submit a PR
git checkout -b agent/your-specialty
git add engineering/engineering-YOUR-SPECIALTY.md
git commit -m "feat: add Your Specialty agent"
git push origin agent/your-specialty
Agents not found in Claude Code
ls ~/.claude/agents/
# If empty, re-run:
cp -r /path/to/agency-agents/* ~/.claude/agents/
convert.sh fails with permission error
chmod +x scripts/convert.sh scripts/install.sh
./scripts/convert.sh
Cursor not picking up agent rules
# Rules must be in project root .cursor/rules/
ls .cursor/rules/
# Re-run installer targeting cursor
./scripts/install.sh --tool cursor
Agent personality not activating
claude config get agentsDirAgent conflicts when using multiple
agency-agents/
├── engineering/ # 23 engineering specialist agents
├── design/ # 8 design specialist agents
├── marketing/ # Marketing and growth agents
├── sales/ # 8 sales specialist agents
├── paid-media/ # 7 paid media specialist agents
├── scripts/
│ ├── convert.sh # Generate tool-specific integration files
│ └── install.sh # Interactive installer (auto-detects tools)
└── README.md
Weekly Installs
406
Repository
GitHub Stars
10
First Seen
7 days ago
Security Audits
Gen Agent Trust HubFailSocketPassSnykWarn
Installed on
cursor404
gemini-cli402
kimi-cli402
codex402
opencode402
amp402
React 组合模式指南:Vercel 组件架构最佳实践,提升代码可维护性
103,800 周安装
iOS无障碍开发指南:SwiftUI与UIKit辅助功能实现与测试
441 周安装
Todoist CLI API 使用指南:td 命令详解与任务管理自动化
441 周安装
Skill Forge 技能开发指南:Claude AI 专用技能创建与优化工作流程
441 周安装
飞书多维表格Bitable API使用指南:记录操作、字段管理与数据表管理
442 周安装
Playwright E2E测试指南:跨浏览器自动化测试最佳实践与配置
442 周安装
tsdown:基于Rolldown和Oxc的TypeScript打包工具,替代tsup,支持ESM/CJS双模式
443 周安装