@poolzin/pool-bot 2026.3.13 â 2026.3.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +87 -0
- package/dist/agents/checkpoint-manager.js +291 -0
- package/dist/agents/poolbot-tools.js +5 -0
- package/dist/agents/subagent-announce-reliability.js +160 -0
- package/dist/agents/tool-result-truncation.js +299 -0
- package/dist/agents/tools/nodes-file-tool.js +197 -0
- package/dist/build-info.json +3 -3
- package/dist/cli/config-cli.js +60 -0
- package/dist/cron/cron-improvements.js +195 -0
- package/dist/discord/discord-improvements.js +167 -0
- package/dist/gateway/auth-rate-limit.js +19 -0
- package/dist/gateway/auth.js +41 -0
- package/dist/gateway/gateway-improvements.js +294 -0
- package/dist/gateway/node-command-policy.js +7 -2
- package/dist/infra/net/ssrf.js +15 -2
- package/dist/infra/shell-security.js +201 -0
- package/dist/memory/memory-improvements.js +239 -0
- package/dist/node-host/runner.js +146 -79
- package/dist/security/prototype-pollution.js +141 -0
- package/dist/security/webhook-security.js +253 -0
- package/dist/shared/net/ip.js +52 -1
- package/dist/slack/slack-improvements.js +225 -0
- package/dist/telegram/telegram-improvements.js +220 -0
- package/dist/ui-plugins/ui-plugins-improvements.js +191 -0
- package/docs/ANALISE_OPENCLAW_PROFISSIONAL.md +520 -0
- package/docs/competitive-analysis.md +421 -0
- package/docs/implementation-analysis.md +393 -0
- package/docs/plans/2026-03-11-file-operations-security-hardening.md +307 -0
- package/docs/plans/2026-03-11-integracao-projetos-poolbot.md +666 -0
- package/extensions/agency-agents/README.md +301 -0
- package/extensions/agency-agents/agents/CONTRIBUTING.md +353 -0
- package/extensions/agency-agents/agents/README.md +602 -0
- package/extensions/agency-agents/agents/design/design-brand-guardian.md +320 -0
- package/extensions/agency-agents/agents/design/design-image-prompt-engineer.md +234 -0
- package/extensions/agency-agents/agents/design/design-ui-designer.md +381 -0
- package/extensions/agency-agents/agents/design/design-ux-architect.md +467 -0
- package/extensions/agency-agents/agents/design/design-ux-researcher.md +327 -0
- package/extensions/agency-agents/agents/design/design-visual-storyteller.md +147 -0
- package/extensions/agency-agents/agents/design/design-whimsy-injector.md +436 -0
- package/extensions/agency-agents/agents/engineering/engineering-ai-engineer.md +144 -0
- package/extensions/agency-agents/agents/engineering/engineering-backend-architect.md +233 -0
- package/extensions/agency-agents/agents/engineering/engineering-devops-automator.md +374 -0
- package/extensions/agency-agents/agents/engineering/engineering-frontend-developer.md +223 -0
- package/extensions/agency-agents/agents/engineering/engineering-mobile-app-builder.md +491 -0
- package/extensions/agency-agents/agents/engineering/engineering-rapid-prototyper.md +460 -0
- package/extensions/agency-agents/agents/engineering/engineering-security-engineer.md +275 -0
- package/extensions/agency-agents/agents/engineering/engineering-senior-developer.md +174 -0
- package/extensions/agency-agents/agents/examples/README.md +48 -0
- package/extensions/agency-agents/agents/examples/nexus-spatial-discovery.md +852 -0
- package/extensions/agency-agents/agents/examples/workflow-landing-page.md +119 -0
- package/extensions/agency-agents/agents/examples/workflow-startup-mvp.md +155 -0
- package/extensions/agency-agents/agents/integrations/README.md +117 -0
- package/extensions/agency-agents/agents/integrations/aider/README.md +38 -0
- package/extensions/agency-agents/agents/integrations/antigravity/README.md +49 -0
- package/extensions/agency-agents/agents/integrations/claude-code/README.md +31 -0
- package/extensions/agency-agents/agents/integrations/cursor/README.md +38 -0
- package/extensions/agency-agents/agents/integrations/gemini-cli/README.md +36 -0
- package/extensions/agency-agents/agents/integrations/opencode/README.md +58 -0
- package/extensions/agency-agents/agents/integrations/windsurf/README.md +26 -0
- package/extensions/agency-agents/agents/marketing/marketing-app-store-optimizer.md +319 -0
- package/extensions/agency-agents/agents/marketing/marketing-content-creator.md +52 -0
- package/extensions/agency-agents/agents/marketing/marketing-growth-hacker.md +52 -0
- package/extensions/agency-agents/agents/marketing/marketing-instagram-curator.md +111 -0
- package/extensions/agency-agents/agents/marketing/marketing-reddit-community-builder.md +121 -0
- package/extensions/agency-agents/agents/marketing/marketing-social-media-strategist.md +123 -0
- package/extensions/agency-agents/agents/marketing/marketing-tiktok-strategist.md +123 -0
- package/extensions/agency-agents/agents/marketing/marketing-twitter-engager.md +124 -0
- package/extensions/agency-agents/agents/marketing/marketing-wechat-official-account.md +143 -0
- package/extensions/agency-agents/agents/marketing/marketing-xiaohongshu-specialist.md +136 -0
- package/extensions/agency-agents/agents/marketing/marketing-zhihu-strategist.md +160 -0
- package/extensions/agency-agents/agents/product/product-feedback-synthesizer.md +117 -0
- package/extensions/agency-agents/agents/product/product-sprint-prioritizer.md +152 -0
- package/extensions/agency-agents/agents/product/product-trend-researcher.md +157 -0
- package/extensions/agency-agents/agents/project-management/project-management-experiment-tracker.md +196 -0
- package/extensions/agency-agents/agents/project-management/project-management-project-shepherd.md +192 -0
- package/extensions/agency-agents/agents/project-management/project-management-studio-operations.md +198 -0
- package/extensions/agency-agents/agents/project-management/project-management-studio-producer.md +201 -0
- package/extensions/agency-agents/agents/project-management/project-manager-senior.md +133 -0
- package/extensions/agency-agents/agents/scripts/convert.sh +362 -0
- package/extensions/agency-agents/agents/scripts/install.sh +465 -0
- package/extensions/agency-agents/agents/scripts/lint-agents.sh +115 -0
- package/extensions/agency-agents/agents/spatial-computing/macos-spatial-metal-engineer.md +335 -0
- package/extensions/agency-agents/agents/spatial-computing/terminal-integration-specialist.md +68 -0
- package/extensions/agency-agents/agents/spatial-computing/visionos-spatial-engineer.md +52 -0
- package/extensions/agency-agents/agents/spatial-computing/xr-cockpit-interaction-specialist.md +30 -0
- package/extensions/agency-agents/agents/spatial-computing/xr-immersive-developer.md +30 -0
- package/extensions/agency-agents/agents/spatial-computing/xr-interface-architect.md +30 -0
- package/extensions/agency-agents/agents/specialized/agentic-identity-trust.md +367 -0
- package/extensions/agency-agents/agents/specialized/agents-orchestrator.md +365 -0
- package/extensions/agency-agents/agents/specialized/data-analytics-reporter.md +52 -0
- package/extensions/agency-agents/agents/specialized/data-consolidation-agent.md +58 -0
- package/extensions/agency-agents/agents/specialized/lsp-index-engineer.md +312 -0
- package/extensions/agency-agents/agents/specialized/report-distribution-agent.md +63 -0
- package/extensions/agency-agents/agents/specialized/sales-data-extraction-agent.md +65 -0
- package/extensions/agency-agents/agents/strategy/EXECUTIVE-BRIEF.md +95 -0
- package/extensions/agency-agents/agents/strategy/QUICKSTART.md +194 -0
- package/extensions/agency-agents/agents/strategy/coordination/agent-activation-prompts.md +401 -0
- package/extensions/agency-agents/agents/strategy/coordination/handoff-templates.md +357 -0
- package/extensions/agency-agents/agents/strategy/nexus-strategy.md +1110 -0
- package/extensions/agency-agents/agents/strategy/playbooks/phase-0-discovery.md +178 -0
- package/extensions/agency-agents/agents/strategy/playbooks/phase-1-strategy.md +238 -0
- package/extensions/agency-agents/agents/strategy/playbooks/phase-2-foundation.md +278 -0
- package/extensions/agency-agents/agents/strategy/playbooks/phase-3-build.md +286 -0
- package/extensions/agency-agents/agents/strategy/playbooks/phase-4-hardening.md +332 -0
- package/extensions/agency-agents/agents/strategy/playbooks/phase-5-launch.md +277 -0
- package/extensions/agency-agents/agents/strategy/playbooks/phase-6-operate.md +318 -0
- package/extensions/agency-agents/agents/strategy/runbooks/scenario-enterprise-feature.md +157 -0
- package/extensions/agency-agents/agents/strategy/runbooks/scenario-incident-response.md +217 -0
- package/extensions/agency-agents/agents/strategy/runbooks/scenario-marketing-campaign.md +187 -0
- package/extensions/agency-agents/agents/strategy/runbooks/scenario-startup-mvp.md +154 -0
- package/extensions/agency-agents/agents/support/support-analytics-reporter.md +363 -0
- package/extensions/agency-agents/agents/support/support-executive-summary-generator.md +210 -0
- package/extensions/agency-agents/agents/support/support-finance-tracker.md +440 -0
- package/extensions/agency-agents/agents/support/support-infrastructure-maintainer.md +616 -0
- package/extensions/agency-agents/agents/support/support-legal-compliance-checker.md +586 -0
- package/extensions/agency-agents/agents/support/support-support-responder.md +583 -0
- package/extensions/agency-agents/agents/testing/testing-accessibility-auditor.md +313 -0
- package/extensions/agency-agents/agents/testing/testing-api-tester.md +304 -0
- package/extensions/agency-agents/agents/testing/testing-evidence-collector.md +208 -0
- package/extensions/agency-agents/agents/testing/testing-performance-benchmarker.md +266 -0
- package/extensions/agency-agents/agents/testing/testing-reality-checker.md +236 -0
- package/extensions/agency-agents/agents/testing/testing-test-results-analyzer.md +303 -0
- package/extensions/agency-agents/agents/testing/testing-tool-evaluator.md +392 -0
- package/extensions/agency-agents/agents/testing/testing-workflow-optimizer.md +448 -0
- package/extensions/agency-agents/index.ts +733 -0
- package/extensions/agency-agents/node_modules/.bin/jiti +21 -0
- package/extensions/agency-agents/node_modules/.bin/tsc +21 -0
- package/extensions/agency-agents/node_modules/.bin/tsserver +21 -0
- package/extensions/agency-agents/node_modules/.bin/tsx +21 -0
- package/extensions/agency-agents/node_modules/.bin/vite +21 -0
- package/extensions/agency-agents/node_modules/.bin/vitest +21 -0
- package/extensions/agency-agents/node_modules/.bin/yaml +21 -0
- package/extensions/agency-agents/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -0
- package/extensions/agency-agents/package.json +25 -0
- package/extensions/agency-agents/poolbot.plugin.json +11 -0
- package/extensions/agency-agents/src/AgencyAgentsService.test.ts +443 -0
- package/extensions/agency-agents/src/AgencyAgentsService.ts +288 -0
- package/extensions/agency-agents/src/types.ts +147 -0
- package/extensions/agency-agents/vitest.config.ts +8 -0
- package/extensions/hexstrike-ai/README.md +98 -0
- package/extensions/hexstrike-ai/node_modules/.bin/tsc +21 -0
- package/extensions/hexstrike-ai/node_modules/.bin/tsserver +21 -0
- package/extensions/hexstrike-ai/package.json +29 -0
- package/extensions/hexstrike-ai/poolbot.plugin.json +31 -0
- package/extensions/hexstrike-ai/src/client.ts +91 -0
- package/extensions/hexstrike-ai/src/index.ts +170 -0
- package/extensions/hexstrike-ai/src/server/hexstrike_mcp.py +5470 -0
- package/extensions/hexstrike-ai/src/server/hexstrike_server.py +17289 -0
- package/extensions/hexstrike-ai/src/server/requirements.txt +84 -0
- package/extensions/hexstrike-ai/src/server-manager.ts +83 -0
- package/extensions/hexstrike-ai/tsconfig.json +20 -0
- package/extensions/page-agent/README.md +159 -0
- package/extensions/page-agent/index.ts +595 -0
- package/extensions/page-agent/node_modules/.bin/jiti +21 -0
- package/extensions/page-agent/node_modules/.bin/playwright +21 -0
- package/extensions/page-agent/node_modules/.bin/tsc +21 -0
- package/extensions/page-agent/node_modules/.bin/tsserver +21 -0
- package/extensions/page-agent/node_modules/.bin/tsx +21 -0
- package/extensions/page-agent/node_modules/.bin/vitest +21 -0
- package/extensions/page-agent/node_modules/.bin/yaml +21 -0
- package/extensions/page-agent/package.json +43 -0
- package/extensions/page-agent/poolbot.plugin.json +24 -0
- package/extensions/page-agent/src/PageAgentService.test.ts +517 -0
- package/extensions/page-agent/src/PageAgentService.ts +636 -0
- package/extensions/page-agent/src/PoolBotPageController.test.ts +358 -0
- package/extensions/page-agent/src/PoolBotPageController.ts +245 -0
- package/extensions/page-agent/src/index.ts +20 -0
- package/extensions/page-agent/src/tools.test.ts +231 -0
- package/extensions/page-agent/src/tools.ts +167 -0
- package/extensions/page-agent/src/types.ts +198 -0
- package/extensions/xyops/README.md +227 -0
- package/extensions/xyops/index.ts +342 -0
- package/extensions/xyops/node_modules/.bin/jiti +21 -0
- package/extensions/xyops/node_modules/.bin/tsc +21 -0
- package/extensions/xyops/node_modules/.bin/tsserver +21 -0
- package/extensions/xyops/node_modules/.bin/tsx +21 -0
- package/extensions/xyops/node_modules/.bin/vitest +21 -0
- package/extensions/xyops/node_modules/.bin/yaml +21 -0
- package/extensions/xyops/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -0
- package/extensions/xyops/package.json +39 -0
- package/extensions/xyops/poolbot.plugin.json +21 -0
- package/extensions/xyops/src/client.test.ts +467 -0
- package/extensions/xyops/src/client.ts +157 -0
- package/extensions/xyops/src/types.ts +147 -0
- package/extensions/xyops/vitest.config.ts +8 -0
- package/package.json +1 -1
|
@@ -0,0 +1,602 @@
|
|
|
1
|
+
# đ The Agency: AI Specialists Ready to Transform Your Workflow
|
|
2
|
+
|
|
3
|
+
> **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.
|
|
4
|
+
|
|
5
|
+
[](https://github.com/msitarzewski/agency-agents)
|
|
6
|
+
[](https://opensource.org/licenses/MIT)
|
|
7
|
+
[](https://makeapullrequest.com)
|
|
8
|
+
[](https://github.com/sponsors/msitarzewski)
|
|
9
|
+
|
|
10
|
+
---
|
|
11
|
+
|
|
12
|
+
## đ What Is This?
|
|
13
|
+
|
|
14
|
+
Born from a Reddit thread and months of iteration, **The Agency** is a growing collection of meticulously crafted AI agent personalities. Each agent is:
|
|
15
|
+
|
|
16
|
+
- **đ¯ Specialized**: Deep expertise in their domain (not generic prompt templates)
|
|
17
|
+
- **đ§ Personality-Driven**: Unique voice, communication style, and approach
|
|
18
|
+
- **đ Deliverable-Focused**: Real code, processes, and measurable outcomes
|
|
19
|
+
- **â
Production-Ready**: Battle-tested workflows and success metrics
|
|
20
|
+
|
|
21
|
+
**Think of it as**: Assembling your dream team, except they're AI specialists who never sleep, never complain, and always deliver.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## ⥠Quick Start
|
|
26
|
+
|
|
27
|
+
### Option 1: Use with Claude Code (Recommended)
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
# Copy agents to your Claude Code directory
|
|
31
|
+
cp -r agency-agents/* ~/.claude/agents/
|
|
32
|
+
|
|
33
|
+
# Now activate any agent in your Claude Code sessions:
|
|
34
|
+
# "Hey Claude, activate Frontend Developer mode and help me build a React component"
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
### Option 2: Use as Reference
|
|
38
|
+
|
|
39
|
+
Each agent file contains:
|
|
40
|
+
- Identity & personality traits
|
|
41
|
+
- Core mission & workflows
|
|
42
|
+
- Technical deliverables with code examples
|
|
43
|
+
- Success metrics & communication style
|
|
44
|
+
|
|
45
|
+
Browse the agents below and copy/adapt the ones you need!
|
|
46
|
+
|
|
47
|
+
### Option 3: Use with Other Tools (Cursor, Aider, Windsurf, Gemini CLI, OpenCode)
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
# Step 1 -- generate integration files for all supported tools
|
|
51
|
+
./scripts/convert.sh
|
|
52
|
+
|
|
53
|
+
# Step 2 -- install interactively (auto-detects what you have installed)
|
|
54
|
+
./scripts/install.sh
|
|
55
|
+
|
|
56
|
+
# Or target a specific tool directly
|
|
57
|
+
./scripts/install.sh --tool cursor
|
|
58
|
+
./scripts/install.sh --tool aider
|
|
59
|
+
./scripts/install.sh --tool windsurf
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
See the [Multi-Tool Integrations](#-multi-tool-integrations) section below for full details.
|
|
63
|
+
|
|
64
|
+
---
|
|
65
|
+
|
|
66
|
+
## đ¨ The Agency Roster
|
|
67
|
+
|
|
68
|
+
### đģ Engineering Division
|
|
69
|
+
|
|
70
|
+
Building the future, one commit at a time.
|
|
71
|
+
|
|
72
|
+
| Agent | Specialty | When to Use |
|
|
73
|
+
|-------|-----------|-------------|
|
|
74
|
+
| đ¨ [Frontend Developer](engineering/engineering-frontend-developer.md) | React/Vue/Angular, UI implementation, performance | Modern web apps, pixel-perfect UIs, Core Web Vitals optimization |
|
|
75
|
+
| đī¸ [Backend Architect](engineering/engineering-backend-architect.md) | API design, database architecture, scalability | Server-side systems, microservices, cloud infrastructure |
|
|
76
|
+
| đą [Mobile App Builder](engineering/engineering-mobile-app-builder.md) | iOS/Android, React Native, Flutter | Native and cross-platform mobile applications |
|
|
77
|
+
| đ¤ [AI Engineer](engineering/engineering-ai-engineer.md) | ML models, deployment, AI integration | Machine learning features, data pipelines, AI-powered apps |
|
|
78
|
+
| đ [DevOps Automator](engineering/engineering-devops-automator.md) | CI/CD, infrastructure automation, cloud ops | Pipeline development, deployment automation, monitoring |
|
|
79
|
+
| ⥠[Rapid Prototyper](engineering/engineering-rapid-prototyper.md) | Fast POC development, MVPs | Quick proof-of-concepts, hackathon projects, fast iteration |
|
|
80
|
+
| đ [Senior Developer](engineering/engineering-senior-developer.md) | Laravel/Livewire, advanced patterns | Complex implementations, architecture decisions |
|
|
81
|
+
| đ [Security Engineer](engineering/engineering-security-engineer.md) | Threat modeling, secure code review, security architecture | Application security, vulnerability assessment, security CI/CD |
|
|
82
|
+
|
|
83
|
+
### đ¨ Design Division
|
|
84
|
+
|
|
85
|
+
Making it beautiful, usable, and delightful.
|
|
86
|
+
|
|
87
|
+
| Agent | Specialty | When to Use |
|
|
88
|
+
|-------|-----------|-------------|
|
|
89
|
+
| đ¯ [UI Designer](design/design-ui-designer.md) | Visual design, component libraries, design systems | Interface creation, brand consistency, component design |
|
|
90
|
+
| đ [UX Researcher](design/design-ux-researcher.md) | User testing, behavior analysis, research | Understanding users, usability testing, design insights |
|
|
91
|
+
| đī¸ [UX Architect](design/design-ux-architect.md) | Technical architecture, CSS systems, implementation | Developer-friendly foundations, implementation guidance |
|
|
92
|
+
| đ [Brand Guardian](design/design-brand-guardian.md) | Brand identity, consistency, positioning | Brand strategy, identity development, guidelines |
|
|
93
|
+
| đ [Visual Storyteller](design/design-visual-storyteller.md) | Visual narratives, multimedia content | Compelling visual stories, brand storytelling |
|
|
94
|
+
| ⨠[Whimsy Injector](design/design-whimsy-injector.md) | Personality, delight, playful interactions | Adding joy, micro-interactions, Easter eggs, brand personality |
|
|
95
|
+
| đˇ [Image Prompt Engineer](design/design-image-prompt-engineer.md) | AI image generation prompts, photography | Photography prompts for Midjourney, DALL-E, Stable Diffusion |
|
|
96
|
+
|
|
97
|
+
### đĸ Marketing Division
|
|
98
|
+
|
|
99
|
+
Growing your audience, one authentic interaction at a time.
|
|
100
|
+
|
|
101
|
+
| Agent | Specialty | When to Use |
|
|
102
|
+
|-------|-----------|-------------|
|
|
103
|
+
| đ [Growth Hacker](marketing/marketing-growth-hacker.md) | Rapid user acquisition, viral loops, experiments | Explosive growth, user acquisition, conversion optimization |
|
|
104
|
+
| đ [Content Creator](marketing/marketing-content-creator.md) | Multi-platform content, editorial calendars | Content strategy, copywriting, brand storytelling |
|
|
105
|
+
| đĻ [Twitter Engager](marketing/marketing-twitter-engager.md) | Real-time engagement, thought leadership | Twitter strategy, LinkedIn campaigns, professional social |
|
|
106
|
+
| đą [TikTok Strategist](marketing/marketing-tiktok-strategist.md) | Viral content, algorithm optimization | TikTok growth, viral content, Gen Z/Millennial audience |
|
|
107
|
+
| đ¸ [Instagram Curator](marketing/marketing-instagram-curator.md) | Visual storytelling, community building | Instagram strategy, aesthetic development, visual content |
|
|
108
|
+
| đ¤ [Reddit Community Builder](marketing/marketing-reddit-community-builder.md) | Authentic engagement, value-driven content | Reddit strategy, community trust, authentic marketing |
|
|
109
|
+
| đą [App Store Optimizer](marketing/marketing-app-store-optimizer.md) | ASO, conversion optimization, discoverability | App marketing, store optimization, app growth |
|
|
110
|
+
| đ [Social Media Strategist](marketing/marketing-social-media-strategist.md) | Cross-platform strategy, campaigns | Overall social strategy, multi-platform campaigns |
|
|
111
|
+
| đ [Xiaohongshu Specialist](marketing/marketing-xiaohongshu-specialist.md) | Lifestyle content, trend-driven strategy | Xiaohongshu growth, aesthetic storytelling, Gen Z audience |
|
|
112
|
+
| đŦ [WeChat Official Account Manager](marketing/marketing-wechat-official-account.md) | Subscriber engagement, content marketing | WeChat OA strategy, community building, conversion optimization |
|
|
113
|
+
| đ§ [Zhihu Strategist](marketing/marketing-zhihu-strategist.md) | Thought leadership, knowledge-driven engagement | Zhihu authority building, Q&A strategy, lead generation |
|
|
114
|
+
|
|
115
|
+
### đ Product Division
|
|
116
|
+
|
|
117
|
+
Building the right thing at the right time.
|
|
118
|
+
|
|
119
|
+
| Agent | Specialty | When to Use |
|
|
120
|
+
|-------|-----------|-------------|
|
|
121
|
+
| đ¯ [Sprint Prioritizer](product/product-sprint-prioritizer.md) | Agile planning, feature prioritization | Sprint planning, resource allocation, backlog management |
|
|
122
|
+
| đ [Trend Researcher](product/product-trend-researcher.md) | Market intelligence, competitive analysis | Market research, opportunity assessment, trend identification |
|
|
123
|
+
| đŦ [Feedback Synthesizer](product/product-feedback-synthesizer.md) | User feedback analysis, insights extraction | Feedback analysis, user insights, product priorities |
|
|
124
|
+
|
|
125
|
+
### đŦ Project Management Division
|
|
126
|
+
|
|
127
|
+
Keeping the trains running on time (and under budget).
|
|
128
|
+
|
|
129
|
+
| Agent | Specialty | When to Use |
|
|
130
|
+
|-------|-----------|-------------|
|
|
131
|
+
| đŦ [Studio Producer](project-management/project-management-studio-producer.md) | High-level orchestration, portfolio management | Multi-project oversight, strategic alignment, resource allocation |
|
|
132
|
+
| đ [Project Shepherd](project-management/project-management-project-shepherd.md) | Cross-functional coordination, timeline management | End-to-end project coordination, stakeholder management |
|
|
133
|
+
| âī¸ [Studio Operations](project-management/project-management-studio-operations.md) | Day-to-day efficiency, process optimization | Operational excellence, team support, productivity |
|
|
134
|
+
| đ§Ē [Experiment Tracker](project-management/project-management-experiment-tracker.md) | A/B tests, hypothesis validation | Experiment management, data-driven decisions, testing |
|
|
135
|
+
| đ [Senior Project Manager](project-management/project-manager-senior.md) | Realistic scoping, task conversion | Converting specs to tasks, scope management |
|
|
136
|
+
|
|
137
|
+
### đ§Ē Testing Division
|
|
138
|
+
|
|
139
|
+
Breaking things so users don't have to.
|
|
140
|
+
|
|
141
|
+
| Agent | Specialty | When to Use |
|
|
142
|
+
|-------|-----------|-------------|
|
|
143
|
+
| đ¸ [Evidence Collector](testing/testing-evidence-collector.md) | Screenshot-based QA, visual proof | UI testing, visual verification, bug documentation |
|
|
144
|
+
| đ [Reality Checker](testing/testing-reality-checker.md) | Evidence-based certification, quality gates | Production readiness, quality approval, release certification |
|
|
145
|
+
| đ [Test Results Analyzer](testing/testing-test-results-analyzer.md) | Test evaluation, metrics analysis | Test output analysis, quality insights, coverage reporting |
|
|
146
|
+
| ⥠[Performance Benchmarker](testing/testing-performance-benchmarker.md) | Performance testing, optimization | Speed testing, load testing, performance tuning |
|
|
147
|
+
| đ [API Tester](testing/testing-api-tester.md) | API validation, integration testing | API testing, endpoint verification, integration QA |
|
|
148
|
+
| đ ī¸ [Tool Evaluator](testing/testing-tool-evaluator.md) | Technology assessment, tool selection | Evaluating tools, software recommendations, tech decisions |
|
|
149
|
+
| đ [Workflow Optimizer](testing/testing-workflow-optimizer.md) | Process analysis, workflow improvement | Process optimization, efficiency gains, automation opportunities |
|
|
150
|
+
| âŋ [Accessibility Auditor](testing/testing-accessibility-auditor.md) | WCAG auditing, assistive technology testing | Accessibility compliance, screen reader testing, inclusive design verification |
|
|
151
|
+
|
|
152
|
+
### đ Support Division
|
|
153
|
+
|
|
154
|
+
The backbone of the operation.
|
|
155
|
+
|
|
156
|
+
| Agent | Specialty | When to Use |
|
|
157
|
+
|-------|-----------|-------------|
|
|
158
|
+
| đŦ [Support Responder](support/support-support-responder.md) | Customer service, issue resolution | Customer support, user experience, support operations |
|
|
159
|
+
| đ [Analytics Reporter](support/support-analytics-reporter.md) | Data analysis, dashboards, insights | Business intelligence, KPI tracking, data visualization |
|
|
160
|
+
| đ° [Finance Tracker](support/support-finance-tracker.md) | Financial planning, budget management | Financial analysis, cash flow, business performance |
|
|
161
|
+
| đī¸ [Infrastructure Maintainer](support/support-infrastructure-maintainer.md) | System reliability, performance optimization | Infrastructure management, system operations, monitoring |
|
|
162
|
+
| âī¸ [Legal Compliance Checker](support/support-legal-compliance-checker.md) | Compliance, regulations, legal review | Legal compliance, regulatory requirements, risk management |
|
|
163
|
+
| đ [Executive Summary Generator](support/support-executive-summary-generator.md) | C-suite communication, strategic summaries | Executive reporting, strategic communication, decision support |
|
|
164
|
+
|
|
165
|
+
### đĨŊ Spatial Computing Division
|
|
166
|
+
|
|
167
|
+
Building the immersive future.
|
|
168
|
+
|
|
169
|
+
| Agent | Specialty | When to Use |
|
|
170
|
+
|-------|-----------|-------------|
|
|
171
|
+
| đī¸ [XR Interface Architect](spatial-computing/xr-interface-architect.md) | Spatial interaction design, immersive UX | AR/VR/XR interface design, spatial computing UX |
|
|
172
|
+
| đģ [macOS Spatial/Metal Engineer](spatial-computing/macos-spatial-metal-engineer.md) | Swift, Metal, high-performance 3D | macOS spatial computing, Vision Pro native apps |
|
|
173
|
+
| đ [XR Immersive Developer](spatial-computing/xr-immersive-developer.md) | WebXR, browser-based AR/VR | Browser-based immersive experiences, WebXR apps |
|
|
174
|
+
| đŽ [XR Cockpit Interaction Specialist](spatial-computing/xr-cockpit-interaction-specialist.md) | Cockpit-based controls, immersive systems | Cockpit control systems, immersive control interfaces |
|
|
175
|
+
| đ [visionOS Spatial Engineer](spatial-computing/visionos-spatial-engineer.md) | Apple Vision Pro development | Vision Pro apps, spatial computing experiences |
|
|
176
|
+
| đ [Terminal Integration Specialist](spatial-computing/terminal-integration-specialist.md) | Terminal integration, command-line tools | CLI tools, terminal workflows, developer tools |
|
|
177
|
+
|
|
178
|
+
### đ¯ Specialized Division
|
|
179
|
+
|
|
180
|
+
The unique specialists who don't fit in a box.
|
|
181
|
+
|
|
182
|
+
| Agent | Specialty | When to Use |
|
|
183
|
+
|-------|-----------|-------------|
|
|
184
|
+
| đ [Agents Orchestrator](specialized/agents-orchestrator.md) | Multi-agent coordination, workflow management | Complex projects requiring multiple agent coordination |
|
|
185
|
+
| đ [Data Analytics Reporter](specialized/data-analytics-reporter.md) | Business intelligence, data insights | Deep data analysis, business metrics, strategic insights |
|
|
186
|
+
| đ [LSP/Index Engineer](specialized/lsp-index-engineer.md) | Language Server Protocol, code intelligence | Code intelligence systems, LSP implementation, semantic indexing |
|
|
187
|
+
| đĨ [Sales Data Extraction Agent](specialized/sales-data-extraction-agent.md) | Excel monitoring, sales metric extraction | Sales data ingestion, MTD/YTD/Year End metrics |
|
|
188
|
+
| đ [Data Consolidation Agent](specialized/data-consolidation-agent.md) | Sales data aggregation, dashboard reports | Territory summaries, rep performance, pipeline snapshots |
|
|
189
|
+
| đŦ [Report Distribution Agent](specialized/report-distribution-agent.md) | Automated report delivery | Territory-based report distribution, scheduled sends |
|
|
190
|
+
| đ [Agentic Identity & Trust Architect](specialized/agentic-identity-trust.md) | Agent identity, authentication, trust verification | Multi-agent identity systems, agent authorization, audit trails |
|
|
191
|
+
|
|
192
|
+
---
|
|
193
|
+
|
|
194
|
+
## đ¯ Real-World Use Cases
|
|
195
|
+
|
|
196
|
+
### Scenario 1: Building a Startup MVP
|
|
197
|
+
|
|
198
|
+
**Your Team**:
|
|
199
|
+
1. đ¨ **Frontend Developer** - Build the React app
|
|
200
|
+
2. đī¸ **Backend Architect** - Design the API and database
|
|
201
|
+
3. đ **Growth Hacker** - Plan user acquisition
|
|
202
|
+
4. ⥠**Rapid Prototyper** - Fast iteration cycles
|
|
203
|
+
5. đ **Reality Checker** - Ensure quality before launch
|
|
204
|
+
|
|
205
|
+
**Result**: Ship faster with specialized expertise at every stage.
|
|
206
|
+
|
|
207
|
+
---
|
|
208
|
+
|
|
209
|
+
### Scenario 2: Marketing Campaign Launch
|
|
210
|
+
|
|
211
|
+
**Your Team**:
|
|
212
|
+
1. đ **Content Creator** - Develop campaign content
|
|
213
|
+
2. đĻ **Twitter Engager** - Twitter strategy and execution
|
|
214
|
+
3. đ¸ **Instagram Curator** - Visual content and stories
|
|
215
|
+
4. đ¤ **Reddit Community Builder** - Authentic community engagement
|
|
216
|
+
5. đ **Analytics Reporter** - Track and optimize performance
|
|
217
|
+
|
|
218
|
+
**Result**: Multi-channel coordinated campaign with platform-specific expertise.
|
|
219
|
+
|
|
220
|
+
---
|
|
221
|
+
|
|
222
|
+
### Scenario 3: Enterprise Feature Development
|
|
223
|
+
|
|
224
|
+
**Your Team**:
|
|
225
|
+
1. đ **Senior Project Manager** - Scope and task planning
|
|
226
|
+
2. đ **Senior Developer** - Complex implementation
|
|
227
|
+
3. đ¨ **UI Designer** - Design system and components
|
|
228
|
+
4. đ§Ē **Experiment Tracker** - A/B test planning
|
|
229
|
+
5. đ¸ **Evidence Collector** - Quality verification
|
|
230
|
+
6. đ **Reality Checker** - Production readiness
|
|
231
|
+
|
|
232
|
+
**Result**: Enterprise-grade delivery with quality gates and documentation.
|
|
233
|
+
|
|
234
|
+
---
|
|
235
|
+
|
|
236
|
+
### Scenario 4: Full Agency Product Discovery
|
|
237
|
+
|
|
238
|
+
**Your Team**: All 8 divisions working in parallel on a single mission.
|
|
239
|
+
|
|
240
|
+
See the **[Nexus Spatial Discovery Exercise](examples/nexus-spatial-discovery.md)** -- a complete example where 8 agents (Product Trend Researcher, Backend Architect, Brand Guardian, Growth Hacker, Support Responder, UX Researcher, Project Shepherd, and XR Interface Architect) were deployed simultaneously to evaluate a software opportunity and produce a unified product plan covering market validation, technical architecture, brand strategy, go-to-market, support systems, UX research, project execution, and spatial UI design.
|
|
241
|
+
|
|
242
|
+
**Result**: Comprehensive, cross-functional product blueprint produced in a single session. [More examples](examples/).
|
|
243
|
+
|
|
244
|
+
---
|
|
245
|
+
|
|
246
|
+
## đ¤ Contributing
|
|
247
|
+
|
|
248
|
+
We welcome contributions! Here's how you can help:
|
|
249
|
+
|
|
250
|
+
### Add a New Agent
|
|
251
|
+
|
|
252
|
+
1. Fork the repository
|
|
253
|
+
2. Create a new agent file in the appropriate category
|
|
254
|
+
3. Follow the agent template structure:
|
|
255
|
+
- Frontmatter with name, description, color
|
|
256
|
+
- Identity & Memory section
|
|
257
|
+
- Core Mission
|
|
258
|
+
- Critical Rules (domain-specific)
|
|
259
|
+
- Technical Deliverables with examples
|
|
260
|
+
- Workflow Process
|
|
261
|
+
- Success Metrics
|
|
262
|
+
4. Submit a PR with your agent
|
|
263
|
+
|
|
264
|
+
### Improve Existing Agents
|
|
265
|
+
|
|
266
|
+
- Add real-world examples
|
|
267
|
+
- Enhance code samples
|
|
268
|
+
- Update success metrics
|
|
269
|
+
- Improve workflows
|
|
270
|
+
|
|
271
|
+
### Share Your Success Stories
|
|
272
|
+
|
|
273
|
+
Have you used these agents successfully? Share your story in the [Discussions](https://github.com/msitarzewski/agency-agents/discussions)!
|
|
274
|
+
|
|
275
|
+
---
|
|
276
|
+
|
|
277
|
+
## đ Agent Design Philosophy
|
|
278
|
+
|
|
279
|
+
Each agent is designed with:
|
|
280
|
+
|
|
281
|
+
1. **đ Strong Personality**: Not generic templates - real character and voice
|
|
282
|
+
2. **đ Clear Deliverables**: Concrete outputs, not vague guidance
|
|
283
|
+
3. **â
Success Metrics**: Measurable outcomes and quality standards
|
|
284
|
+
4. **đ Proven Workflows**: Step-by-step processes that work
|
|
285
|
+
5. **đĄ Learning Memory**: Pattern recognition and continuous improvement
|
|
286
|
+
|
|
287
|
+
---
|
|
288
|
+
|
|
289
|
+
## đ What Makes This Special?
|
|
290
|
+
|
|
291
|
+
### Unlike Generic AI Prompts:
|
|
292
|
+
- â Generic "Act as a developer" prompts
|
|
293
|
+
- â
Deep specialization with personality and process
|
|
294
|
+
|
|
295
|
+
### Unlike Prompt Libraries:
|
|
296
|
+
- â One-off prompt collections
|
|
297
|
+
- â
Comprehensive agent systems with workflows and deliverables
|
|
298
|
+
|
|
299
|
+
### Unlike AI Tools:
|
|
300
|
+
- â Black box tools you can't customize
|
|
301
|
+
- â
Transparent, forkable, adaptable agent personalities
|
|
302
|
+
|
|
303
|
+
---
|
|
304
|
+
|
|
305
|
+
## đ¨ Agent Personality Highlights
|
|
306
|
+
|
|
307
|
+
> "I don't just test your code - I default to finding 3-5 issues and require visual proof for everything."
|
|
308
|
+
>
|
|
309
|
+
> -- **Evidence Collector** (Testing Division)
|
|
310
|
+
|
|
311
|
+
> "You're not marketing on Reddit - you're becoming a valued community member who happens to represent a brand."
|
|
312
|
+
>
|
|
313
|
+
> -- **Reddit Community Builder** (Marketing Division)
|
|
314
|
+
|
|
315
|
+
> "Every playful element must serve a functional or emotional purpose. Design delight that enhances rather than distracts."
|
|
316
|
+
>
|
|
317
|
+
> -- **Whimsy Injector** (Design Division)
|
|
318
|
+
|
|
319
|
+
> "Let me add a celebration animation that reduces task completion anxiety by 40%"
|
|
320
|
+
>
|
|
321
|
+
> -- **Whimsy Injector** (during a UX review)
|
|
322
|
+
|
|
323
|
+
---
|
|
324
|
+
|
|
325
|
+
## đ Stats
|
|
326
|
+
|
|
327
|
+
- đ **61 Specialized Agents** across 9 divisions
|
|
328
|
+
- đ **10,000+ lines** of personality, process, and code examples
|
|
329
|
+
- âąī¸ **Months of iteration** from real-world usage
|
|
330
|
+
- đ **Battle-tested** in production environments
|
|
331
|
+
- đŦ **50+ requests** in first 12 hours on Reddit
|
|
332
|
+
|
|
333
|
+
---
|
|
334
|
+
|
|
335
|
+
## đ Multi-Tool Integrations
|
|
336
|
+
|
|
337
|
+
The Agency works natively with Claude Code, and ships conversion + install scripts so you can use the same agents across every major agentic coding tool.
|
|
338
|
+
|
|
339
|
+
### Supported Tools
|
|
340
|
+
|
|
341
|
+
- **[Claude Code](https://claude.ai/code)** â native `.md` agents, no conversion needed â `~/.claude/agents/`
|
|
342
|
+
- **[Antigravity](https://github.com/google-gemini/antigravity)** â `SKILL.md` per agent â `~/.gemini/antigravity/skills/`
|
|
343
|
+
- **[Gemini CLI](https://github.com/google-gemini/gemini-cli)** â extension + `SKILL.md` files â `~/.gemini/extensions/agency-agents/`
|
|
344
|
+
- **[OpenCode](https://opencode.ai)** â `.md` agent files â `.opencode/agent/`
|
|
345
|
+
- **[Cursor](https://cursor.sh)** â `.mdc` rule files â `.cursor/rules/`
|
|
346
|
+
- **[Aider](https://aider.chat)** â single `CONVENTIONS.md` â `./CONVENTIONS.md`
|
|
347
|
+
- **[Windsurf](https://codeium.com/windsurf)** â single `.windsurfrules` â `./.windsurfrules`
|
|
348
|
+
|
|
349
|
+
---
|
|
350
|
+
|
|
351
|
+
### ⥠Quick Install
|
|
352
|
+
|
|
353
|
+
**Step 1 -- Generate integration files:**
|
|
354
|
+
```bash
|
|
355
|
+
./scripts/convert.sh
|
|
356
|
+
```
|
|
357
|
+
|
|
358
|
+
**Step 2 -- Install (interactive, auto-detects your tools):**
|
|
359
|
+
```bash
|
|
360
|
+
./scripts/install.sh
|
|
361
|
+
```
|
|
362
|
+
|
|
363
|
+
The installer scans your system for installed tools, shows a checkbox UI, and lets you pick exactly what to install:
|
|
364
|
+
|
|
365
|
+
```
|
|
366
|
+
+------------------------------------------------+
|
|
367
|
+
| The Agency -- Tool Installer |
|
|
368
|
+
+------------------------------------------------+
|
|
369
|
+
|
|
370
|
+
System scan: [*] = detected on this machine
|
|
371
|
+
|
|
372
|
+
[x] 1) [*] Claude Code (claude.ai/code)
|
|
373
|
+
[x] 2) [*] Antigravity (~/.gemini/antigravity)
|
|
374
|
+
[ ] 3) [ ] Gemini CLI (gemini extension)
|
|
375
|
+
[ ] 4) [ ] OpenCode (opencode.ai)
|
|
376
|
+
[x] 5) [*] Cursor (.cursor/rules)
|
|
377
|
+
[ ] 6) [ ] Aider (CONVENTIONS.md)
|
|
378
|
+
[ ] 7) [ ] Windsurf (.windsurfrules)
|
|
379
|
+
|
|
380
|
+
[1-7] toggle [a] all [n] none [d] detected
|
|
381
|
+
[Enter] install [q] quit
|
|
382
|
+
```
|
|
383
|
+
|
|
384
|
+
**Or install a specific tool directly:**
|
|
385
|
+
```bash
|
|
386
|
+
./scripts/install.sh --tool cursor
|
|
387
|
+
./scripts/install.sh --tool opencode
|
|
388
|
+
./scripts/install.sh --tool antigravity
|
|
389
|
+
```
|
|
390
|
+
|
|
391
|
+
**Non-interactive (CI/scripts):**
|
|
392
|
+
```bash
|
|
393
|
+
./scripts/install.sh --no-interactive --tool all
|
|
394
|
+
```
|
|
395
|
+
|
|
396
|
+
---
|
|
397
|
+
|
|
398
|
+
### Tool-Specific Instructions
|
|
399
|
+
|
|
400
|
+
<details>
|
|
401
|
+
<summary><strong>Claude Code</strong></summary>
|
|
402
|
+
|
|
403
|
+
Agents are copied directly from the repo into `~/.claude/agents/` -- no conversion needed.
|
|
404
|
+
|
|
405
|
+
```bash
|
|
406
|
+
./scripts/install.sh --tool claude-code
|
|
407
|
+
```
|
|
408
|
+
|
|
409
|
+
Then activate in Claude Code:
|
|
410
|
+
```
|
|
411
|
+
Use the Frontend Developer agent to review this component.
|
|
412
|
+
```
|
|
413
|
+
|
|
414
|
+
See [integrations/claude-code/README.md](integrations/claude-code/README.md) for details.
|
|
415
|
+
</details>
|
|
416
|
+
|
|
417
|
+
<details>
|
|
418
|
+
<summary><strong>Antigravity (Gemini)</strong></summary>
|
|
419
|
+
|
|
420
|
+
Each agent becomes a skill in `~/.gemini/antigravity/skills/agency-<slug>/`.
|
|
421
|
+
|
|
422
|
+
```bash
|
|
423
|
+
./scripts/install.sh --tool antigravity
|
|
424
|
+
```
|
|
425
|
+
|
|
426
|
+
Activate in Gemini with Antigravity:
|
|
427
|
+
```
|
|
428
|
+
@agency-frontend-developer review this React component
|
|
429
|
+
```
|
|
430
|
+
|
|
431
|
+
See [integrations/antigravity/README.md](integrations/antigravity/README.md) for details.
|
|
432
|
+
</details>
|
|
433
|
+
|
|
434
|
+
<details>
|
|
435
|
+
<summary><strong>Gemini CLI</strong></summary>
|
|
436
|
+
|
|
437
|
+
Installs as a Gemini CLI extension with 61 skills + a manifest.
|
|
438
|
+
|
|
439
|
+
```bash
|
|
440
|
+
./scripts/install.sh --tool gemini-cli
|
|
441
|
+
```
|
|
442
|
+
|
|
443
|
+
See [integrations/gemini-cli/README.md](integrations/gemini-cli/README.md) for details.
|
|
444
|
+
</details>
|
|
445
|
+
|
|
446
|
+
<details>
|
|
447
|
+
<summary><strong>OpenCode</strong></summary>
|
|
448
|
+
|
|
449
|
+
Agents are placed in `.opencode/agent/` in your project root (project-scoped).
|
|
450
|
+
|
|
451
|
+
```bash
|
|
452
|
+
cd /your/project
|
|
453
|
+
/path/to/agency-agents/scripts/install.sh --tool opencode
|
|
454
|
+
```
|
|
455
|
+
|
|
456
|
+
Or install globally:
|
|
457
|
+
```bash
|
|
458
|
+
mkdir -p ~/.config/opencode/agent
|
|
459
|
+
cp integrations/opencode/agent/*.md ~/.config/opencode/agent/
|
|
460
|
+
```
|
|
461
|
+
|
|
462
|
+
Activate in OpenCode:
|
|
463
|
+
```
|
|
464
|
+
Use the Backend Architect agent to design this API.
|
|
465
|
+
```
|
|
466
|
+
|
|
467
|
+
See [integrations/opencode/README.md](integrations/opencode/README.md) for details.
|
|
468
|
+
</details>
|
|
469
|
+
|
|
470
|
+
<details>
|
|
471
|
+
<summary><strong>Cursor</strong></summary>
|
|
472
|
+
|
|
473
|
+
Each agent becomes a `.mdc` rule file in `.cursor/rules/` of your project.
|
|
474
|
+
|
|
475
|
+
```bash
|
|
476
|
+
cd /your/project
|
|
477
|
+
/path/to/agency-agents/scripts/install.sh --tool cursor
|
|
478
|
+
```
|
|
479
|
+
|
|
480
|
+
Rules are auto-applied when Cursor detects them in the project. Reference them explicitly:
|
|
481
|
+
```
|
|
482
|
+
Use the @security-engineer rules to review this code.
|
|
483
|
+
```
|
|
484
|
+
|
|
485
|
+
See [integrations/cursor/README.md](integrations/cursor/README.md) for details.
|
|
486
|
+
</details>
|
|
487
|
+
|
|
488
|
+
<details>
|
|
489
|
+
<summary><strong>Aider</strong></summary>
|
|
490
|
+
|
|
491
|
+
All agents are compiled into a single `CONVENTIONS.md` file that Aider reads automatically.
|
|
492
|
+
|
|
493
|
+
```bash
|
|
494
|
+
cd /your/project
|
|
495
|
+
/path/to/agency-agents/scripts/install.sh --tool aider
|
|
496
|
+
```
|
|
497
|
+
|
|
498
|
+
Then reference agents in your Aider session:
|
|
499
|
+
```
|
|
500
|
+
Use the Frontend Developer agent to refactor this component.
|
|
501
|
+
```
|
|
502
|
+
|
|
503
|
+
See [integrations/aider/README.md](integrations/aider/README.md) for details.
|
|
504
|
+
</details>
|
|
505
|
+
|
|
506
|
+
<details>
|
|
507
|
+
<summary><strong>Windsurf</strong></summary>
|
|
508
|
+
|
|
509
|
+
All agents are compiled into `.windsurfrules` in your project root.
|
|
510
|
+
|
|
511
|
+
```bash
|
|
512
|
+
cd /your/project
|
|
513
|
+
/path/to/agency-agents/scripts/install.sh --tool windsurf
|
|
514
|
+
```
|
|
515
|
+
|
|
516
|
+
Reference agents in Windsurf's Cascade:
|
|
517
|
+
```
|
|
518
|
+
Use the Reality Checker agent to verify this is production ready.
|
|
519
|
+
```
|
|
520
|
+
|
|
521
|
+
See [integrations/windsurf/README.md](integrations/windsurf/README.md) for details.
|
|
522
|
+
</details>
|
|
523
|
+
|
|
524
|
+
---
|
|
525
|
+
|
|
526
|
+
### Regenerating After Changes
|
|
527
|
+
|
|
528
|
+
When you add new agents or edit existing ones, regenerate all integration files:
|
|
529
|
+
|
|
530
|
+
```bash
|
|
531
|
+
./scripts/convert.sh # regenerate all
|
|
532
|
+
./scripts/convert.sh --tool cursor # regenerate just one tool
|
|
533
|
+
```
|
|
534
|
+
|
|
535
|
+
---
|
|
536
|
+
|
|
537
|
+
## đēī¸ Roadmap
|
|
538
|
+
|
|
539
|
+
- [ ] Interactive agent selector web tool
|
|
540
|
+
- [x] Multi-agent workflow examples -- see [examples/](examples/)
|
|
541
|
+
- [x] Multi-tool integration scripts (Claude Code, Antigravity, Gemini CLI, OpenCode, Cursor, Aider, Windsurf)
|
|
542
|
+
- [ ] Video tutorials on agent design
|
|
543
|
+
- [ ] Community agent marketplace
|
|
544
|
+
- [ ] Agent "personality quiz" for project matching
|
|
545
|
+
- [ ] "Agent of the Week" showcase series
|
|
546
|
+
|
|
547
|
+
---
|
|
548
|
+
|
|
549
|
+
## đ Community Translations & Localizations
|
|
550
|
+
|
|
551
|
+
Community-maintained translations and regional adaptations. These are independently maintained -- see each repo for coverage and version compatibility.
|
|
552
|
+
|
|
553
|
+
| Language | Maintainer | Link | Notes |
|
|
554
|
+
|----------|-----------|------|-------|
|
|
555
|
+
| đ¨đŗ įŽäŊ䏿 (zh-CN) | [@jnMetaCode](https://github.com/jnMetaCode) | [agency-agents-zh](https://github.com/jnMetaCode/agency-agents-zh) | 26 translated agents + 4 China-market agents |
|
|
556
|
+
|
|
557
|
+
Want to add a translation? Open an issue and we'll link it here.
|
|
558
|
+
|
|
559
|
+
---
|
|
560
|
+
|
|
561
|
+
## đ License
|
|
562
|
+
|
|
563
|
+
MIT License - Use freely, commercially or personally. Attribution appreciated but not required.
|
|
564
|
+
|
|
565
|
+
---
|
|
566
|
+
|
|
567
|
+
## đ Acknowledgments
|
|
568
|
+
|
|
569
|
+
Born from a Reddit discussion about AI agent specialization. Thanks to the community for the feedback, requests, and inspiration.
|
|
570
|
+
|
|
571
|
+
Special recognition to the 50+ Redditors who requested this within the first 12 hours - you proved there's demand for real, specialized AI agent systems.
|
|
572
|
+
|
|
573
|
+
---
|
|
574
|
+
|
|
575
|
+
## đŦ Community
|
|
576
|
+
|
|
577
|
+
- **GitHub Discussions**: [Share your success stories](https://github.com/msitarzewski/agency-agents/discussions)
|
|
578
|
+
- **Issues**: [Report bugs or request features](https://github.com/msitarzewski/agency-agents/issues)
|
|
579
|
+
- **Reddit**: Join the conversation on r/ClaudeAI
|
|
580
|
+
- **Twitter/X**: Share with #TheAgency
|
|
581
|
+
|
|
582
|
+
---
|
|
583
|
+
|
|
584
|
+
## đ Get Started
|
|
585
|
+
|
|
586
|
+
1. **Browse** the agents above and find specialists for your needs
|
|
587
|
+
2. **Copy** the agents to `~/.claude/agents/` for Claude Code integration
|
|
588
|
+
3. **Activate** agents by referencing them in your Claude conversations
|
|
589
|
+
4. **Customize** agent personalities and workflows for your specific needs
|
|
590
|
+
5. **Share** your results and contribute back to the community
|
|
591
|
+
|
|
592
|
+
---
|
|
593
|
+
|
|
594
|
+
<div align="center">
|
|
595
|
+
|
|
596
|
+
**đ The Agency: Your AI Dream Team Awaits đ**
|
|
597
|
+
|
|
598
|
+
[â Star this repo](https://github.com/msitarzewski/agency-agents) âĸ [đ´ Fork it](https://github.com/msitarzewski/agency-agents/fork) âĸ [đ Report an issue](https://github.com/msitarzewski/agency-agents/issues) âĸ [â¤ī¸ Sponsor](https://github.com/sponsors/msitarzewski)
|
|
599
|
+
|
|
600
|
+
Made with â¤ī¸ by the community, for the community
|
|
601
|
+
|
|
602
|
+
</div>
|