@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.
Files changed (186) hide show
  1. package/CHANGELOG.md +87 -0
  2. package/dist/agents/checkpoint-manager.js +291 -0
  3. package/dist/agents/poolbot-tools.js +5 -0
  4. package/dist/agents/subagent-announce-reliability.js +160 -0
  5. package/dist/agents/tool-result-truncation.js +299 -0
  6. package/dist/agents/tools/nodes-file-tool.js +197 -0
  7. package/dist/build-info.json +3 -3
  8. package/dist/cli/config-cli.js +60 -0
  9. package/dist/cron/cron-improvements.js +195 -0
  10. package/dist/discord/discord-improvements.js +167 -0
  11. package/dist/gateway/auth-rate-limit.js +19 -0
  12. package/dist/gateway/auth.js +41 -0
  13. package/dist/gateway/gateway-improvements.js +294 -0
  14. package/dist/gateway/node-command-policy.js +7 -2
  15. package/dist/infra/net/ssrf.js +15 -2
  16. package/dist/infra/shell-security.js +201 -0
  17. package/dist/memory/memory-improvements.js +239 -0
  18. package/dist/node-host/runner.js +146 -79
  19. package/dist/security/prototype-pollution.js +141 -0
  20. package/dist/security/webhook-security.js +253 -0
  21. package/dist/shared/net/ip.js +52 -1
  22. package/dist/slack/slack-improvements.js +225 -0
  23. package/dist/telegram/telegram-improvements.js +220 -0
  24. package/dist/ui-plugins/ui-plugins-improvements.js +191 -0
  25. package/docs/ANALISE_OPENCLAW_PROFISSIONAL.md +520 -0
  26. package/docs/competitive-analysis.md +421 -0
  27. package/docs/implementation-analysis.md +393 -0
  28. package/docs/plans/2026-03-11-file-operations-security-hardening.md +307 -0
  29. package/docs/plans/2026-03-11-integracao-projetos-poolbot.md +666 -0
  30. package/extensions/agency-agents/README.md +301 -0
  31. package/extensions/agency-agents/agents/CONTRIBUTING.md +353 -0
  32. package/extensions/agency-agents/agents/README.md +602 -0
  33. package/extensions/agency-agents/agents/design/design-brand-guardian.md +320 -0
  34. package/extensions/agency-agents/agents/design/design-image-prompt-engineer.md +234 -0
  35. package/extensions/agency-agents/agents/design/design-ui-designer.md +381 -0
  36. package/extensions/agency-agents/agents/design/design-ux-architect.md +467 -0
  37. package/extensions/agency-agents/agents/design/design-ux-researcher.md +327 -0
  38. package/extensions/agency-agents/agents/design/design-visual-storyteller.md +147 -0
  39. package/extensions/agency-agents/agents/design/design-whimsy-injector.md +436 -0
  40. package/extensions/agency-agents/agents/engineering/engineering-ai-engineer.md +144 -0
  41. package/extensions/agency-agents/agents/engineering/engineering-backend-architect.md +233 -0
  42. package/extensions/agency-agents/agents/engineering/engineering-devops-automator.md +374 -0
  43. package/extensions/agency-agents/agents/engineering/engineering-frontend-developer.md +223 -0
  44. package/extensions/agency-agents/agents/engineering/engineering-mobile-app-builder.md +491 -0
  45. package/extensions/agency-agents/agents/engineering/engineering-rapid-prototyper.md +460 -0
  46. package/extensions/agency-agents/agents/engineering/engineering-security-engineer.md +275 -0
  47. package/extensions/agency-agents/agents/engineering/engineering-senior-developer.md +174 -0
  48. package/extensions/agency-agents/agents/examples/README.md +48 -0
  49. package/extensions/agency-agents/agents/examples/nexus-spatial-discovery.md +852 -0
  50. package/extensions/agency-agents/agents/examples/workflow-landing-page.md +119 -0
  51. package/extensions/agency-agents/agents/examples/workflow-startup-mvp.md +155 -0
  52. package/extensions/agency-agents/agents/integrations/README.md +117 -0
  53. package/extensions/agency-agents/agents/integrations/aider/README.md +38 -0
  54. package/extensions/agency-agents/agents/integrations/antigravity/README.md +49 -0
  55. package/extensions/agency-agents/agents/integrations/claude-code/README.md +31 -0
  56. package/extensions/agency-agents/agents/integrations/cursor/README.md +38 -0
  57. package/extensions/agency-agents/agents/integrations/gemini-cli/README.md +36 -0
  58. package/extensions/agency-agents/agents/integrations/opencode/README.md +58 -0
  59. package/extensions/agency-agents/agents/integrations/windsurf/README.md +26 -0
  60. package/extensions/agency-agents/agents/marketing/marketing-app-store-optimizer.md +319 -0
  61. package/extensions/agency-agents/agents/marketing/marketing-content-creator.md +52 -0
  62. package/extensions/agency-agents/agents/marketing/marketing-growth-hacker.md +52 -0
  63. package/extensions/agency-agents/agents/marketing/marketing-instagram-curator.md +111 -0
  64. package/extensions/agency-agents/agents/marketing/marketing-reddit-community-builder.md +121 -0
  65. package/extensions/agency-agents/agents/marketing/marketing-social-media-strategist.md +123 -0
  66. package/extensions/agency-agents/agents/marketing/marketing-tiktok-strategist.md +123 -0
  67. package/extensions/agency-agents/agents/marketing/marketing-twitter-engager.md +124 -0
  68. package/extensions/agency-agents/agents/marketing/marketing-wechat-official-account.md +143 -0
  69. package/extensions/agency-agents/agents/marketing/marketing-xiaohongshu-specialist.md +136 -0
  70. package/extensions/agency-agents/agents/marketing/marketing-zhihu-strategist.md +160 -0
  71. package/extensions/agency-agents/agents/product/product-feedback-synthesizer.md +117 -0
  72. package/extensions/agency-agents/agents/product/product-sprint-prioritizer.md +152 -0
  73. package/extensions/agency-agents/agents/product/product-trend-researcher.md +157 -0
  74. package/extensions/agency-agents/agents/project-management/project-management-experiment-tracker.md +196 -0
  75. package/extensions/agency-agents/agents/project-management/project-management-project-shepherd.md +192 -0
  76. package/extensions/agency-agents/agents/project-management/project-management-studio-operations.md +198 -0
  77. package/extensions/agency-agents/agents/project-management/project-management-studio-producer.md +201 -0
  78. package/extensions/agency-agents/agents/project-management/project-manager-senior.md +133 -0
  79. package/extensions/agency-agents/agents/scripts/convert.sh +362 -0
  80. package/extensions/agency-agents/agents/scripts/install.sh +465 -0
  81. package/extensions/agency-agents/agents/scripts/lint-agents.sh +115 -0
  82. package/extensions/agency-agents/agents/spatial-computing/macos-spatial-metal-engineer.md +335 -0
  83. package/extensions/agency-agents/agents/spatial-computing/terminal-integration-specialist.md +68 -0
  84. package/extensions/agency-agents/agents/spatial-computing/visionos-spatial-engineer.md +52 -0
  85. package/extensions/agency-agents/agents/spatial-computing/xr-cockpit-interaction-specialist.md +30 -0
  86. package/extensions/agency-agents/agents/spatial-computing/xr-immersive-developer.md +30 -0
  87. package/extensions/agency-agents/agents/spatial-computing/xr-interface-architect.md +30 -0
  88. package/extensions/agency-agents/agents/specialized/agentic-identity-trust.md +367 -0
  89. package/extensions/agency-agents/agents/specialized/agents-orchestrator.md +365 -0
  90. package/extensions/agency-agents/agents/specialized/data-analytics-reporter.md +52 -0
  91. package/extensions/agency-agents/agents/specialized/data-consolidation-agent.md +58 -0
  92. package/extensions/agency-agents/agents/specialized/lsp-index-engineer.md +312 -0
  93. package/extensions/agency-agents/agents/specialized/report-distribution-agent.md +63 -0
  94. package/extensions/agency-agents/agents/specialized/sales-data-extraction-agent.md +65 -0
  95. package/extensions/agency-agents/agents/strategy/EXECUTIVE-BRIEF.md +95 -0
  96. package/extensions/agency-agents/agents/strategy/QUICKSTART.md +194 -0
  97. package/extensions/agency-agents/agents/strategy/coordination/agent-activation-prompts.md +401 -0
  98. package/extensions/agency-agents/agents/strategy/coordination/handoff-templates.md +357 -0
  99. package/extensions/agency-agents/agents/strategy/nexus-strategy.md +1110 -0
  100. package/extensions/agency-agents/agents/strategy/playbooks/phase-0-discovery.md +178 -0
  101. package/extensions/agency-agents/agents/strategy/playbooks/phase-1-strategy.md +238 -0
  102. package/extensions/agency-agents/agents/strategy/playbooks/phase-2-foundation.md +278 -0
  103. package/extensions/agency-agents/agents/strategy/playbooks/phase-3-build.md +286 -0
  104. package/extensions/agency-agents/agents/strategy/playbooks/phase-4-hardening.md +332 -0
  105. package/extensions/agency-agents/agents/strategy/playbooks/phase-5-launch.md +277 -0
  106. package/extensions/agency-agents/agents/strategy/playbooks/phase-6-operate.md +318 -0
  107. package/extensions/agency-agents/agents/strategy/runbooks/scenario-enterprise-feature.md +157 -0
  108. package/extensions/agency-agents/agents/strategy/runbooks/scenario-incident-response.md +217 -0
  109. package/extensions/agency-agents/agents/strategy/runbooks/scenario-marketing-campaign.md +187 -0
  110. package/extensions/agency-agents/agents/strategy/runbooks/scenario-startup-mvp.md +154 -0
  111. package/extensions/agency-agents/agents/support/support-analytics-reporter.md +363 -0
  112. package/extensions/agency-agents/agents/support/support-executive-summary-generator.md +210 -0
  113. package/extensions/agency-agents/agents/support/support-finance-tracker.md +440 -0
  114. package/extensions/agency-agents/agents/support/support-infrastructure-maintainer.md +616 -0
  115. package/extensions/agency-agents/agents/support/support-legal-compliance-checker.md +586 -0
  116. package/extensions/agency-agents/agents/support/support-support-responder.md +583 -0
  117. package/extensions/agency-agents/agents/testing/testing-accessibility-auditor.md +313 -0
  118. package/extensions/agency-agents/agents/testing/testing-api-tester.md +304 -0
  119. package/extensions/agency-agents/agents/testing/testing-evidence-collector.md +208 -0
  120. package/extensions/agency-agents/agents/testing/testing-performance-benchmarker.md +266 -0
  121. package/extensions/agency-agents/agents/testing/testing-reality-checker.md +236 -0
  122. package/extensions/agency-agents/agents/testing/testing-test-results-analyzer.md +303 -0
  123. package/extensions/agency-agents/agents/testing/testing-tool-evaluator.md +392 -0
  124. package/extensions/agency-agents/agents/testing/testing-workflow-optimizer.md +448 -0
  125. package/extensions/agency-agents/index.ts +733 -0
  126. package/extensions/agency-agents/node_modules/.bin/jiti +21 -0
  127. package/extensions/agency-agents/node_modules/.bin/tsc +21 -0
  128. package/extensions/agency-agents/node_modules/.bin/tsserver +21 -0
  129. package/extensions/agency-agents/node_modules/.bin/tsx +21 -0
  130. package/extensions/agency-agents/node_modules/.bin/vite +21 -0
  131. package/extensions/agency-agents/node_modules/.bin/vitest +21 -0
  132. package/extensions/agency-agents/node_modules/.bin/yaml +21 -0
  133. package/extensions/agency-agents/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -0
  134. package/extensions/agency-agents/package.json +25 -0
  135. package/extensions/agency-agents/poolbot.plugin.json +11 -0
  136. package/extensions/agency-agents/src/AgencyAgentsService.test.ts +443 -0
  137. package/extensions/agency-agents/src/AgencyAgentsService.ts +288 -0
  138. package/extensions/agency-agents/src/types.ts +147 -0
  139. package/extensions/agency-agents/vitest.config.ts +8 -0
  140. package/extensions/hexstrike-ai/README.md +98 -0
  141. package/extensions/hexstrike-ai/node_modules/.bin/tsc +21 -0
  142. package/extensions/hexstrike-ai/node_modules/.bin/tsserver +21 -0
  143. package/extensions/hexstrike-ai/package.json +29 -0
  144. package/extensions/hexstrike-ai/poolbot.plugin.json +31 -0
  145. package/extensions/hexstrike-ai/src/client.ts +91 -0
  146. package/extensions/hexstrike-ai/src/index.ts +170 -0
  147. package/extensions/hexstrike-ai/src/server/hexstrike_mcp.py +5470 -0
  148. package/extensions/hexstrike-ai/src/server/hexstrike_server.py +17289 -0
  149. package/extensions/hexstrike-ai/src/server/requirements.txt +84 -0
  150. package/extensions/hexstrike-ai/src/server-manager.ts +83 -0
  151. package/extensions/hexstrike-ai/tsconfig.json +20 -0
  152. package/extensions/page-agent/README.md +159 -0
  153. package/extensions/page-agent/index.ts +595 -0
  154. package/extensions/page-agent/node_modules/.bin/jiti +21 -0
  155. package/extensions/page-agent/node_modules/.bin/playwright +21 -0
  156. package/extensions/page-agent/node_modules/.bin/tsc +21 -0
  157. package/extensions/page-agent/node_modules/.bin/tsserver +21 -0
  158. package/extensions/page-agent/node_modules/.bin/tsx +21 -0
  159. package/extensions/page-agent/node_modules/.bin/vitest +21 -0
  160. package/extensions/page-agent/node_modules/.bin/yaml +21 -0
  161. package/extensions/page-agent/package.json +43 -0
  162. package/extensions/page-agent/poolbot.plugin.json +24 -0
  163. package/extensions/page-agent/src/PageAgentService.test.ts +517 -0
  164. package/extensions/page-agent/src/PageAgentService.ts +636 -0
  165. package/extensions/page-agent/src/PoolBotPageController.test.ts +358 -0
  166. package/extensions/page-agent/src/PoolBotPageController.ts +245 -0
  167. package/extensions/page-agent/src/index.ts +20 -0
  168. package/extensions/page-agent/src/tools.test.ts +231 -0
  169. package/extensions/page-agent/src/tools.ts +167 -0
  170. package/extensions/page-agent/src/types.ts +198 -0
  171. package/extensions/xyops/README.md +227 -0
  172. package/extensions/xyops/index.ts +342 -0
  173. package/extensions/xyops/node_modules/.bin/jiti +21 -0
  174. package/extensions/xyops/node_modules/.bin/tsc +21 -0
  175. package/extensions/xyops/node_modules/.bin/tsserver +21 -0
  176. package/extensions/xyops/node_modules/.bin/tsx +21 -0
  177. package/extensions/xyops/node_modules/.bin/vitest +21 -0
  178. package/extensions/xyops/node_modules/.bin/yaml +21 -0
  179. package/extensions/xyops/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -0
  180. package/extensions/xyops/package.json +39 -0
  181. package/extensions/xyops/poolbot.plugin.json +21 -0
  182. package/extensions/xyops/src/client.test.ts +467 -0
  183. package/extensions/xyops/src/client.ts +157 -0
  184. package/extensions/xyops/src/types.ts +147 -0
  185. package/extensions/xyops/vitest.config.ts +8 -0
  186. 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
+ [![GitHub stars](https://img.shields.io/github/stars/msitarzewski/agency-agents?style=social)](https://github.com/msitarzewski/agency-agents)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
+ [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://makeapullrequest.com)
8
+ [![Sponsor](https://img.shields.io/badge/Sponsor-%E2%9D%A4-pink?logo=github)](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>