@poolzin/pool-bot 2026.3.11 → 2026.3.14

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 (195) hide show
  1. package/CHANGELOG.md +121 -0
  2. package/dist/.buildstamp +1 -1
  3. package/dist/agents/checkpoint-manager.js +291 -0
  4. package/dist/agents/poolbot-tools.js +5 -0
  5. package/dist/agents/subagent-announce-reliability.js +160 -0
  6. package/dist/agents/tool-result-truncation.js +299 -0
  7. package/dist/agents/tools/nodes-file-tool.js +197 -0
  8. package/dist/build-info.json +3 -3
  9. package/dist/cli/config-cli.js +60 -0
  10. package/dist/cron/cron-improvements.js +195 -0
  11. package/dist/discord/discord-improvements.js +167 -0
  12. package/dist/gateway/auth-rate-limit.js +19 -0
  13. package/dist/gateway/auth.js +41 -0
  14. package/dist/gateway/gateway-improvements.js +294 -0
  15. package/dist/gateway/node-command-policy.js +7 -2
  16. package/dist/infra/net/ssrf.js +15 -2
  17. package/dist/infra/shell-security.js +201 -0
  18. package/dist/memory/memory-improvements.js +239 -0
  19. package/dist/node-host/runner.js +146 -79
  20. package/dist/security/prototype-pollution.js +141 -0
  21. package/dist/security/webhook-security.js +253 -0
  22. package/dist/shared/net/ip.js +52 -1
  23. package/dist/slack/slack-improvements.js +225 -0
  24. package/dist/telegram/telegram-improvements.js +220 -0
  25. package/dist/ui-plugins/ui-plugins-improvements.js +191 -0
  26. package/docs/ANALISE_OPENCLAW_PROFISSIONAL.md +520 -0
  27. package/docs/competitive-analysis.md +421 -0
  28. package/docs/implementation-analysis.md +393 -0
  29. package/docs/plans/2026-03-11-file-operations-security-hardening.md +307 -0
  30. package/docs/plans/2026-03-11-integracao-projetos-poolbot.md +666 -0
  31. package/docs/refactor/plugin-development-guide.md +281 -0
  32. package/extensions/agency-agents/README.md +301 -0
  33. package/extensions/agency-agents/agents/CONTRIBUTING.md +353 -0
  34. package/extensions/agency-agents/agents/README.md +602 -0
  35. package/extensions/agency-agents/agents/design/design-brand-guardian.md +320 -0
  36. package/extensions/agency-agents/agents/design/design-image-prompt-engineer.md +234 -0
  37. package/extensions/agency-agents/agents/design/design-ui-designer.md +381 -0
  38. package/extensions/agency-agents/agents/design/design-ux-architect.md +467 -0
  39. package/extensions/agency-agents/agents/design/design-ux-researcher.md +327 -0
  40. package/extensions/agency-agents/agents/design/design-visual-storyteller.md +147 -0
  41. package/extensions/agency-agents/agents/design/design-whimsy-injector.md +436 -0
  42. package/extensions/agency-agents/agents/engineering/engineering-ai-engineer.md +144 -0
  43. package/extensions/agency-agents/agents/engineering/engineering-backend-architect.md +233 -0
  44. package/extensions/agency-agents/agents/engineering/engineering-devops-automator.md +374 -0
  45. package/extensions/agency-agents/agents/engineering/engineering-frontend-developer.md +223 -0
  46. package/extensions/agency-agents/agents/engineering/engineering-mobile-app-builder.md +491 -0
  47. package/extensions/agency-agents/agents/engineering/engineering-rapid-prototyper.md +460 -0
  48. package/extensions/agency-agents/agents/engineering/engineering-security-engineer.md +275 -0
  49. package/extensions/agency-agents/agents/engineering/engineering-senior-developer.md +174 -0
  50. package/extensions/agency-agents/agents/examples/README.md +48 -0
  51. package/extensions/agency-agents/agents/examples/nexus-spatial-discovery.md +852 -0
  52. package/extensions/agency-agents/agents/examples/workflow-landing-page.md +119 -0
  53. package/extensions/agency-agents/agents/examples/workflow-startup-mvp.md +155 -0
  54. package/extensions/agency-agents/agents/integrations/README.md +117 -0
  55. package/extensions/agency-agents/agents/integrations/aider/README.md +38 -0
  56. package/extensions/agency-agents/agents/integrations/antigravity/README.md +49 -0
  57. package/extensions/agency-agents/agents/integrations/claude-code/README.md +31 -0
  58. package/extensions/agency-agents/agents/integrations/cursor/README.md +38 -0
  59. package/extensions/agency-agents/agents/integrations/gemini-cli/README.md +36 -0
  60. package/extensions/agency-agents/agents/integrations/opencode/README.md +58 -0
  61. package/extensions/agency-agents/agents/integrations/windsurf/README.md +26 -0
  62. package/extensions/agency-agents/agents/marketing/marketing-app-store-optimizer.md +319 -0
  63. package/extensions/agency-agents/agents/marketing/marketing-content-creator.md +52 -0
  64. package/extensions/agency-agents/agents/marketing/marketing-growth-hacker.md +52 -0
  65. package/extensions/agency-agents/agents/marketing/marketing-instagram-curator.md +111 -0
  66. package/extensions/agency-agents/agents/marketing/marketing-reddit-community-builder.md +121 -0
  67. package/extensions/agency-agents/agents/marketing/marketing-social-media-strategist.md +123 -0
  68. package/extensions/agency-agents/agents/marketing/marketing-tiktok-strategist.md +123 -0
  69. package/extensions/agency-agents/agents/marketing/marketing-twitter-engager.md +124 -0
  70. package/extensions/agency-agents/agents/marketing/marketing-wechat-official-account.md +143 -0
  71. package/extensions/agency-agents/agents/marketing/marketing-xiaohongshu-specialist.md +136 -0
  72. package/extensions/agency-agents/agents/marketing/marketing-zhihu-strategist.md +160 -0
  73. package/extensions/agency-agents/agents/product/product-feedback-synthesizer.md +117 -0
  74. package/extensions/agency-agents/agents/product/product-sprint-prioritizer.md +152 -0
  75. package/extensions/agency-agents/agents/product/product-trend-researcher.md +157 -0
  76. package/extensions/agency-agents/agents/project-management/project-management-experiment-tracker.md +196 -0
  77. package/extensions/agency-agents/agents/project-management/project-management-project-shepherd.md +192 -0
  78. package/extensions/agency-agents/agents/project-management/project-management-studio-operations.md +198 -0
  79. package/extensions/agency-agents/agents/project-management/project-management-studio-producer.md +201 -0
  80. package/extensions/agency-agents/agents/project-management/project-manager-senior.md +133 -0
  81. package/extensions/agency-agents/agents/scripts/convert.sh +362 -0
  82. package/extensions/agency-agents/agents/scripts/install.sh +465 -0
  83. package/extensions/agency-agents/agents/scripts/lint-agents.sh +115 -0
  84. package/extensions/agency-agents/agents/spatial-computing/macos-spatial-metal-engineer.md +335 -0
  85. package/extensions/agency-agents/agents/spatial-computing/terminal-integration-specialist.md +68 -0
  86. package/extensions/agency-agents/agents/spatial-computing/visionos-spatial-engineer.md +52 -0
  87. package/extensions/agency-agents/agents/spatial-computing/xr-cockpit-interaction-specialist.md +30 -0
  88. package/extensions/agency-agents/agents/spatial-computing/xr-immersive-developer.md +30 -0
  89. package/extensions/agency-agents/agents/spatial-computing/xr-interface-architect.md +30 -0
  90. package/extensions/agency-agents/agents/specialized/agentic-identity-trust.md +367 -0
  91. package/extensions/agency-agents/agents/specialized/agents-orchestrator.md +365 -0
  92. package/extensions/agency-agents/agents/specialized/data-analytics-reporter.md +52 -0
  93. package/extensions/agency-agents/agents/specialized/data-consolidation-agent.md +58 -0
  94. package/extensions/agency-agents/agents/specialized/lsp-index-engineer.md +312 -0
  95. package/extensions/agency-agents/agents/specialized/report-distribution-agent.md +63 -0
  96. package/extensions/agency-agents/agents/specialized/sales-data-extraction-agent.md +65 -0
  97. package/extensions/agency-agents/agents/strategy/EXECUTIVE-BRIEF.md +95 -0
  98. package/extensions/agency-agents/agents/strategy/QUICKSTART.md +194 -0
  99. package/extensions/agency-agents/agents/strategy/coordination/agent-activation-prompts.md +401 -0
  100. package/extensions/agency-agents/agents/strategy/coordination/handoff-templates.md +357 -0
  101. package/extensions/agency-agents/agents/strategy/nexus-strategy.md +1110 -0
  102. package/extensions/agency-agents/agents/strategy/playbooks/phase-0-discovery.md +178 -0
  103. package/extensions/agency-agents/agents/strategy/playbooks/phase-1-strategy.md +238 -0
  104. package/extensions/agency-agents/agents/strategy/playbooks/phase-2-foundation.md +278 -0
  105. package/extensions/agency-agents/agents/strategy/playbooks/phase-3-build.md +286 -0
  106. package/extensions/agency-agents/agents/strategy/playbooks/phase-4-hardening.md +332 -0
  107. package/extensions/agency-agents/agents/strategy/playbooks/phase-5-launch.md +277 -0
  108. package/extensions/agency-agents/agents/strategy/playbooks/phase-6-operate.md +318 -0
  109. package/extensions/agency-agents/agents/strategy/runbooks/scenario-enterprise-feature.md +157 -0
  110. package/extensions/agency-agents/agents/strategy/runbooks/scenario-incident-response.md +217 -0
  111. package/extensions/agency-agents/agents/strategy/runbooks/scenario-marketing-campaign.md +187 -0
  112. package/extensions/agency-agents/agents/strategy/runbooks/scenario-startup-mvp.md +154 -0
  113. package/extensions/agency-agents/agents/support/support-analytics-reporter.md +363 -0
  114. package/extensions/agency-agents/agents/support/support-executive-summary-generator.md +210 -0
  115. package/extensions/agency-agents/agents/support/support-finance-tracker.md +440 -0
  116. package/extensions/agency-agents/agents/support/support-infrastructure-maintainer.md +616 -0
  117. package/extensions/agency-agents/agents/support/support-legal-compliance-checker.md +586 -0
  118. package/extensions/agency-agents/agents/support/support-support-responder.md +583 -0
  119. package/extensions/agency-agents/agents/testing/testing-accessibility-auditor.md +313 -0
  120. package/extensions/agency-agents/agents/testing/testing-api-tester.md +304 -0
  121. package/extensions/agency-agents/agents/testing/testing-evidence-collector.md +208 -0
  122. package/extensions/agency-agents/agents/testing/testing-performance-benchmarker.md +266 -0
  123. package/extensions/agency-agents/agents/testing/testing-reality-checker.md +236 -0
  124. package/extensions/agency-agents/agents/testing/testing-test-results-analyzer.md +303 -0
  125. package/extensions/agency-agents/agents/testing/testing-tool-evaluator.md +392 -0
  126. package/extensions/agency-agents/agents/testing/testing-workflow-optimizer.md +448 -0
  127. package/extensions/agency-agents/index.ts +733 -0
  128. package/extensions/agency-agents/node_modules/.bin/jiti +21 -0
  129. package/extensions/agency-agents/node_modules/.bin/tsc +21 -0
  130. package/extensions/agency-agents/node_modules/.bin/tsserver +21 -0
  131. package/extensions/agency-agents/node_modules/.bin/tsx +21 -0
  132. package/extensions/agency-agents/node_modules/.bin/vite +21 -0
  133. package/extensions/agency-agents/node_modules/.bin/vitest +21 -0
  134. package/extensions/agency-agents/node_modules/.bin/yaml +21 -0
  135. package/extensions/agency-agents/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -0
  136. package/extensions/agency-agents/package.json +25 -0
  137. package/extensions/agency-agents/src/AgencyAgentsService.test.ts +443 -0
  138. package/extensions/agency-agents/src/AgencyAgentsService.ts +288 -0
  139. package/extensions/agency-agents/src/types.ts +147 -0
  140. package/extensions/agency-agents/vitest.config.ts +8 -0
  141. package/extensions/hexstrike-ai/README.md +98 -0
  142. package/extensions/hexstrike-ai/node_modules/.bin/tsc +21 -0
  143. package/extensions/hexstrike-ai/node_modules/.bin/tsserver +21 -0
  144. package/extensions/hexstrike-ai/package.json +29 -0
  145. package/extensions/hexstrike-ai/poolbot.plugin.json +31 -0
  146. package/extensions/hexstrike-ai/src/client.ts +91 -0
  147. package/extensions/hexstrike-ai/src/index.ts +170 -0
  148. package/extensions/hexstrike-ai/src/server/hexstrike_mcp.py +5470 -0
  149. package/extensions/hexstrike-ai/src/server/hexstrike_server.py +17289 -0
  150. package/extensions/hexstrike-ai/src/server/requirements.txt +84 -0
  151. package/extensions/hexstrike-ai/src/server-manager.ts +83 -0
  152. package/extensions/hexstrike-ai/tsconfig.json +20 -0
  153. package/extensions/hexstrike-bridge/package.json +1 -1
  154. package/extensions/hexstrike-bridge/poolbot.plugin.json +23 -0
  155. package/extensions/mcp-server/poolbot.plugin.json +10 -0
  156. package/extensions/page-agent/README.md +159 -0
  157. package/extensions/page-agent/index.ts +595 -0
  158. package/extensions/page-agent/node_modules/.bin/jiti +21 -0
  159. package/extensions/page-agent/node_modules/.bin/playwright +21 -0
  160. package/extensions/page-agent/node_modules/.bin/tsc +21 -0
  161. package/extensions/page-agent/node_modules/.bin/tsserver +21 -0
  162. package/extensions/page-agent/node_modules/.bin/tsx +21 -0
  163. package/extensions/page-agent/node_modules/.bin/vitest +21 -0
  164. package/extensions/page-agent/node_modules/.bin/yaml +21 -0
  165. package/extensions/page-agent/package.json +43 -0
  166. package/extensions/page-agent/src/PageAgentService.test.ts +517 -0
  167. package/extensions/page-agent/src/PageAgentService.ts +636 -0
  168. package/extensions/page-agent/src/PoolBotPageController.test.ts +358 -0
  169. package/extensions/page-agent/src/PoolBotPageController.ts +245 -0
  170. package/extensions/page-agent/src/index.ts +20 -0
  171. package/extensions/page-agent/src/tools.test.ts +231 -0
  172. package/extensions/page-agent/src/tools.ts +167 -0
  173. package/extensions/page-agent/src/types.ts +198 -0
  174. package/extensions/template/README.md +101 -0
  175. package/extensions/template/index.ts +38 -0
  176. package/extensions/template/package.json +15 -0
  177. package/extensions/template/poolbot.plugin.json +10 -0
  178. package/extensions/xyops/README.md +227 -0
  179. package/extensions/xyops/index.ts +342 -0
  180. package/extensions/xyops/node_modules/.bin/jiti +21 -0
  181. package/extensions/xyops/node_modules/.bin/tsc +21 -0
  182. package/extensions/xyops/node_modules/.bin/tsserver +21 -0
  183. package/extensions/xyops/node_modules/.bin/tsx +21 -0
  184. package/extensions/xyops/node_modules/.bin/vitest +21 -0
  185. package/extensions/xyops/node_modules/.bin/yaml +21 -0
  186. package/extensions/xyops/node_modules/.vite/vitest/da39a3ee5e6b4b0d3255bfef95601890afd80709/results.json +1 -0
  187. package/extensions/xyops/package.json +39 -0
  188. package/extensions/xyops/src/client.test.ts +467 -0
  189. package/extensions/xyops/src/client.ts +157 -0
  190. package/extensions/xyops/src/types.ts +147 -0
  191. package/extensions/xyops/vitest.config.ts +8 -0
  192. package/package.json +1 -1
  193. package/extensions/mavalie/README.md +0 -97
  194. package/extensions/mavalie/package.json +0 -15
  195. package/extensions/mavalie/src/index.ts +0 -62
@@ -0,0 +1,194 @@
1
+ # ⚡ NEXUS Quick-Start Guide
2
+
3
+ > **Get from zero to orchestrated multi-agent pipeline in 5 minutes.**
4
+
5
+ ---
6
+
7
+ ## What is NEXUS?
8
+
9
+ **NEXUS** (Network of EXperts, Unified in Strategy) turns The Agency's AI specialists into a coordinated pipeline. Instead of activating agents one at a time and hoping they work together, NEXUS defines exactly who does what, when, and how quality is verified at every step.
10
+
11
+ ## Choose Your Mode
12
+
13
+ | I want to... | Use | Agents | Time |
14
+ |-------------|-----|--------|------|
15
+ | Build a complete product from scratch | **NEXUS-Full** | All | 12-24 weeks |
16
+ | Build a feature or MVP | **NEXUS-Sprint** | 15-25 | 2-6 weeks |
17
+ | Do a specific task (bug fix, campaign, audit) | **NEXUS-Micro** | 5-10 | 1-5 days |
18
+
19
+ ---
20
+
21
+ ## 🚀 NEXUS-Full: Start a Complete Project
22
+
23
+ **Copy this prompt to activate the full pipeline:**
24
+
25
+ ```
26
+ Activate Agents Orchestrator in NEXUS-Full mode.
27
+
28
+ Project: [YOUR PROJECT NAME]
29
+ Specification: [DESCRIBE YOUR PROJECT OR LINK TO SPEC]
30
+
31
+ Execute the complete NEXUS pipeline:
32
+ - Phase 0: Discovery (Trend Researcher, Feedback Synthesizer, UX Researcher, Analytics Reporter, Legal Compliance Checker, Tool Evaluator)
33
+ - Phase 1: Strategy (Studio Producer, Senior Project Manager, Sprint Prioritizer, UX Architect, Brand Guardian, Backend Architect, Finance Tracker)
34
+ - Phase 2: Foundation (DevOps Automator, Frontend Developer, Backend Architect, UX Architect, Infrastructure Maintainer)
35
+ - Phase 3: Build (Dev↔QA loops — all engineering + Evidence Collector)
36
+ - Phase 4: Harden (Reality Checker, Performance Benchmarker, API Tester, Legal Compliance Checker)
37
+ - Phase 5: Launch (Growth Hacker, Content Creator, all marketing agents, DevOps Automator)
38
+ - Phase 6: Operate (Analytics Reporter, Infrastructure Maintainer, Support Responder, ongoing)
39
+
40
+ Quality gates between every phase. Evidence required for all assessments.
41
+ Maximum 3 retries per task before escalation.
42
+ ```
43
+
44
+ ---
45
+
46
+ ## 🏃 NEXUS-Sprint: Build a Feature or MVP
47
+
48
+ **Copy this prompt:**
49
+
50
+ ```
51
+ Activate Agents Orchestrator in NEXUS-Sprint mode.
52
+
53
+ Feature/MVP: [DESCRIBE WHAT YOU'RE BUILDING]
54
+ Timeline: [TARGET WEEKS]
55
+ Skip Phase 0 (market already validated).
56
+
57
+ Sprint team:
58
+ - PM: Senior Project Manager, Sprint Prioritizer
59
+ - Design: UX Architect, Brand Guardian
60
+ - Engineering: Frontend Developer, Backend Architect, DevOps Automator
61
+ - QA: Evidence Collector, Reality Checker, API Tester
62
+ - Support: Analytics Reporter
63
+
64
+ Begin at Phase 1 with architecture and sprint planning.
65
+ Run Dev↔QA loops for all implementation tasks.
66
+ Reality Checker approval required before launch.
67
+ ```
68
+
69
+ ---
70
+
71
+ ## 🎯 NEXUS-Micro: Do a Specific Task
72
+
73
+ **Pick your scenario and copy the prompt:**
74
+
75
+ ### Fix a Bug
76
+ ```
77
+ Activate Backend Architect to investigate and fix [BUG DESCRIPTION].
78
+ After fix, activate API Tester to verify the fix.
79
+ Then activate Evidence Collector to confirm no visual regressions.
80
+ ```
81
+
82
+ ### Run a Marketing Campaign
83
+ ```
84
+ Activate Social Media Strategist as campaign lead for [CAMPAIGN DESCRIPTION].
85
+ Team: Content Creator, Twitter Engager, Instagram Curator, Reddit Community Builder.
86
+ Brand Guardian reviews all content before publishing.
87
+ Analytics Reporter tracks performance daily.
88
+ Growth Hacker optimizes channels weekly.
89
+ ```
90
+
91
+ ### Conduct a Compliance Audit
92
+ ```
93
+ Activate Legal Compliance Checker for comprehensive compliance audit.
94
+ Scope: [GDPR / CCPA / HIPAA / ALL]
95
+ After audit, activate Executive Summary Generator to create stakeholder report.
96
+ ```
97
+
98
+ ### Investigate Performance Issues
99
+ ```
100
+ Activate Performance Benchmarker to diagnose performance issues.
101
+ Scope: [API response times / Page load / Database queries / All]
102
+ After diagnosis, activate Infrastructure Maintainer for optimization.
103
+ DevOps Automator deploys any infrastructure changes.
104
+ ```
105
+
106
+ ### Market Research
107
+ ```
108
+ Activate Trend Researcher for market intelligence on [DOMAIN].
109
+ Deliverables: Competitive landscape, market sizing, trend forecast.
110
+ After research, activate Executive Summary Generator for executive brief.
111
+ ```
112
+
113
+ ### UX Improvement
114
+ ```
115
+ Activate UX Researcher to identify usability issues in [FEATURE/PRODUCT].
116
+ After research, activate UX Architect to design improvements.
117
+ Frontend Developer implements changes.
118
+ Evidence Collector verifies improvements.
119
+ ```
120
+
121
+ ---
122
+
123
+ ## 📁 Strategy Documents
124
+
125
+ | Document | Purpose | Location |
126
+ |----------|---------|----------|
127
+ | **Master Strategy** | Complete NEXUS doctrine | `strategy/nexus-strategy.md` |
128
+ | **Phase 0 Playbook** | Discovery & intelligence | `strategy/playbooks/phase-0-discovery.md` |
129
+ | **Phase 1 Playbook** | Strategy & architecture | `strategy/playbooks/phase-1-strategy.md` |
130
+ | **Phase 2 Playbook** | Foundation & scaffolding | `strategy/playbooks/phase-2-foundation.md` |
131
+ | **Phase 3 Playbook** | Build & iterate | `strategy/playbooks/phase-3-build.md` |
132
+ | **Phase 4 Playbook** | Quality & hardening | `strategy/playbooks/phase-4-hardening.md` |
133
+ | **Phase 5 Playbook** | Launch & growth | `strategy/playbooks/phase-5-launch.md` |
134
+ | **Phase 6 Playbook** | Operate & evolve | `strategy/playbooks/phase-6-operate.md` |
135
+ | **Activation Prompts** | Ready-to-use agent prompts | `strategy/coordination/agent-activation-prompts.md` |
136
+ | **Handoff Templates** | Standardized handoff formats | `strategy/coordination/handoff-templates.md` |
137
+ | **Startup MVP Runbook** | 4-6 week MVP build | `strategy/runbooks/scenario-startup-mvp.md` |
138
+ | **Enterprise Feature Runbook** | Enterprise feature development | `strategy/runbooks/scenario-enterprise-feature.md` |
139
+ | **Marketing Campaign Runbook** | Multi-channel campaign | `strategy/runbooks/scenario-marketing-campaign.md` |
140
+ | **Incident Response Runbook** | Production incident handling | `strategy/runbooks/scenario-incident-response.md` |
141
+
142
+ ---
143
+
144
+ ## 🔑 Key Concepts in 30 Seconds
145
+
146
+ 1. **Quality Gates** — No phase advances without evidence-based approval
147
+ 2. **Dev↔QA Loop** — Every task is built then tested; PASS to proceed, FAIL to retry (max 3)
148
+ 3. **Handoffs** — Structured context transfer between agents (never start cold)
149
+ 4. **Reality Checker** — Final quality authority; defaults to "NEEDS WORK"
150
+ 5. **Agents Orchestrator** — Pipeline controller managing the entire flow
151
+ 6. **Evidence Over Claims** — Screenshots, test results, and data — not assertions
152
+
153
+ ---
154
+
155
+ ## 🎭 The Agents at a Glance
156
+
157
+ ```
158
+ ENGINEERING │ DESIGN │ MARKETING
159
+ Frontend Developer │ UI Designer │ Growth Hacker
160
+ Backend Architect │ UX Researcher │ Content Creator
161
+ Mobile App Builder │ UX Architect │ Twitter Engager
162
+ AI Engineer │ Brand Guardian │ TikTok Strategist
163
+ DevOps Automator │ Visual Storyteller │ Instagram Curator
164
+ Rapid Prototyper │ Whimsy Injector │ Reddit Community Builder
165
+ Senior Developer │ Image Prompt Eng. │ App Store Optimizer
166
+ │ │ Social Media Strategist
167
+ ────────────────────┼─────────────────────┼──────────────────────
168
+ PRODUCT │ PROJECT MGMT │ TESTING
169
+ Sprint Prioritizer │ Studio Producer │ Evidence Collector
170
+ Trend Researcher │ Project Shepherd │ Reality Checker
171
+ Feedback Synthesizer│ Studio Operations │ Test Results Analyzer
172
+ │ Experiment Tracker │ Performance Benchmarker
173
+ │ Senior Project Mgr │ API Tester
174
+ │ │ Tool Evaluator
175
+ │ │ Workflow Optimizer
176
+ ────────────────────┼─────────────────────┼──────────────────────
177
+ SUPPORT │ SPATIAL │ SPECIALIZED
178
+ Support Responder │ XR Interface Arch. │ Agents Orchestrator
179
+ Analytics Reporter │ macOS Spatial/Metal │ Data Analytics Reporter
180
+ Finance Tracker │ XR Immersive Dev │ LSP/Index Engineer
181
+ Infra Maintainer │ XR Cockpit Spec. │ Sales Data Extraction
182
+ Legal Compliance │ visionOS Spatial │ Data Consolidation
183
+ Exec Summary Gen. │ Terminal Integration│ Report Distribution
184
+ ```
185
+
186
+ ---
187
+
188
+ <div align="center">
189
+
190
+ **Start with a mode. Follow the playbook. Trust the pipeline.**
191
+
192
+ `strategy/nexus-strategy.md` — The complete doctrine
193
+
194
+ </div>
@@ -0,0 +1,401 @@
1
+ # 🎯 NEXUS Agent Activation Prompts
2
+
3
+ > Ready-to-use prompt templates for activating any agent within the NEXUS pipeline. Copy, customize the `[PLACEHOLDERS]`, and deploy.
4
+
5
+ ---
6
+
7
+ ## Pipeline Controller
8
+
9
+ ### Agents Orchestrator — Full Pipeline
10
+ ```
11
+ You are the Agents Orchestrator executing the NEXUS pipeline for [PROJECT NAME].
12
+
13
+ Mode: NEXUS-[Full/Sprint/Micro]
14
+ Project specification: [PATH TO SPEC]
15
+ Current phase: Phase [N] — [Phase Name]
16
+
17
+ NEXUS Protocol:
18
+ 1. Read the project specification thoroughly
19
+ 2. Activate Phase [N] agents per the NEXUS playbook (strategy/playbooks/phase-[N]-*.md)
20
+ 3. Manage all handoffs using the NEXUS Handoff Template
21
+ 4. Enforce quality gates before any phase advancement
22
+ 5. Track all tasks with the NEXUS Pipeline Status Report format
23
+ 6. Run Dev↔QA loops: Developer implements → Evidence Collector tests → PASS/FAIL decision
24
+ 7. Maximum 3 retries per task before escalation
25
+ 8. Report status at every phase boundary
26
+
27
+ Quality principles:
28
+ - Evidence over claims — require proof for all quality assessments
29
+ - No phase advances without passing its quality gate
30
+ - Context continuity — every handoff carries full context
31
+ - Fail fast, fix fast — escalate after 3 retries
32
+
33
+ Available agents: See strategy/nexus-strategy.md Section 10 for full coordination matrix
34
+ ```
35
+
36
+ ### Agents Orchestrator — Dev↔QA Loop
37
+ ```
38
+ You are the Agents Orchestrator managing the Dev↔QA loop for [PROJECT NAME].
39
+
40
+ Current sprint: [SPRINT NUMBER]
41
+ Task backlog: [PATH TO SPRINT PLAN]
42
+ Active developer agents: [LIST]
43
+ QA agents: Evidence Collector, [API Tester / Performance Benchmarker as needed]
44
+
45
+ For each task in priority order:
46
+ 1. Assign to appropriate developer agent (see assignment matrix)
47
+ 2. Wait for implementation completion
48
+ 3. Activate Evidence Collector for QA validation
49
+ 4. IF PASS: Mark complete, move to next task
50
+ 5. IF FAIL (attempt < 3): Send QA feedback to developer, retry
51
+ 6. IF FAIL (attempt = 3): Escalate — reassign, decompose, or defer
52
+
53
+ Track and report:
54
+ - Tasks completed / total
55
+ - First-pass QA rate
56
+ - Average retries per task
57
+ - Blocked tasks and reasons
58
+ - Overall sprint progress percentage
59
+ ```
60
+
61
+ ---
62
+
63
+ ## Engineering Division
64
+
65
+ ### Frontend Developer
66
+ ```
67
+ You are Frontend Developer working within the NEXUS pipeline for [PROJECT NAME].
68
+
69
+ Phase: [CURRENT PHASE]
70
+ Task: [TASK ID] — [TASK DESCRIPTION]
71
+ Acceptance criteria: [SPECIFIC CRITERIA FROM TASK LIST]
72
+
73
+ Reference documents:
74
+ - Architecture: [PATH TO ARCHITECTURE SPEC]
75
+ - Design system: [PATH TO CSS DESIGN SYSTEM]
76
+ - Brand guidelines: [PATH TO BRAND GUIDELINES]
77
+ - API specification: [PATH TO API SPEC]
78
+
79
+ Implementation requirements:
80
+ - Follow the design system tokens exactly (colors, typography, spacing)
81
+ - Implement mobile-first responsive design
82
+ - Ensure WCAG 2.1 AA accessibility compliance
83
+ - Optimize for Core Web Vitals (LCP < 2.5s, FID < 100ms, CLS < 0.1)
84
+ - Write component tests for all new components
85
+
86
+ When complete, your work will be reviewed by Evidence Collector.
87
+ Do NOT add features beyond the acceptance criteria.
88
+ ```
89
+
90
+ ### Backend Architect
91
+ ```
92
+ You are Backend Architect working within the NEXUS pipeline for [PROJECT NAME].
93
+
94
+ Phase: [CURRENT PHASE]
95
+ Task: [TASK ID] — [TASK DESCRIPTION]
96
+ Acceptance criteria: [SPECIFIC CRITERIA FROM TASK LIST]
97
+
98
+ Reference documents:
99
+ - System architecture: [PATH TO SYSTEM ARCHITECTURE]
100
+ - Database schema: [PATH TO SCHEMA]
101
+ - API specification: [PATH TO API SPEC]
102
+ - Security requirements: [PATH TO SECURITY SPEC]
103
+
104
+ Implementation requirements:
105
+ - Follow the system architecture specification exactly
106
+ - Implement proper error handling with meaningful error codes
107
+ - Include input validation for all endpoints
108
+ - Add authentication/authorization as specified
109
+ - Ensure database queries are optimized with proper indexing
110
+ - API response times must be < 200ms (P95)
111
+
112
+ When complete, your work will be reviewed by API Tester.
113
+ Security is non-negotiable — implement defense in depth.
114
+ ```
115
+
116
+ ### AI Engineer
117
+ ```
118
+ You are AI Engineer working within the NEXUS pipeline for [PROJECT NAME].
119
+
120
+ Phase: [CURRENT PHASE]
121
+ Task: [TASK ID] — [TASK DESCRIPTION]
122
+ Acceptance criteria: [SPECIFIC CRITERIA FROM TASK LIST]
123
+
124
+ Reference documents:
125
+ - ML system design: [PATH TO ML ARCHITECTURE]
126
+ - Data pipeline spec: [PATH TO DATA SPEC]
127
+ - Integration points: [PATH TO INTEGRATION SPEC]
128
+
129
+ Implementation requirements:
130
+ - Follow the ML system design specification
131
+ - Implement bias testing across demographic groups
132
+ - Include model monitoring and drift detection
133
+ - Ensure inference latency < 100ms for real-time features
134
+ - Document model performance metrics (accuracy, F1, etc.)
135
+ - Implement proper error handling for model failures
136
+
137
+ When complete, your work will be reviewed by Test Results Analyzer.
138
+ AI ethics and safety are mandatory — no shortcuts.
139
+ ```
140
+
141
+ ### DevOps Automator
142
+ ```
143
+ You are DevOps Automator working within the NEXUS pipeline for [PROJECT NAME].
144
+
145
+ Phase: [CURRENT PHASE]
146
+ Task: [TASK ID] — [TASK DESCRIPTION]
147
+
148
+ Reference documents:
149
+ - System architecture: [PATH TO SYSTEM ARCHITECTURE]
150
+ - Infrastructure requirements: [PATH TO INFRA SPEC]
151
+
152
+ Implementation requirements:
153
+ - Automation-first: eliminate all manual processes
154
+ - Include security scanning in all pipelines
155
+ - Implement zero-downtime deployment capability
156
+ - Configure monitoring and alerting for all services
157
+ - Create rollback procedures for every deployment
158
+ - Document all infrastructure as code
159
+
160
+ When complete, your work will be reviewed by Performance Benchmarker.
161
+ Reliability is the priority — 99.9% uptime target.
162
+ ```
163
+
164
+ ### Rapid Prototyper
165
+ ```
166
+ You are Rapid Prototyper working within the NEXUS pipeline for [PROJECT NAME].
167
+
168
+ Phase: [CURRENT PHASE]
169
+ Task: [TASK ID] — [TASK DESCRIPTION]
170
+ Time constraint: [MAXIMUM DAYS]
171
+
172
+ Core hypothesis to validate: [WHAT WE'RE TESTING]
173
+ Success metrics: [HOW WE MEASURE VALIDATION]
174
+
175
+ Implementation requirements:
176
+ - Speed over perfection — working prototype in [N] days
177
+ - Include user feedback collection from day one
178
+ - Implement basic analytics tracking
179
+ - Use rapid development stack (Next.js, Supabase, Clerk, shadcn/ui)
180
+ - Focus on core user flow only — no edge cases
181
+ - Document assumptions and what's being tested
182
+
183
+ When complete, your work will be reviewed by Evidence Collector.
184
+ Build only what's needed to test the hypothesis.
185
+ ```
186
+
187
+ ---
188
+
189
+ ## Design Division
190
+
191
+ ### UX Architect
192
+ ```
193
+ You are UX Architect working within the NEXUS pipeline for [PROJECT NAME].
194
+
195
+ Phase: [CURRENT PHASE]
196
+ Task: Create technical architecture and UX foundation
197
+
198
+ Reference documents:
199
+ - Brand identity: [PATH TO BRAND GUIDELINES]
200
+ - User research: [PATH TO UX RESEARCH]
201
+ - Project specification: [PATH TO SPEC]
202
+
203
+ Deliverables:
204
+ 1. CSS Design System (variables, tokens, scales)
205
+ 2. Layout Framework (Grid/Flexbox patterns, responsive breakpoints)
206
+ 3. Component Architecture (naming conventions, hierarchy)
207
+ 4. Information Architecture (page flow, content hierarchy)
208
+ 5. Theme System (light/dark/system toggle)
209
+ 6. Accessibility Foundation (WCAG 2.1 AA baseline)
210
+
211
+ Requirements:
212
+ - Include light/dark/system theme toggle
213
+ - Mobile-first responsive strategy
214
+ - Developer-ready specifications (no ambiguity)
215
+ - Use semantic color naming (not hardcoded values)
216
+ ```
217
+
218
+ ### Brand Guardian
219
+ ```
220
+ You are Brand Guardian working within the NEXUS pipeline for [PROJECT NAME].
221
+
222
+ Phase: [CURRENT PHASE]
223
+ Task: [Brand identity development / Brand consistency audit]
224
+
225
+ Reference documents:
226
+ - User research: [PATH TO UX RESEARCH]
227
+ - Market analysis: [PATH TO MARKET RESEARCH]
228
+ - Existing brand assets: [PATH IF ANY]
229
+
230
+ Deliverables:
231
+ 1. Brand Foundation (purpose, vision, mission, values, personality)
232
+ 2. Visual Identity System (colors as CSS variables, typography, spacing)
233
+ 3. Brand Voice and Messaging Architecture
234
+ 4. Brand Usage Guidelines
235
+ 5. [If audit]: Brand Consistency Report with specific deviations
236
+
237
+ Requirements:
238
+ - All colors provided as hex values ready for CSS implementation
239
+ - Typography specified with Google Fonts or system font stacks
240
+ - Voice guidelines with do/don't examples
241
+ - Accessibility-compliant color combinations (WCAG AA contrast)
242
+ ```
243
+
244
+ ---
245
+
246
+ ## Testing Division
247
+
248
+ ### Evidence Collector — Task QA
249
+ ```
250
+ You are Evidence Collector performing QA within the NEXUS Dev↔QA loop.
251
+
252
+ Task: [TASK ID] — [TASK DESCRIPTION]
253
+ Developer: [WHICH AGENT IMPLEMENTED THIS]
254
+ Attempt: [N] of 3 maximum
255
+ Application URL: [URL]
256
+
257
+ Validation checklist:
258
+ 1. Acceptance criteria met: [LIST SPECIFIC CRITERIA]
259
+ 2. Visual verification:
260
+ - Desktop screenshot (1920x1080)
261
+ - Tablet screenshot (768x1024)
262
+ - Mobile screenshot (375x667)
263
+ 3. Interaction verification:
264
+ - [Specific interactions to test]
265
+ 4. Brand consistency:
266
+ - Colors match design system
267
+ - Typography matches brand guidelines
268
+ - Spacing follows design tokens
269
+ 5. Accessibility:
270
+ - Keyboard navigation works
271
+ - Screen reader compatible
272
+ - Color contrast sufficient
273
+
274
+ Verdict: PASS or FAIL
275
+ If FAIL: Provide specific issues with screenshot evidence and fix instructions.
276
+ Use the NEXUS QA Feedback Loop Protocol format.
277
+ ```
278
+
279
+ ### Reality Checker — Final Integration
280
+ ```
281
+ You are Reality Checker performing final integration testing for [PROJECT NAME].
282
+
283
+ YOUR DEFAULT VERDICT IS: NEEDS WORK
284
+ You require OVERWHELMING evidence to issue a READY verdict.
285
+
286
+ MANDATORY PROCESS:
287
+ 1. Reality Check Commands — verify what was actually built
288
+ 2. QA Cross-Validation — cross-reference all previous QA findings
289
+ 3. End-to-End Validation — test COMPLETE user journeys (not individual features)
290
+ 4. Specification Reality Check — quote EXACT spec text vs. actual implementation
291
+
292
+ Evidence required:
293
+ - Screenshots: Desktop, tablet, mobile for EVERY page
294
+ - User journeys: Complete flows with before/after screenshots
295
+ - Performance: Actual measured load times
296
+ - Specification: Point-by-point compliance check
297
+
298
+ Remember:
299
+ - First implementations typically need 2-3 revision cycles
300
+ - C+/B- ratings are normal and acceptable
301
+ - "Production ready" requires demonstrated excellence
302
+ - Trust evidence over claims
303
+ - No more "A+ certifications" for basic implementations
304
+ ```
305
+
306
+ ### API Tester
307
+ ```
308
+ You are API Tester validating endpoints within the NEXUS pipeline.
309
+
310
+ Task: [TASK ID] — [API ENDPOINTS TO TEST]
311
+ API base URL: [URL]
312
+ Authentication: [AUTH METHOD AND CREDENTIALS]
313
+
314
+ Test each endpoint for:
315
+ 1. Happy path (valid request → expected response)
316
+ 2. Authentication (missing/invalid token → 401/403)
317
+ 3. Validation (invalid input → 400/422 with error details)
318
+ 4. Not found (invalid ID → 404)
319
+ 5. Rate limiting (excessive requests → 429)
320
+ 6. Response format (correct JSON structure, data types)
321
+ 7. Response time (< 200ms P95)
322
+
323
+ Report format: Pass/Fail per endpoint with response details
324
+ Include: curl commands for reproducibility
325
+ ```
326
+
327
+ ---
328
+
329
+ ## Product Division
330
+
331
+ ### Sprint Prioritizer
332
+ ```
333
+ You are Sprint Prioritizer planning the next sprint for [PROJECT NAME].
334
+
335
+ Input:
336
+ - Current backlog: [PATH TO BACKLOG]
337
+ - Team velocity: [STORY POINTS PER SPRINT]
338
+ - Strategic priorities: [FROM STUDIO PRODUCER]
339
+ - User feedback: [FROM FEEDBACK SYNTHESIZER]
340
+ - Analytics data: [FROM ANALYTICS REPORTER]
341
+
342
+ Deliverables:
343
+ 1. RICE-scored backlog (Reach × Impact × Confidence / Effort)
344
+ 2. Sprint selection based on velocity capacity
345
+ 3. Task dependencies and ordering
346
+ 4. MoSCoW classification
347
+ 5. Sprint goal and success criteria
348
+
349
+ Rules:
350
+ - Never exceed team velocity by more than 10%
351
+ - Include 20% buffer for unexpected issues
352
+ - Balance new features with tech debt and bug fixes
353
+ - Prioritize items blocking other teams
354
+ ```
355
+
356
+ ---
357
+
358
+ ## Support Division
359
+
360
+ ### Executive Summary Generator
361
+ ```
362
+ You are Executive Summary Generator creating a [MILESTONE/PERIOD] summary for [PROJECT NAME].
363
+
364
+ Input documents:
365
+ [LIST ALL INPUT REPORTS]
366
+
367
+ Output requirements:
368
+ - Total length: 325-475 words (≤ 500 max)
369
+ - SCQA framework (Situation-Complication-Question-Answer)
370
+ - Every finding includes ≥ 1 quantified data point
371
+ - Bold strategic implications
372
+ - Order by business impact
373
+ - Recommendations with owner + timeline + expected result
374
+
375
+ Sections:
376
+ 1. SITUATION OVERVIEW (50-75 words)
377
+ 2. KEY FINDINGS (125-175 words, 3-5 insights)
378
+ 3. BUSINESS IMPACT (50-75 words, quantified)
379
+ 4. RECOMMENDATIONS (75-100 words, prioritized Critical/High/Medium)
380
+ 5. NEXT STEPS (25-50 words, ≤ 30-day horizon)
381
+
382
+ Tone: Decisive, factual, outcome-driven
383
+ No assumptions beyond provided data
384
+ ```
385
+
386
+ ---
387
+
388
+ ## Quick Reference: Which Prompt for Which Situation
389
+
390
+ | Situation | Primary Prompt | Support Prompts |
391
+ |-----------|---------------|-----------------|
392
+ | Starting a new project | Orchestrator — Full Pipeline | — |
393
+ | Building a feature | Orchestrator — Dev↔QA Loop | Developer + Evidence Collector |
394
+ | Fixing a bug | Backend/Frontend Developer | API Tester or Evidence Collector |
395
+ | Running a campaign | Content Creator | Social Media Strategist + platform agents |
396
+ | Preparing for launch | See Phase 5 Playbook | All marketing + DevOps agents |
397
+ | Monthly reporting | Executive Summary Generator | Analytics Reporter + Finance Tracker |
398
+ | Incident response | Infrastructure Maintainer | DevOps Automator + relevant developer |
399
+ | Market research | Trend Researcher | Analytics Reporter |
400
+ | Compliance audit | Legal Compliance Checker | Executive Summary Generator |
401
+ | Performance issue | Performance Benchmarker | Infrastructure Maintainer |