@polymorphism-tech/morph-spec 4.3.1 → 4.3.2

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 (192) hide show
  1. package/bin/morph-spec.js +1 -1
  2. package/package.json +2 -1
  3. package/src/commands/project/doctor.js +24 -18
  4. package/src/commands/project/init.js +1 -1
  5. package/src/commands/state/state.js +24 -2
  6. package/src/core/templates/template-registry.js +1 -1
  7. package/src/core/workflows/workflow-detector.js +2 -2
  8. package/stacks/blazor-azure/.claude/commands/morph-apply.md +221 -0
  9. package/stacks/blazor-azure/.claude/commands/morph-archive.md +79 -0
  10. package/stacks/blazor-azure/.claude/commands/morph-deploy.md +529 -0
  11. package/stacks/blazor-azure/.claude/commands/morph-infra.md +209 -0
  12. package/stacks/blazor-azure/.claude/commands/morph-preflight.md +227 -0
  13. package/stacks/blazor-azure/.claude/commands/morph-proposal.md +122 -0
  14. package/stacks/blazor-azure/.claude/commands/morph-status.md +86 -0
  15. package/stacks/blazor-azure/.claude/commands/morph-troubleshoot.md +122 -0
  16. package/stacks/blazor-azure/.morph/.morphversion +5 -5
  17. package/stacks/blazor-azure/.morph/archive/.gitkeep +25 -0
  18. package/stacks/blazor-azure/.morph/config/config.json +9 -0
  19. package/stacks/blazor-azure/.morph/features/.gitkeep +25 -0
  20. package/stacks/blazor-azure/.morph/project/context/README.md +17 -0
  21. package/stacks/blazor-azure/.morph/schemas/agent.schema.json +296 -0
  22. package/stacks/blazor-azure/.morph/schemas/tasks.schema.json +220 -0
  23. package/stacks/blazor-azure/.morph/specs/.gitkeep +20 -0
  24. package/stacks/blazor-azure/.morph/standards/ai-agents/blazor-ui.md +364 -0
  25. package/stacks/blazor-azure/.morph/standards/ai-agents/production.md +415 -0
  26. package/stacks/blazor-azure/.morph/standards/ai-agents/setup.md +418 -0
  27. package/stacks/blazor-azure/.morph/standards/ai-agents/team-orchestration.md +479 -0
  28. package/stacks/blazor-azure/.morph/standards/ai-agents/workflows.md +354 -0
  29. package/stacks/blazor-azure/.morph/standards/architecture/ddd/aggregates.md +120 -0
  30. package/stacks/blazor-azure/.morph/standards/architecture/ddd/entities.md +99 -0
  31. package/stacks/blazor-azure/.morph/standards/architecture/ddd/value-objects.md +124 -0
  32. package/stacks/blazor-azure/.morph/standards/backend/api/minimal-api.md +494 -0
  33. package/stacks/blazor-azure/.morph/standards/backend/api/rest.md +492 -0
  34. package/stacks/blazor-azure/.morph/standards/backend/api/validation.md +88 -0
  35. package/stacks/blazor-azure/.morph/standards/backend/authentication/passkeys.md +428 -0
  36. package/stacks/blazor-azure/.morph/standards/backend/database/ef-core.md +199 -0
  37. package/stacks/blazor-azure/.morph/standards/backend/database/migrations.md +393 -0
  38. package/stacks/blazor-azure/.morph/standards/backend/database/postgresql/database.md +352 -0
  39. package/stacks/blazor-azure/.morph/standards/backend/database/repository-patterns.md +528 -0
  40. package/stacks/blazor-azure/.morph/standards/backend/database/vector-search-rag.md +541 -0
  41. package/stacks/blazor-azure/.morph/standards/backend/dotnet/async.md +366 -0
  42. package/stacks/blazor-azure/.morph/standards/backend/dotnet/core.md +117 -0
  43. package/stacks/blazor-azure/.morph/standards/backend/dotnet/di.md +439 -0
  44. package/stacks/blazor-azure/.morph/standards/backend/dotnet/program-cs-checklist.md +92 -0
  45. package/stacks/blazor-azure/.morph/standards/backend/integrations/asaas/asaas-api.md +216 -0
  46. package/stacks/blazor-azure/.morph/standards/backend/integrations/clerk/clerk-auth.md +290 -0
  47. package/stacks/blazor-azure/.morph/standards/backend/integrations/hangfire/hangfire-jobs.md +350 -0
  48. package/stacks/blazor-azure/.morph/standards/backend/integrations/resend/resend-email.md +385 -0
  49. package/stacks/blazor-azure/.morph/standards/context/analytics.md +96 -0
  50. package/stacks/blazor-azure/.morph/standards/context/bundles.md +110 -0
  51. package/stacks/blazor-azure/.morph/standards/context/priming.md +78 -0
  52. package/stacks/blazor-azure/.morph/standards/core/architecture.md +185 -0
  53. package/stacks/blazor-azure/.morph/standards/core/coding.md +214 -0
  54. package/stacks/blazor-azure/.morph/standards/core/git-branching-strategy.md +403 -0
  55. package/stacks/blazor-azure/.morph/standards/core/git.md +185 -0
  56. package/stacks/blazor-azure/.morph/standards/core/testing.md +295 -0
  57. package/stacks/blazor-azure/.morph/standards/data/nosql/blob-storage.md +102 -0
  58. package/stacks/blazor-azure/.morph/standards/data/nosql/cache/redis.md +97 -0
  59. package/stacks/blazor-azure/.morph/standards/data/nosql/cosmos-db.md +118 -0
  60. package/stacks/blazor-azure/.morph/standards/data/vector-search/azure-ai-search.md +121 -0
  61. package/stacks/blazor-azure/.morph/standards/data/vector-search/rag-chunking.md +104 -0
  62. package/stacks/blazor-azure/.morph/standards/frontend/blazor/design-checklist.md +222 -0
  63. package/stacks/blazor-azure/.morph/standards/frontend/blazor/fluent-ui-setup.md +595 -0
  64. package/stacks/blazor-azure/.morph/standards/frontend/blazor/fluent-ui.md +137 -0
  65. package/stacks/blazor-azure/.morph/standards/frontend/blazor/html-conversion.md +184 -0
  66. package/stacks/blazor-azure/.morph/standards/frontend/blazor/lifecycle.md +195 -0
  67. package/stacks/blazor-azure/.morph/standards/frontend/blazor/pitfalls.md +198 -0
  68. package/stacks/blazor-azure/.morph/standards/frontend/blazor/state.md +191 -0
  69. package/stacks/blazor-azure/.morph/standards/frontend/design-system/animations.md +151 -0
  70. package/stacks/blazor-azure/.morph/standards/frontend/design-system/naming.md +64 -0
  71. package/stacks/blazor-azure/.morph/standards/frontend/nextjs/nextjs-patterns.md +198 -0
  72. package/stacks/blazor-azure/.morph/standards/infrastructure/azure/azure.md +624 -0
  73. package/stacks/blazor-azure/.morph/standards/infrastructure/azure/bicep/bicep-patterns.md +422 -0
  74. package/stacks/blazor-azure/.morph/standards/infrastructure/azure/devops/azure-devops-setup.md +516 -0
  75. package/stacks/blazor-azure/.morph/standards/infrastructure/azure/devops/local-development.md +520 -0
  76. package/stacks/blazor-azure/.morph/standards/infrastructure/azure/services/functions.md +486 -0
  77. package/stacks/blazor-azure/.morph/standards/infrastructure/azure/services/service-bus.md +459 -0
  78. package/stacks/blazor-azure/.morph/standards/infrastructure/azure/services/storage.md +407 -0
  79. package/stacks/blazor-azure/.morph/standards/infrastructure/docker/easypanel-deploy.md +196 -0
  80. package/stacks/blazor-azure/.morph/standards/infrastructure/supabase/mcp-setup.md +252 -0
  81. package/stacks/blazor-azure/.morph/standards/infrastructure/supabase/supabase-auth.md +176 -0
  82. package/stacks/blazor-azure/.morph/standards/infrastructure/supabase/supabase-pgvector.md +169 -0
  83. package/stacks/blazor-azure/.morph/standards/infrastructure/supabase/supabase-rls.md +184 -0
  84. package/stacks/blazor-azure/.morph/standards/infrastructure/supabase/supabase-storage.md +153 -0
  85. package/stacks/blazor-azure/.morph/standards/integration/api/graphql.md +91 -0
  86. package/stacks/blazor-azure/.morph/standards/integration/api/grpc.md +114 -0
  87. package/stacks/blazor-azure/.morph/standards/integration/api/rest-design.md +95 -0
  88. package/stacks/blazor-azure/.morph/standards/integration/event-driven/cqrs.md +101 -0
  89. package/stacks/blazor-azure/.morph/standards/integration/event-driven/event-sourcing.md +124 -0
  90. package/stacks/blazor-azure/.morph/standards/integration/event-driven/service-bus.md +95 -0
  91. package/stacks/blazor-azure/.morph/standards/observability/logging.md +131 -0
  92. package/stacks/blazor-azure/.morph/standards/observability/metrics.md +121 -0
  93. package/stacks/blazor-azure/.morph/standards/observability/monitoring.md +114 -0
  94. package/stacks/blazor-azure/.morph/standards/observability/tracing.md +132 -0
  95. package/stacks/blazor-azure/.morph/standards/workflows/parallel-execution.md +112 -0
  96. package/stacks/blazor-azure/.morph/standards/workflows/thread-management.md +113 -0
  97. package/stacks/blazor-azure/.morph/test-infra/example.bicep +59 -0
  98. package/stacks/blazor-azure/CLAUDE.md +106 -101
  99. package/stacks/nextjs-supabase/.claude/commands/morph-apply.md +221 -0
  100. package/stacks/nextjs-supabase/.claude/commands/morph-archive.md +79 -0
  101. package/stacks/nextjs-supabase/.claude/commands/morph-deploy.md +529 -0
  102. package/stacks/nextjs-supabase/.claude/commands/morph-infra.md +209 -0
  103. package/stacks/nextjs-supabase/.claude/commands/morph-preflight.md +227 -0
  104. package/stacks/nextjs-supabase/.claude/commands/morph-proposal.md +122 -0
  105. package/stacks/nextjs-supabase/.claude/commands/morph-status.md +86 -0
  106. package/stacks/nextjs-supabase/.claude/commands/morph-troubleshoot.md +122 -0
  107. package/stacks/nextjs-supabase/.morph/.morphversion +5 -0
  108. package/stacks/nextjs-supabase/.morph/config/agents.json +730 -127
  109. package/stacks/nextjs-supabase/.morph/config/config.json +9 -0
  110. package/stacks/nextjs-supabase/.morph/project/context/README.md +17 -0
  111. package/stacks/nextjs-supabase/.morph/standards/ai-agents/blazor-ui.md +364 -0
  112. package/stacks/nextjs-supabase/.morph/standards/ai-agents/production.md +415 -0
  113. package/stacks/nextjs-supabase/.morph/standards/ai-agents/setup.md +418 -0
  114. package/stacks/nextjs-supabase/.morph/standards/ai-agents/team-orchestration.md +479 -0
  115. package/stacks/nextjs-supabase/.morph/standards/ai-agents/workflows.md +354 -0
  116. package/stacks/nextjs-supabase/.morph/standards/architecture/ddd/aggregates.md +120 -0
  117. package/stacks/nextjs-supabase/.morph/standards/architecture/ddd/entities.md +99 -0
  118. package/stacks/nextjs-supabase/.morph/standards/architecture/ddd/value-objects.md +124 -0
  119. package/stacks/nextjs-supabase/.morph/standards/backend/api/minimal-api.md +494 -0
  120. package/stacks/nextjs-supabase/.morph/standards/backend/api/rest.md +492 -0
  121. package/stacks/nextjs-supabase/.morph/standards/backend/api/validation.md +88 -0
  122. package/stacks/nextjs-supabase/.morph/standards/backend/authentication/passkeys.md +428 -0
  123. package/stacks/nextjs-supabase/.morph/standards/backend/database/ef-core.md +199 -0
  124. package/stacks/nextjs-supabase/.morph/standards/backend/database/migrations.md +393 -0
  125. package/stacks/nextjs-supabase/.morph/standards/backend/database/postgresql/database.md +352 -0
  126. package/stacks/nextjs-supabase/.morph/standards/backend/database/repository-patterns.md +528 -0
  127. package/stacks/nextjs-supabase/.morph/standards/backend/database/vector-search-rag.md +541 -0
  128. package/stacks/nextjs-supabase/.morph/standards/backend/dotnet/async.md +366 -0
  129. package/stacks/nextjs-supabase/.morph/standards/backend/dotnet/core.md +117 -0
  130. package/stacks/nextjs-supabase/.morph/standards/backend/dotnet/di.md +439 -0
  131. package/stacks/nextjs-supabase/.morph/standards/backend/dotnet/program-cs-checklist.md +92 -0
  132. package/stacks/nextjs-supabase/.morph/standards/backend/integrations/asaas/asaas-api.md +216 -0
  133. package/stacks/nextjs-supabase/.morph/standards/backend/integrations/clerk/clerk-auth.md +290 -0
  134. package/stacks/nextjs-supabase/.morph/standards/backend/integrations/hangfire/hangfire-jobs.md +350 -0
  135. package/stacks/nextjs-supabase/.morph/standards/backend/integrations/resend/resend-email.md +385 -0
  136. package/stacks/nextjs-supabase/.morph/standards/context/analytics.md +96 -0
  137. package/stacks/nextjs-supabase/.morph/standards/context/bundles.md +110 -0
  138. package/stacks/nextjs-supabase/.morph/standards/context/priming.md +78 -0
  139. package/stacks/nextjs-supabase/.morph/standards/core/architecture.md +185 -0
  140. package/stacks/nextjs-supabase/.morph/standards/core/coding.md +214 -0
  141. package/stacks/nextjs-supabase/.morph/standards/core/git-branching-strategy.md +403 -0
  142. package/stacks/nextjs-supabase/.morph/standards/core/git.md +185 -0
  143. package/stacks/nextjs-supabase/.morph/standards/core/testing.md +295 -0
  144. package/stacks/nextjs-supabase/.morph/standards/data/nosql/blob-storage.md +102 -0
  145. package/stacks/nextjs-supabase/.morph/standards/data/nosql/cache/redis.md +97 -0
  146. package/stacks/nextjs-supabase/.morph/standards/data/nosql/cosmos-db.md +118 -0
  147. package/stacks/nextjs-supabase/.morph/standards/data/vector-search/azure-ai-search.md +121 -0
  148. package/stacks/nextjs-supabase/.morph/standards/data/vector-search/rag-chunking.md +104 -0
  149. package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/design-checklist.md +222 -0
  150. package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/fluent-ui-setup.md +595 -0
  151. package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/fluent-ui.md +137 -0
  152. package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/html-conversion.md +184 -0
  153. package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/lifecycle.md +195 -0
  154. package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/pitfalls.md +198 -0
  155. package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/state.md +191 -0
  156. package/stacks/nextjs-supabase/.morph/standards/frontend/design-system/animations.md +151 -0
  157. package/stacks/nextjs-supabase/.morph/standards/frontend/design-system/naming.md +64 -0
  158. package/stacks/nextjs-supabase/.morph/standards/frontend/nextjs/nextjs-patterns.md +198 -0
  159. package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/azure.md +624 -0
  160. package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/bicep/bicep-patterns.md +422 -0
  161. package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/devops/azure-devops-setup.md +516 -0
  162. package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/devops/local-development.md +520 -0
  163. package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/services/functions.md +486 -0
  164. package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/services/service-bus.md +459 -0
  165. package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/services/storage.md +407 -0
  166. package/stacks/nextjs-supabase/.morph/standards/infrastructure/docker/easypanel-deploy.md +196 -0
  167. package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/mcp-setup.md +252 -0
  168. package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/supabase-auth.md +176 -0
  169. package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/supabase-pgvector.md +169 -0
  170. package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/supabase-rls.md +184 -0
  171. package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/supabase-storage.md +153 -0
  172. package/stacks/nextjs-supabase/.morph/standards/integration/api/graphql.md +91 -0
  173. package/stacks/nextjs-supabase/.morph/standards/integration/api/grpc.md +114 -0
  174. package/stacks/nextjs-supabase/.morph/standards/integration/api/rest-design.md +95 -0
  175. package/stacks/nextjs-supabase/.morph/standards/integration/event-driven/cqrs.md +101 -0
  176. package/stacks/nextjs-supabase/.morph/standards/integration/event-driven/event-sourcing.md +124 -0
  177. package/stacks/nextjs-supabase/.morph/standards/integration/event-driven/service-bus.md +95 -0
  178. package/stacks/nextjs-supabase/.morph/standards/observability/logging.md +131 -0
  179. package/stacks/nextjs-supabase/.morph/standards/observability/metrics.md +121 -0
  180. package/stacks/nextjs-supabase/.morph/standards/observability/monitoring.md +114 -0
  181. package/stacks/nextjs-supabase/.morph/standards/observability/tracing.md +132 -0
  182. package/stacks/nextjs-supabase/.morph/standards/workflows/parallel-execution.md +112 -0
  183. package/stacks/nextjs-supabase/.morph/standards/workflows/thread-management.md +113 -0
  184. package/stacks/nextjs-supabase/CLAUDE.md +69 -63
  185. package/stacks/blazor-azure/.morph/templates/.gitkeep +0 -0
  186. package/stacks/blazor-azure/.morph/templates/infrastructure/github/workflows/cd-prod.yml.hbs +0 -41
  187. package/stacks/blazor-azure/.morph/templates/infrastructure/github/workflows/cd-staging.yml.hbs +0 -24
  188. package/stacks/blazor-azure/.morph/templates/infrastructure/github/workflows/ci-build.yml.hbs +0 -23
  189. package/stacks/nextjs-supabase/.morph/templates/.gitkeep +0 -0
  190. package/stacks/nextjs-supabase/.morph/templates/infrastructure/github/workflows/cd-prod.yml.hbs +0 -22
  191. package/stacks/nextjs-supabase/.morph/templates/infrastructure/github/workflows/cd-staging.yml.hbs +0 -22
  192. package/stacks/nextjs-supabase/.morph/templates/infrastructure/github/workflows/ci-build.yml.hbs +0 -35
@@ -1,18 +1,17 @@
1
1
  {
2
2
  "$schema": "./agent-schema.json",
3
3
  "version": "3.1.0-hierarchical",
4
- "stack": "nextjs-supabase",
5
- "total_agents": 15,
4
+ "total_agents": 33,
6
5
  "tiers": {
7
- "tier_1_orchestrators": 1,
8
- "tier_2_leaders": 2,
9
- "tier_3_specialists": 11,
6
+ "tier_1_orchestrators": 3,
7
+ "tier_2_leaders": 3,
8
+ "tier_3_specialists": 26,
10
9
  "tier_4_validators": 1
11
10
  },
12
11
 
13
12
  "agents": {
14
13
 
15
- "_comment_tier_1": "=== TIER 1: ORCHESTRATORS (1) ===",
14
+ "_comment_tier_1": "=== TIER 1: ORCHESTRATORS (3) ===",
16
15
 
17
16
  "standards-architect": {
18
17
  "tier": 1,
@@ -24,90 +23,176 @@
24
23
  "validators": ["architecture", "packages"],
25
24
  "relationships": {
26
25
  "reports_to": "user",
27
- "coordinates": ["dotnet-senior", "supabase-expert", "nextjs-expert", "testing-specialist", "ui-ux-designer"],
26
+ "coordinates": ["dotnet-senior", "azure-architect", "ui-designer", "testing-specialist", "code-analyzer", "troubleshooting-expert", "documentation-specialist", "load-testing-expert"],
28
27
  "escalates_to": "user",
29
28
  "team_role": "lead"
30
29
  },
31
- "standards": ["coding.md", "architecture.md", "nextjs-patterns.md", "supabase-auth.md", "supabase-rls.md"],
30
+ "standards": ["core/coding.md", "core/architecture.md", "backend/dotnet/program-cs-checklist.md"],
32
31
  "teammate": {
33
32
  "role": "Team Lead (Delegate Mode)",
34
- "icon": "T",
35
- "spawn_prompt": "You are the Chief Architect and Team Lead in delegate mode. Coordinate specialists, resolve conflicts, synthesize results. DO NOT implement code yourself. Escalate conflicts to user when teammates disagree on architecture/tech choices."
33
+ "icon": "🎯",
34
+ "spawn_prompt": "You are the Chief Architect and Team Lead in delegate mode. Coordinate Domain Leaders, resolve conflicts, synthesize results. DO NOT implement code yourself. Escalate conflicts to user when teammates disagree on architecture/tech choices."
36
35
  }
37
36
  },
38
37
 
39
- "_comment_tier_2": "=== TIER 2: DOMAIN LEADERS (2) ===",
38
+ "ai-system-architect": {
39
+ "tier": 1,
40
+ "role": "orchestrator",
41
+ "title": "AI/Agent Architect",
42
+ "domains": ["ai-orchestration", "architecture"],
43
+ "keywords": ["agent system", "ai architecture", "orchestration", "multi-agent", "agent workflow"],
44
+ "always_active": false,
45
+ "validators": ["architecture"],
46
+ "relationships": {
47
+ "reports_to": "standards-architect",
48
+ "coordinates": ["ms-agent-expert"],
49
+ "escalates_to": "standards-architect",
50
+ "collaborates_with": ["dotnet-senior"],
51
+ "team_role": "orchestrator"
52
+ },
53
+ "standards": ["core/coding.md", "core/architecture.md", "ai-agents/setup.md", "ai-agents/workflows.md", "ai-agents/production.md", "ai-agents/blazor-ui.md"],
54
+ "teammate": {
55
+ "role": "AI Architect",
56
+ "icon": "🤖",
57
+ "spawn_prompt": "You are the AI/Agent System Architect. Design agent workflows, tool integrations, and orchestration patterns. Coordinate with ms-agent-expert for implementation."
58
+ }
59
+ },
60
+
61
+ "popm-advisor": {
62
+ "tier": 1,
63
+ "role": "orchestrator",
64
+ "title": "Product/Project Advisor",
65
+ "domains": ["requirements", "business-value"],
66
+ "keywords": ["unclear", "requirements", "priority", "roi", "business value", "user story"],
67
+ "always_active": false,
68
+ "validators": [],
69
+ "relationships": {
70
+ "reports_to": "user",
71
+ "coordinates": [],
72
+ "team_role": "planning_only",
73
+ "active_phases": ["proposal", "setup", "design"]
74
+ },
75
+ "standards": ["core/coding.md", "core/architecture.md"],
76
+ "teammate": null
77
+ },
78
+
79
+ "_comment_tier_2": "=== TIER 2: DOMAIN LEADERS (3) ===",
40
80
 
41
81
  "dotnet-senior": {
42
82
  "tier": 2,
43
83
  "role": "domain-leader",
44
84
  "title": "Backend Squad Leader",
45
85
  "domains": ["backend"],
46
- "keywords": ["backend", "api", "dotnet", ".net", "csharp", "c#", "minimal api", "endpoint", "dapper", "npgsql"],
86
+ "keywords": ["backend", "api", "dotnet", ".net", "csharp", "c#", "web api", "minimal api"],
47
87
  "always_active": true,
48
88
  "validators": ["architecture", "packages"],
49
89
  "relationships": {
50
90
  "reports_to": "standards-architect",
51
- "coordinates": ["api-designer", "testing-specialist"],
91
+ "coordinates": ["ef-modeler", "event-architect", "api-designer", "nosql-cache-expert", "ddd-expert", "hangfire-orchestrator", "ms-agent-expert", "asaas-financial", "clerk-auth", "resend-email"],
52
92
  "escalates_to": "standards-architect",
53
- "collaborates_with": ["supabase-expert", "nextjs-expert", "container-specialist"],
93
+ "collaborates_with": ["azure-architect", "blazor-builder", "nextjs-expert"],
54
94
  "team_role": "domain_leader"
55
95
  },
56
- "standards": ["coding.md", "architecture.md"],
96
+ "standards": ["core/coding.md", "core/architecture.md", "backend/dotnet/core.md", "backend/dotnet/program-cs-checklist.md"],
57
97
  "teammate": {
58
98
  "role": "Backend Squad Leader",
59
- "icon": "B",
60
- "spawn_prompt": "You are the Backend Squad Leader. .NET 10 Minimal API with Npgsql + Dapper (NOT EF Core). Coordinate backend specialists. Validate Supabase JWT tokens in API middleware. Assign tasks, review designs, enforce backend standards. Escalate cross-domain conflicts to standards-architect."
99
+ "icon": "⚙️",
100
+ "spawn_prompt": "You are the Backend Squad Leader. Coordinate backend specialists (ef-modeler, event-architect, api-designer, etc.). Assign tasks, review designs, enforce backend standards. Escalate cross-domain conflicts to standards-architect."
101
+ }
102
+ },
103
+
104
+ "azure-architect": {
105
+ "tier": 2,
106
+ "role": "domain-leader",
107
+ "title": "Infrastructure Squad Leader",
108
+ "domains": ["infrastructure"],
109
+ "keywords": ["infrastructure/azure/azure", "cloud", "infrastructure", "infra", "deployment", "hosting"],
110
+ "always_active": true,
111
+ "validators": ["architecture"],
112
+ "relationships": {
113
+ "reports_to": "standards-architect",
114
+ "coordinates": ["bicep-architect", "devops-engineer", "container-specialist", "observability-expert", "azure-identity"],
115
+ "escalates_to": "standards-architect",
116
+ "collaborates_with": ["dotnet-senior", "blazor-builder", "nextjs-expert"],
117
+ "team_role": "domain_leader"
118
+ },
119
+ "standards": ["core/coding.md", "core/architecture.md", "azure.md"],
120
+ "teammate": {
121
+ "role": "Infrastructure Squad Leader",
122
+ "icon": "☁️",
123
+ "spawn_prompt": "You are the Infrastructure Squad Leader. Coordinate infra specialists (bicep-architect, devops-engineer, container-specialist, observability-expert). Focus on Azure resources, IaC, CI/CD, cost optimization. Escalate to standards-architect if conflicts."
61
124
  }
62
125
  },
63
126
 
64
- "ui-ux-designer": {
127
+ "ui-designer": {
65
128
  "tier": 2,
66
129
  "role": "domain-leader",
67
130
  "title": "UI/UX Squad Leader",
68
131
  "domains": ["frontend-design"],
69
- "keywords": ["wireframe", "mockup", "user flow", "ux", "design", "interface design", "user experience", "page", "dashboard", "form", "UI", "screen", "panel"],
132
+ "keywords": ["wireframe", "mockup", "user flow", "ux", "design", "interface design", "user experience", "page", "dashboard", "form", "UI", "settings", "interface", "screen", "panel", "portal", "view"],
70
133
  "always_active": false,
71
134
  "validators": ["design-system", "contrast"],
72
135
  "relationships": {
73
136
  "reports_to": "standards-architect",
74
- "coordinates": ["nextjs-expert", "css-specialist"],
137
+ "coordinates": ["blazor-builder", "nextjs-expert", "css-specialist"],
75
138
  "escalates_to": "standards-architect",
76
139
  "collaborates_with": ["dotnet-senior"],
77
140
  "team_role": "domain_leader",
78
141
  "active_phases": ["uiux"]
79
142
  },
80
- "standards": ["css-naming.md", "nextjs-patterns.md"],
143
+ "standards": ["frontend/blazor/fluent-ui.md", "mudblazor-blazor.md", "frontend/design-system/naming.md", "frontend/design-system/animations.md"],
81
144
  "teammate": {
82
- "role": "UI/UX Squad Leader",
83
- "icon": "U",
84
- "spawn_prompt": "You are the UI/UX Squad Leader. Create wireframes, mockups, user flows. Define design system (colors, typography, spacing) using Tailwind CSS tokens. Coordinate with nextjs-expert and css-specialist for implementation. Work is AGNOSTIC (no implementation code)."
145
+ "role": "UI/UX Squad Leader (FASE 1.5)",
146
+ "icon": "🎨",
147
+ "spawn_prompt": "You are the UI/UX Squad Leader for FASE 1.5. Create wireframes, mockups, user flows. Define design system (colors, typography, spacing). Coordinate with blazor-builder or nextjs-expert for stack-specific patterns. Work is AGNOSTIC (no implementation code)."
85
148
  }
86
149
  },
87
150
 
88
- "_comment_tier_3": "=== TIER 3: SPECIALISTS (8) ===",
151
+ "_comment_tier_3_backend": "=== TIER 3: BACKEND SPECIALISTS (10) ===",
89
152
 
90
- "nextjs-expert": {
153
+ "ef-modeler": {
91
154
  "tier": 3,
92
155
  "role": "specialist",
93
- "title": "Next.js Development Specialist",
94
- "domains": ["frontend-nextjs"],
95
- "keywords": ["nextjs", "next.js", "react", "frontend", "shadcn", "server components", "server actions", "app router", "tanstack"],
156
+ "title": "Data Persistence Specialist (Relational)",
157
+ "domains": ["backend-data"],
158
+ "keywords": ["entity", "database", "migration", "ef core", "entity framework", "sql", "dbcontext"],
159
+ "always_active": true,
160
+ "validators": ["architecture", "blazor-concurrency"],
161
+ "relationships": {
162
+ "reports_to": "dotnet-senior",
163
+ "coordinates": [],
164
+ "escalates_to": "dotnet-senior",
165
+ "collaborates_with": ["blazor-builder", "nextjs-expert", "api-designer", "nosql-cache-expert"],
166
+ "team_role": "specialist"
167
+ },
168
+ "standards": ["core/coding.md", "backend/database/ef-core.md", "backend/dotnet/core.md"],
169
+ "teammate": {
170
+ "role": "Data Persistence Specialist",
171
+ "icon": "🗄️",
172
+ "spawn_prompt": "You are the Data Persistence Specialist (EF Core). Focus on Models/, Migrations/, DbContext. Follow blazor-efcore.md standards. Use IDbContextFactory for background ops. Message blazor-builder when entities ready for UI binding."
173
+ }
174
+ },
175
+
176
+ "event-architect": {
177
+ "tier": 3,
178
+ "role": "specialist",
179
+ "title": "Event-Driven Architecture Specialist",
180
+ "domains": ["backend-events"],
181
+ "keywords": ["event", "service bus", "rabbitmq", "cqrs", "event sourcing", "messaging", "pub/sub", "domain events", "saga", "real-time", "realtime", "websocket", "live updates"],
96
182
  "always_active": false,
97
- "validators": ["packages", "css", "design-system"],
183
+ "validators": ["architecture", "event-driven"],
98
184
  "relationships": {
99
- "reports_to": "ui-ux-designer",
185
+ "reports_to": "dotnet-senior",
100
186
  "coordinates": [],
101
- "escalates_to": "standards-architect",
102
- "collaborates_with": ["api-designer", "css-specialist", "supabase-expert"],
103
- "team_role": "specialist",
104
- "active_phases": ["uiux", "implement"]
187
+ "escalates_to": "dotnet-senior",
188
+ "collaborates_with": ["ddd-expert", "api-designer", "azure-architect"],
189
+ "team_role": "specialist"
105
190
  },
106
- "standards": ["coding.md", "nextjs-patterns.md"],
191
+ "standards": ["core/coding.md", "core/architecture.md"],
107
192
  "teammate": {
108
- "role": "Next.js Development Specialist",
109
- "icon": "N",
110
- "spawn_prompt": "You are the Next.js 15 Development Specialist. Build App Router pages with shadcn/ui components. Use @supabase/ssr for auth (NOT Clerk). Implement Server Components, Server Actions, Route Handlers. Use TanStack Query for client-side data fetching. Message api-designer for backend endpoints."
193
+ "role": "Event-Driven Architecture Specialist",
194
+ "icon": "📨",
195
+ "spawn_prompt": "You are the Event-Driven Architecture Specialist. Implement Azure Service Bus queues/topics, CQRS patterns, Event Sourcing, Domain Events. Design idempotent handlers, dead letter queues, saga patterns. Collaborate with ddd-expert for event design."
111
196
  }
112
197
  },
113
198
 
@@ -116,113 +201,234 @@
116
201
  "role": "specialist",
117
202
  "title": "API Design Specialist",
118
203
  "domains": ["backend-api"],
119
- "keywords": ["rest", "api", "openapi", "swagger", "endpoint", "minimal api", "route", "versioning", "rate limiting"],
204
+ "keywords": ["rest", "graphql", "grpc", "api", "openapi", "swagger", "versioning", "rate limiting", "hot chocolate", "endpoint"],
120
205
  "always_active": false,
121
- "validators": ["architecture"],
206
+ "validators": ["architecture", "api-design"],
122
207
  "relationships": {
123
208
  "reports_to": "dotnet-senior",
124
209
  "coordinates": [],
125
210
  "escalates_to": "dotnet-senior",
126
- "collaborates_with": ["supabase-expert", "nextjs-expert"],
211
+ "collaborates_with": ["ef-modeler", "event-architect", "blazor-builder", "nextjs-expert"],
127
212
  "team_role": "specialist"
128
213
  },
129
- "standards": ["coding.md", "architecture.md"],
214
+ "standards": ["core/coding.md", "core/architecture.md"],
130
215
  "teammate": {
131
216
  "role": "API Design Specialist",
132
- "icon": "A",
133
- "spawn_prompt": "You are the API Design Specialist. Design REST APIs using .NET 10 Minimal API (MapGet, MapPost, etc.). Use endpoint groups, typed results, OpenAPI annotations. Implement API versioning, rate limiting. Validate Supabase JWT in middleware."
217
+ "icon": "🔌",
218
+ "spawn_prompt": "You are the API Design Specialist. Design REST APIs (resource naming, HTTP verbs, status codes), GraphQL schemas with Hot Chocolate, gRPC .proto files. Add OpenAPI/Swagger annotations. Implement API versioning, rate limiting. Review with frontend specialists."
134
219
  }
135
220
  },
136
221
 
137
- "supabase-expert": {
222
+ "nosql-cache-expert": {
138
223
  "tier": 3,
139
224
  "role": "specialist",
140
- "title": "Supabase Platform Specialist",
141
- "domains": ["platform-supabase"],
142
- "keywords": ["supabase", "postgres", "postgresql", "rls", "row level security", "auth", "storage", "realtime", "pgvector", "migration", "backend/database/postgresql/database", "policy"],
143
- "always_active": true,
225
+ "title": "NoSQL & Cache Specialist",
226
+ "domains": ["backend-nosql"],
227
+ "keywords": ["cosmos", "cosmosdb", "redis", "cache", "blob storage", "nosql", "document db", "key-value", "azure storage"],
228
+ "always_active": false,
144
229
  "validators": ["architecture"],
145
230
  "relationships": {
146
- "reports_to": "standards-architect",
231
+ "reports_to": "dotnet-senior",
147
232
  "coordinates": [],
148
- "escalates_to": "standards-architect",
149
- "collaborates_with": ["dotnet-senior", "nextjs-expert", "security-expert"],
233
+ "escalates_to": "dotnet-senior",
234
+ "collaborates_with": ["ef-modeler", "azure-architect"],
150
235
  "team_role": "specialist"
151
236
  },
152
- "standards": ["supabase-auth.md", "supabase-rls.md", "supabase-storage.md", "supabase-pgvector.md"],
237
+ "standards": ["core/coding.md", "core/architecture.md"],
153
238
  "teammate": {
154
- "role": "Supabase Platform Specialist",
155
- "icon": "S",
156
- "spawn_prompt": "You are the Supabase Platform Specialist. Design PostgreSQL schemas (snake_case), write SQL migrations, create RLS policies for multi-tenant security. Configure Supabase Auth (Google + GitHub OAuth), Storage buckets with policies, Realtime subscriptions. Implement pgvector for vector search when needed. Collaborate with security-expert for RLS audit."
239
+ "role": "NoSQL & Cache Specialist",
240
+ "icon": "💾",
241
+ "spawn_prompt": "You are the NoSQL & Cache Specialist. Implement Azure Cosmos DB (SQL API, partition keys, RUs), Redis Cache (cache-aside, read-through, write-behind), Blob Storage (hot/cool/archive tiers). Design cache invalidation strategies."
157
242
  }
158
243
  },
159
244
 
160
- "easypanel-deployer": {
245
+ "ddd-expert": {
161
246
  "tier": 3,
162
247
  "role": "specialist",
163
- "title": "EasyPanel Deployment Specialist",
164
- "domains": ["infrastructure-deploy"],
165
- "keywords": ["easypanel", "deploy", "deployment", "hosting", "ssl", "domain", "vps", "production"],
248
+ "title": "Domain-Driven Design Expert",
249
+ "domains": ["backend-ddd"],
250
+ "keywords": ["ddd", "domain driven design", "aggregate", "entity", "value object", "domain event", "bounded context", "ubiquitous language"],
166
251
  "always_active": false,
167
- "validators": ["architecture"],
252
+ "validators": ["architecture", "ddd"],
168
253
  "relationships": {
169
- "reports_to": "standards-architect",
254
+ "reports_to": "dotnet-senior",
170
255
  "coordinates": [],
171
- "escalates_to": "standards-architect",
172
- "collaborates_with": ["container-specialist", "devops-engineer"],
256
+ "escalates_to": "dotnet-senior",
257
+ "collaborates_with": ["ef-modeler", "event-architect", "api-designer"],
173
258
  "team_role": "specialist"
174
259
  },
175
- "standards": ["easypanel-deploy.md"],
260
+ "standards": ["core/coding.md", "core/architecture.md"],
176
261
  "teammate": {
177
- "role": "EasyPanel Deployment Specialist",
178
- "icon": "E",
179
- "spawn_prompt": "You are the EasyPanel Deployment Specialist. Configure EasyPanel services (API + Web), set up GitHub integration for auto-deploy, manage SSL certificates and custom domains. Define environment variables, health check endpoints, resource limits."
262
+ "role": "DDD Expert",
263
+ "icon": "📐",
264
+ "spawn_prompt": "You are the Domain-Driven Design Expert. Design Aggregates (consistency boundaries), distinguish Entities vs Value Objects, define Domain Events. Map Bounded Contexts, enforce Ubiquitous Language. Design Anti-Corruption Layers (ACL) for external integrations."
180
265
  }
181
266
  },
182
267
 
183
- "container-specialist": {
268
+ "hangfire-orchestrator": {
184
269
  "tier": 3,
185
270
  "role": "specialist",
186
- "title": "Containerization Specialist",
187
- "domains": ["infrastructure-containers"],
188
- "keywords": ["docker", "container", "dockerfile", "multi-stage", "docker compose", "health check", "image"],
189
- "always_active": true,
190
- "validators": ["architecture"],
271
+ "title": "Background Jobs Specialist",
272
+ "domains": ["backend-jobs"],
273
+ "keywords": ["scheduled", "job", "background", "cron", "hangfire", "recurring", "fire and forget", "delayed"],
274
+ "always_active": false,
275
+ "validators": ["architecture", "blazor-concurrency"],
191
276
  "relationships": {
192
- "reports_to": "standards-architect",
277
+ "reports_to": "dotnet-senior",
193
278
  "coordinates": [],
194
- "escalates_to": "standards-architect",
195
- "collaborates_with": ["easypanel-deployer", "devops-engineer", "dotnet-senior", "nextjs-expert"],
279
+ "escalates_to": "dotnet-senior",
280
+ "collaborates_with": ["ef-modeler", "azure-architect"],
196
281
  "team_role": "specialist"
197
282
  },
198
- "standards": ["easypanel-deploy.md"],
283
+ "standards": ["core/coding.md", "core/architecture.md"],
199
284
  "teammate": {
200
- "role": "Containerization Specialist",
201
- "icon": "D",
202
- "spawn_prompt": "You are the Containerization Specialist for EasyPanel deployments. Write multi-stage Dockerfiles (.NET API + Next.js), docker-compose.yml for local dev, .dockerignore files. Optimize image sizes, configure health checks (/health endpoint). Target EasyPanel container service format."
285
+ "role": "Background Jobs Specialist",
286
+ "icon": "",
287
+ "spawn_prompt": "You are the Background Jobs Specialist (Hangfire). Implement fire-and-forget jobs, delayed jobs, recurring jobs (cron), continuations (chaining). Configure retry policies, queue management. Use IDbContextFactory for scoped operations."
203
288
  }
204
289
  },
205
290
 
206
- "devops-engineer": {
291
+ "ms-agent-expert": {
207
292
  "tier": 3,
208
293
  "role": "specialist",
209
- "title": "CI/CD Specialist",
210
- "domains": ["infrastructure-cicd"],
211
- "keywords": ["pipeline", "ci/cd", "github actions", "auto-deploy", "workflow", "continuous integration"],
294
+ "title": "Microsoft Agent Framework Expert",
295
+ "domains": ["ai-agents"],
296
+ "keywords": ["agent", "ai", "llm", "rag", "embedding", "mcp", "a2a", "middleware", "microsoft agent framework", "ichatclient"],
297
+ "always_active": false,
298
+ "validators": ["architecture", "packages"],
299
+ "relationships": {
300
+ "reports_to": "ai-system-architect",
301
+ "coordinates": [],
302
+ "escalates_to": "ai-system-architect",
303
+ "collaborates_with": ["dotnet-senior", "azure-architect"],
304
+ "team_role": "specialist"
305
+ },
306
+ "standards": ["core/coding.md", "ai-agents/setup.md", "ai-agents/workflows.md", "ai-agents/production.md", "ai-agents/blazor-ui.md"],
307
+ "teammate": {
308
+ "role": "Microsoft Agent Framework Expert",
309
+ "icon": "🤖",
310
+ "spawn_prompt": "You are the Microsoft Agent Framework Expert. Implement ChatClientAgent, AIFunctionFactory, agent workflows (sequential, handoff, group chat). Integrate MCP tools (McpClientFactory, ListToolsAsync, Cast<AITool>). Host agents via A2A protocol (MapA2A, agent cards). Add middleware pipeline, observability (WithOpenTelemetry)."
311
+ }
312
+ },
313
+
314
+ "asaas-financial": {
315
+ "tier": 3,
316
+ "role": "specialist",
317
+ "title": "Payment Integration Specialist (Brazil)",
318
+ "domains": ["integration-payment"],
319
+ "keywords": ["asaas", "payment", "pix", "boleto", "credit card", "subscription", "pagamento"],
320
+ "always_active": false,
321
+ "validators": ["architecture", "contract-compliance"],
322
+ "relationships": {
323
+ "reports_to": "dotnet-senior",
324
+ "coordinates": [],
325
+ "escalates_to": "dotnet-senior",
326
+ "collaborates_with": ["blazor-builder", "nextjs-expert"],
327
+ "team_role": "specialist"
328
+ },
329
+ "standards": ["core/coding.md", "core/architecture.md"],
330
+ "teammate": {
331
+ "role": "Payment Integration Specialist",
332
+ "icon": "💳",
333
+ "spawn_prompt": "You are the Payment Integration Specialist (Asaas SDK for Brazil). Implement PIX payments, Boleto generation, Credit Card processing, Subscription management. Follow contract-compliance validator patterns for SDK usage."
334
+ }
335
+ },
336
+
337
+ "clerk-auth": {
338
+ "tier": 3,
339
+ "role": "specialist",
340
+ "title": "Auth SaaS Integration Specialist",
341
+ "domains": ["integration-auth"],
342
+ "keywords": ["clerk", "clerk auth", "add auth", "implement auth", "login", "signup", "oauth"],
343
+ "negativeKeywords": ["existing auth", "current auth", "integrate with auth", "already have auth"],
212
344
  "always_active": false,
213
345
  "validators": ["architecture"],
214
346
  "relationships": {
215
- "reports_to": "standards-architect",
347
+ "reports_to": "dotnet-senior",
216
348
  "coordinates": [],
217
- "escalates_to": "standards-architect",
218
- "collaborates_with": ["container-specialist", "easypanel-deployer"],
349
+ "escalates_to": "dotnet-senior",
350
+ "collaborates_with": ["blazor-builder", "nextjs-expert", "azure-identity"],
219
351
  "team_role": "specialist"
220
352
  },
221
- "standards": ["easypanel-deploy.md"],
353
+ "standards": ["core/coding.md", "core/architecture.md"],
222
354
  "teammate": {
223
- "role": "CI/CD Specialist",
224
- "icon": "C",
225
- "spawn_prompt": "You are the CI/CD Specialist. Build GitHub Actions workflows for .NET build/test + Next.js build/test. Configure auto-deploy to EasyPanel via GitHub webhook or API. Implement environment-based deployments (staging, production)."
355
+ "role": "Auth SaaS Integration Specialist",
356
+ "icon": "🔐",
357
+ "spawn_prompt": "You are the Auth SaaS Integration Specialist (Clerk SDK). Implement Clerk authentication flows (login, signup, OAuth), session management, user profile. Integrate with Blazor or Next.js frontend."
358
+ }
359
+ },
360
+
361
+ "resend-email": {
362
+ "tier": 3,
363
+ "role": "specialist",
364
+ "title": "Email Integration Specialist",
365
+ "domains": ["integration-email"],
366
+ "keywords": ["resend", "email", "transactional email", "email notification", "send email", "email template", "smtp"],
367
+ "negativeKeywords": ["push notification", "in-app notification", "notification preference", "notification settings"],
368
+ "always_active": false,
369
+ "validators": ["architecture", "contract-compliance"],
370
+ "relationships": {
371
+ "reports_to": "dotnet-senior",
372
+ "coordinates": [],
373
+ "escalates_to": "dotnet-senior",
374
+ "collaborates_with": ["hangfire-orchestrator"],
375
+ "team_role": "specialist"
376
+ },
377
+ "standards": ["core/coding.md", "core/architecture.md"],
378
+ "teammate": {
379
+ "role": "Email Integration Specialist",
380
+ "icon": "📧",
381
+ "spawn_prompt": "You are the Email Integration Specialist (Resend SDK). Implement transactional emails, email templates, notification sending. Follow contract-compliance validator for SDK usage patterns."
382
+ }
383
+ },
384
+
385
+ "_comment_tier_3_frontend": "=== TIER 3: FRONTEND SPECIALISTS (3) ===",
386
+
387
+ "blazor-builder": {
388
+ "tier": 3,
389
+ "role": "specialist",
390
+ "title": "Blazor Development Specialist",
391
+ "domains": ["frontend-blazor"],
392
+ "keywords": ["blazor", "razor", "server-side", "component", "fluent ui", "mudblazor", "signalr", "page", "view", "form"],
393
+ "always_active": false,
394
+ "validators": ["architecture", "blazor", "blazor-concurrency", "blazor-state", "css", "design-system"],
395
+ "relationships": {
396
+ "reports_to": "ui-designer",
397
+ "coordinates": [],
398
+ "escalates_to": "standards-architect",
399
+ "collaborates_with": ["ef-modeler", "api-designer", "css-specialist"],
400
+ "team_role": "specialist",
401
+ "active_phases": ["uiux", "implement"]
402
+ },
403
+ "standards": ["core/coding.md", "frontend/blazor/lifecycle.md", "frontend/blazor/state.md", "frontend/blazor/pitfalls.md", "backend/database/ef-core.md", "frontend/blazor/fluent-ui.md", "mudblazor-blazor.md"],
404
+ "teammate": {
405
+ "role": "Blazor Development Specialist",
406
+ "icon": "⚡",
407
+ "spawn_prompt": "You are the Blazor Development Specialist. Build Blazor Server components (Fluent UI or MudBlazor). Follow component-per-file pattern, use @inject for DI, implement loading states and error boundaries. Integrate SignalR for real-time features. Message ef-modeler for data, css-specialist for design system validation."
408
+ }
409
+ },
410
+
411
+ "nextjs-expert": {
412
+ "tier": 3,
413
+ "role": "specialist",
414
+ "title": "Next.js Development Specialist",
415
+ "domains": ["frontend-nextjs"],
416
+ "keywords": ["nextjs", "next.js", "react", "api", "frontend", "shadcn", "tanstack", "server actions"],
417
+ "always_active": false,
418
+ "validators": ["packages"],
419
+ "relationships": {
420
+ "reports_to": "ui-designer",
421
+ "coordinates": [],
422
+ "escalates_to": "standards-architect",
423
+ "collaborates_with": ["api-designer", "css-specialist"],
424
+ "team_role": "specialist",
425
+ "active_phases": ["uiux", "implement"]
426
+ },
427
+ "standards": ["core/coding.md", "backend/dotnet/core.md"],
428
+ "teammate": {
429
+ "role": "Next.js Development Specialist",
430
+ "icon": "⚛️",
431
+ "spawn_prompt": "You are the Next.js Development Specialist. Build Next.js 14+ applications with shadcn/ui components, TanStack Query for data fetching, Server Actions for mutations. Implement Route Handlers for API routes. Message api-designer for backend endpoints, css-specialist for design system."
226
432
  }
227
433
  },
228
434
 
@@ -231,56 +437,299 @@
231
437
  "role": "specialist",
232
438
  "title": "CSS & Design System Specialist",
233
439
  "domains": ["frontend-css"],
234
- "keywords": ["css", "tailwind", "design system", "styling", "theme", "design tokens", "shadcn"],
440
+ "keywords": ["css", "design system", "styling", "theme", "design tokens", "palette"],
235
441
  "always_active": false,
236
442
  "validators": ["css", "contrast", "design-system"],
237
443
  "relationships": {
238
- "reports_to": "ui-ux-designer",
444
+ "reports_to": "ui-designer",
239
445
  "coordinates": [],
240
- "escalates_to": "ui-ux-designer",
241
- "collaborates_with": ["nextjs-expert"],
446
+ "escalates_to": "ui-designer",
447
+ "collaborates_with": ["blazor-builder", "nextjs-expert"],
242
448
  "team_role": "specialist",
243
449
  "active_phases": ["implement"]
244
450
  },
245
- "standards": ["css-naming.md", "nextjs-patterns.md"],
451
+ "standards": ["frontend/design-system/naming.md", "frontend/design-system/animations.md"],
246
452
  "teammate": {
247
453
  "role": "CSS & Design System Specialist",
248
- "icon": "P",
249
- "spawn_prompt": "You are the CSS & Design System Specialist. Validate Tailwind CSS follows design system tokens (no off-palette colors), review component styling with shadcn/ui conventions. Ensure no inline styles with hardcoded values. Run design-system, css, contrast validators."
454
+ "icon": "🎨",
455
+ "spawn_prompt": "You are the CSS & Design System Specialist (FASE 5 only). Validate CSS follows design system (no off-palette colors), review naming conventions (BEM), ensure no inline styles with hardcoded values. Run design-system, css, contrast validators."
456
+ }
457
+ },
458
+
459
+ "_comment_tier_3_infra": "=== TIER 3: INFRASTRUCTURE SPECIALISTS (4) ===",
460
+
461
+ "bicep-architect": {
462
+ "tier": 3,
463
+ "role": "specialist",
464
+ "title": "Infrastructure as Code Specialist",
465
+ "domains": ["infrastructure-iac"],
466
+ "keywords": ["bicep", "iac", "infra", "provision", "arm template", "infrastructure as code"],
467
+ "always_active": true,
468
+ "validators": ["architecture"],
469
+ "relationships": {
470
+ "reports_to": "azure-architect",
471
+ "coordinates": [],
472
+ "escalates_to": "azure-architect",
473
+ "collaborates_with": ["devops-engineer", "container-specialist"],
474
+ "team_role": "specialist"
475
+ },
476
+ "standards": ["core/coding.md", "core/architecture.md", "azure.md"],
477
+ "teammate": {
478
+ "role": "Infrastructure as Code Specialist",
479
+ "icon": "📜",
480
+ "spawn_prompt": "You are the Infrastructure as Code Specialist (Bicep). Write main.bicep, modules/*.bicep, parameters.{env}.json. Never create Azure resources manually. Collaborate with azure-architect for resource design, devops-engineer for CI/CD integration."
481
+ }
482
+ },
483
+
484
+ "devops-engineer": {
485
+ "tier": 3,
486
+ "role": "specialist",
487
+ "title": "CI/CD Specialist",
488
+ "domains": ["infrastructure-cicd"],
489
+ "keywords": ["pipeline", "ci/cd", "deploy", "release", "github actions", "azure pipelines", "deployment"],
490
+ "always_active": false,
491
+ "validators": ["architecture"],
492
+ "relationships": {
493
+ "reports_to": "azure-architect",
494
+ "coordinates": [],
495
+ "escalates_to": "azure-architect",
496
+ "collaborates_with": ["bicep-architect", "container-specialist"],
497
+ "team_role": "specialist"
498
+ },
499
+ "standards": ["core/coding.md", "core/architecture.md"],
500
+ "teammate": {
501
+ "role": "CI/CD Specialist",
502
+ "icon": "🚀",
503
+ "spawn_prompt": "You are the CI/CD Specialist. Build Azure Pipelines or GitHub Actions workflows. Implement Blue-Green, Canary, Rolling deployment strategies. Integrate with bicep-architect for IaC deployment, container-specialist for image builds."
504
+ }
505
+ },
506
+
507
+ "container-specialist": {
508
+ "tier": 3,
509
+ "role": "specialist",
510
+ "title": "Containerization Specialist",
511
+ "domains": ["infrastructure-containers"],
512
+ "keywords": ["docker", "container", "containerize", "dockerfile", "multi-stage", "container apps"],
513
+ "always_active": false,
514
+ "validators": ["architecture"],
515
+ "relationships": {
516
+ "reports_to": "azure-architect",
517
+ "coordinates": [],
518
+ "escalates_to": "azure-architect",
519
+ "collaborates_with": ["bicep-architect", "devops-engineer"],
520
+ "team_role": "specialist"
521
+ },
522
+ "standards": ["core/coding.md", "core/architecture.md"],
523
+ "teammate": {
524
+ "role": "Containerization Specialist",
525
+ "icon": "🐳",
526
+ "spawn_prompt": "You are the Containerization Specialist. Write Dockerfiles (multi-stage builds), .dockerignore. Deploy to Azure Container Apps (scale-to-zero, KEDA scaling). Optimize image size, configure health checks."
527
+ }
528
+ },
529
+
530
+ "observability-expert": {
531
+ "tier": 3,
532
+ "role": "specialist",
533
+ "title": "Observability Specialist",
534
+ "domains": ["infrastructure-observability"],
535
+ "keywords": ["monitoring", "logging", "tracing", "metrics", "app insights", "serilog", "opentelemetry", "dashboards", "alerts"],
536
+ "always_active": false,
537
+ "validators": ["observability"],
538
+ "relationships": {
539
+ "reports_to": "azure-architect",
540
+ "coordinates": [],
541
+ "escalates_to": "azure-architect",
542
+ "collaborates_with": ["dotnet-senior", "ms-agent-expert"],
543
+ "team_role": "specialist"
544
+ },
545
+ "standards": ["core/coding.md", "core/architecture.md"],
546
+ "teammate": {
547
+ "role": "Observability Specialist",
548
+ "icon": "📊",
549
+ "spawn_prompt": "You are the Observability Specialist. Setup Application Insights (connection strings, sampling), configure Serilog (sinks, enrichers), instrument OpenTelemetry (.NET SDK). Create custom metrics, dashboards, alert rules. Write Log Analytics queries (KQL)."
550
+ }
551
+ },
552
+
553
+ "azure-identity": {
554
+ "tier": 3,
555
+ "role": "specialist",
556
+ "title": "Microsoft Identity Specialist",
557
+ "domains": ["infrastructure-identity"],
558
+ "keywords": ["identity", "entra", "microsoft auth", "azure ad", "b2c", "passkeys", "webauthn", "managed identity"],
559
+ "always_active": false,
560
+ "validators": ["architecture"],
561
+ "relationships": {
562
+ "reports_to": "azure-architect",
563
+ "coordinates": [],
564
+ "escalates_to": "azure-architect",
565
+ "collaborates_with": ["blazor-builder", "nextjs-expert", "clerk-auth"],
566
+ "team_role": "specialist"
567
+ },
568
+ "standards": ["core/coding.md", "core/architecture.md"],
569
+ "teammate": {
570
+ "role": "Microsoft Identity Specialist",
571
+ "icon": "🔑",
572
+ "spawn_prompt": "You are the Microsoft Identity Specialist. Implement Azure AD B2C, Entra External ID, Managed Identity for Azure resources. Add WebAuthn/Passkeys support (FIDO2 registration/authentication flows). Collaborate with frontend specialists for UI integration."
250
573
  }
251
574
  },
252
575
 
576
+ "_comment_tier_3_quality": "=== TIER 3: QUALITY SPECIALISTS (6) ===",
577
+
253
578
  "testing-specialist": {
254
579
  "tier": 3,
255
580
  "role": "specialist",
256
581
  "title": "Testing Specialist",
257
582
  "domains": ["quality-testing"],
258
- "keywords": ["test", "testing", "unit", "integration", "e2e", "xunit", "vitest", "testing library", "playwright"],
583
+ "keywords": ["test", "testing", "unit", "integration", "e2e", "xunit", "moq", "testcontainers", "bunit"],
259
584
  "always_active": false,
260
585
  "validators": ["architecture"],
261
586
  "relationships": {
262
587
  "reports_to": "standards-architect",
263
588
  "coordinates": [],
264
589
  "escalates_to": "standards-architect",
265
- "collaborates_with": ["dotnet-senior", "nextjs-expert"],
590
+ "collaborates_with": ["dotnet-senior", "blazor-builder", "nextjs-expert"],
266
591
  "team_role": "specialist"
267
592
  },
268
- "standards": ["coding.md"],
593
+ "standards": ["core/coding.md", "core/architecture.md"],
269
594
  "teammate": {
270
595
  "role": "Testing Specialist",
271
- "icon": "Q",
272
- "spawn_prompt": "You are the Testing Specialist. Write .NET unit tests (xUnit, Moq/NSubstitute, FluentAssertions), .NET integration tests. Write frontend tests with Vitest + Testing Library. E2E with Playwright. Follow Arrange-Act-Assert (AAA) pattern."
596
+ "icon": "🧪",
597
+ "spawn_prompt": "You are the Testing Specialist. Write unit tests (xUnit, Moq/NSubstitute, FluentAssertions), integration tests (TestContainers, Respawn for DB reset), Blazor component tests (bUnit), HTTP mocking (WireMock). Follow Arrange-Act-Assert (AAA) pattern."
598
+ }
599
+ },
600
+
601
+ "code-analyzer": {
602
+ "tier": 3,
603
+ "role": "specialist",
604
+ "title": "Code Quality Analyst",
605
+ "domains": ["quality-review"],
606
+ "keywords": ["analyze", "review", "refactor", "clean code", "smell", "duplicate", "solid", "architecture review"],
607
+ "always_active": false,
608
+ "validators": ["architecture", "packages"],
609
+ "relationships": {
610
+ "reports_to": "standards-architect",
611
+ "coordinates": [],
612
+ "escalates_to": "standards-architect",
613
+ "collaborates_with": ["dotnet-senior", "troubleshooting-expert"],
614
+ "team_role": "specialist"
615
+ },
616
+ "standards": ["core/coding.md", "core/architecture.md"],
617
+ "teammate": {
618
+ "role": "Code Quality Analyst",
619
+ "icon": "🔍",
620
+ "spawn_prompt": "You are the Code Quality Analyst. Review code for architecture violations, clean code principles (naming, complexity, duplication), SOLID principles. Identify code smells, suggest refactorings. Run architecture and packages validators."
621
+ }
622
+ },
623
+
624
+ "troubleshooting-expert": {
625
+ "tier": 3,
626
+ "role": "specialist",
627
+ "title": "Troubleshooting & Debug Expert",
628
+ "domains": ["quality-debug"],
629
+ "keywords": ["debug", "troubleshoot", "root cause", "analyze error", "investigate", "diagnose"],
630
+ "always_active": false,
631
+ "validators": [],
632
+ "relationships": {
633
+ "reports_to": "standards-architect",
634
+ "coordinates": [],
635
+ "escalates_to": "standards-architect",
636
+ "collaborates_with": ["code-analyzer", "testing-specialist"],
637
+ "team_role": "escalation_specialist",
638
+ "spawn_trigger": "escalation_after_3_failures"
639
+ },
640
+ "standards": ["core/coding.md", "core/architecture.md"],
641
+ "teammate": {
642
+ "role": "Troubleshooting Expert (Escalation)",
643
+ "icon": "🔧",
644
+ "spawn_prompt": "You are the Troubleshooting Expert (spawned after 3 failed attempts). Analyze root cause of failures: validation errors, compilation errors, runtime exceptions. Review attempt logs from recovery-tracker. Propose alternative approaches. Message standards-architect with findings."
645
+ }
646
+ },
647
+
648
+ "load-testing-expert": {
649
+ "tier": 3,
650
+ "role": "specialist",
651
+ "title": "Load Testing & Performance Specialist",
652
+ "domains": ["quality-performance"],
653
+ "keywords": ["load test", "performance test", "k6", "jmeter", "stress test", "capacity planning", "bottleneck", "scalability", "concurrent users"],
654
+ "always_active": false,
655
+ "validators": ["performance"],
656
+ "relationships": {
657
+ "reports_to": "standards-architect",
658
+ "coordinates": [],
659
+ "escalates_to": "standards-architect",
660
+ "collaborates_with": ["azure-architect", "observability-expert"],
661
+ "team_role": "specialist"
662
+ },
663
+ "standards": ["core/coding.md", "core/architecture.md"],
664
+ "teammate": {
665
+ "role": "Load Testing Specialist",
666
+ "icon": "📈",
667
+ "spawn_prompt": "You are the Load Testing Specialist. Write k6 scripts (stress test, spike test, soak test), JMeter test plans. Analyze bottlenecks (DB, CPU, memory). Recommend capacity planning (how many users system supports). Collaborate with observability-expert for metrics."
668
+ }
669
+ },
670
+
671
+ "documentation-specialist": {
672
+ "tier": 3,
673
+ "role": "specialist",
674
+ "title": "Documentation Specialist",
675
+ "domains": ["developer-experience-docs"],
676
+ "keywords": ["readme", "documentation", "api docs", "contributing", "deployment guide", "onboarding"],
677
+ "always_active": false,
678
+ "validators": [],
679
+ "relationships": {
680
+ "reports_to": "standards-architect",
681
+ "coordinates": [],
682
+ "escalates_to": "standards-architect",
683
+ "collaborates_with": ["api-designer", "devops-engineer"],
684
+ "team_role": "post_implementation",
685
+ "spawn_trigger": "post_fase_5"
686
+ },
687
+ "standards": ["core/coding.md", "core/architecture.md"],
688
+ "teammate": {
689
+ "role": "Documentation Specialist (Post-FASE 5)",
690
+ "icon": "📝",
691
+ "spawn_prompt": "You are the Documentation Specialist (runs after FASE 5). Generate README.md (how to run project), CONTRIBUTING.md (contributor guide), API documentation (Swagger annotations, markdown docs), deployment guides (infra setup). Update existing docs with new features."
273
692
  }
274
693
  },
275
694
 
276
- "_comment_tier_4": "=== TIER 4: VALIDATORS (1) ===",
695
+ "_comment_tier_4": "=== TIER 4: VALIDATORS (5) ===",
277
696
 
278
697
  "security-expert": {
279
698
  "tier": 4,
280
699
  "role": "validator",
281
700
  "title": "Security Validator",
282
701
  "domains": ["security"],
283
- "keywords": ["sql injection", "xss", "rls", "secrets", "security scan", "vulnerability", "csrf", "owasp", "jwt"],
702
+ "keywords": ["sql injection", "xss", "secrets", "security scan", "vulnerability", "csrf", "insecure deserialization"],
703
+ "always_active": true,
704
+ "validators": ["security"],
705
+ "relationships": {
706
+ "reports_to": "standards-architect",
707
+ "coordinates": [],
708
+ "runs_in": "hooks",
709
+ "hook_triggers": ["TeammateIdle", "TaskCompleted"],
710
+ "team_role": "validator"
711
+ },
712
+ "standards": ["core/coding.md", "core/architecture.md"],
713
+ "teammate": null,
714
+ "hook_behavior": {
715
+ "validates": [
716
+ "SQL injection (string concatenation in queries)",
717
+ "Hardcoded secrets (API keys, passwords, connection strings)",
718
+ "XSS (@Html.Raw usage in Razor/Blazor)",
719
+ "Insecure deserialization (BinaryFormatter)",
720
+ "CSRF (missing anti-forgery tokens)"
721
+ ],
722
+ "severity": "error",
723
+ "blocks_on_fail": true
724
+ }
725
+ },
726
+
727
+ "architecture-expert": {
728
+ "tier": 4,
729
+ "role": "validator",
730
+ "title": "Architecture Validator",
731
+ "domains": ["architecture"],
732
+ "keywords": ["architecture", "clean code", "solid", "dependency injection"],
284
733
  "always_active": true,
285
734
  "validators": ["architecture"],
286
735
  "relationships": {
@@ -290,15 +739,100 @@
290
739
  "hook_triggers": ["TeammateIdle", "TaskCompleted"],
291
740
  "team_role": "validator"
292
741
  },
293
- "standards": ["coding.md", "supabase-auth.md", "supabase-rls.md"],
742
+ "standards": ["core/coding.md", "core/architecture.md"],
743
+ "teammate": null,
744
+ "hook_behavior": {
745
+ "validates": [
746
+ "DbContext injection (IDbContextFactory required)",
747
+ "Async/await patterns (no .Result or .Wait)",
748
+ "DI registration order (services before middleware)",
749
+ "Blazor render mode compatibility"
750
+ ],
751
+ "severity": "error",
752
+ "blocks_on_fail": true
753
+ }
754
+ },
755
+
756
+ "packages-validator": {
757
+ "tier": 4,
758
+ "role": "validator",
759
+ "title": "Packages Validator",
760
+ "domains": ["packages"],
761
+ "keywords": ["nuget", "packages", "dependencies", "version conflict"],
762
+ "always_active": true,
763
+ "validators": ["packages"],
764
+ "relationships": {
765
+ "reports_to": "standards-architect",
766
+ "coordinates": [],
767
+ "runs_in": "hooks",
768
+ "hook_triggers": ["TaskCompleted"],
769
+ "team_role": "validator"
770
+ },
771
+ "standards": ["core/coding.md"],
294
772
  "teammate": null,
295
773
  "hook_behavior": {
296
774
  "validates": [
297
- "SQL injection (string concatenation in Dapper queries)",
298
- "Hardcoded secrets (API keys, Supabase keys in client code)",
299
- "XSS (dangerouslySetInnerHTML in React)",
300
- "RLS bypass (missing or permissive RLS policies)",
301
- "JWT validation (Supabase JWT not verified in API)"
775
+ "NuGet version conflicts (same package, different versions)",
776
+ "Incompatible .NET 10 packages",
777
+ "Security vulnerabilities (outdated packages)"
778
+ ],
779
+ "severity": "error",
780
+ "blocks_on_fail": true
781
+ }
782
+ },
783
+
784
+ "design-system-validator": {
785
+ "tier": 4,
786
+ "role": "validator",
787
+ "title": "Design System Validator",
788
+ "domains": ["design-system"],
789
+ "keywords": ["design system", "css", "color palette", "spacing"],
790
+ "always_active": true,
791
+ "validators": ["design-system"],
792
+ "relationships": {
793
+ "reports_to": "ui-designer",
794
+ "coordinates": [],
795
+ "runs_in": "hooks",
796
+ "hook_triggers": ["TeammateIdle"],
797
+ "team_role": "validator"
798
+ },
799
+ "standards": ["frontend/design-system/naming.md", "frontend/design-system/animations.md"],
800
+ "teammate": null,
801
+ "hook_behavior": {
802
+ "validates": [
803
+ "CSS color palette compliance (primary, secondary, accent)",
804
+ "Spacing values (use var(--spacing-*))",
805
+ "Typography scale (use var(--font-*))",
806
+ "Component naming (PascalCase for Blazor, kebab-case for CSS)"
807
+ ],
808
+ "severity": "warning",
809
+ "blocks_on_fail": false
810
+ }
811
+ },
812
+
813
+ "blazor-concurrency-validator": {
814
+ "tier": 4,
815
+ "role": "validator",
816
+ "title": "Blazor Concurrency Validator",
817
+ "domains": ["blazor-concurrency"],
818
+ "keywords": ["blazor", "dbcontext", "lifecycle", "async", "concurrency"],
819
+ "always_active": true,
820
+ "validators": ["blazor-concurrency"],
821
+ "relationships": {
822
+ "reports_to": "blazor-builder",
823
+ "coordinates": [],
824
+ "runs_in": "hooks",
825
+ "hook_triggers": ["TaskCompleted"],
826
+ "team_role": "validator"
827
+ },
828
+ "standards": ["frontend/blazor/lifecycle.md", "frontend/blazor/pitfalls.md", "frontend/blazor/state.md"],
829
+ "teammate": null,
830
+ "hook_behavior": {
831
+ "validates": [
832
+ "DbContext lifecycle violations (dispose, scope issues)",
833
+ "Async void methods (use async Task instead)",
834
+ "JSInterop in OnInitialized (move to OnAfterRender)",
835
+ "State mutation without StateHasChanged"
302
836
  ],
303
837
  "severity": "error",
304
838
  "blocks_on_fail": true
@@ -306,31 +840,100 @@
306
840
  }
307
841
  },
308
842
 
843
+ "vector-search-expert": {
844
+ "tier": 3,
845
+ "role": "specialist",
846
+ "title": "Vector Search & RAG Specialist",
847
+ "domains": ["data", "ai-search"],
848
+ "keywords": ["vector search", "rag", "azure ai search", "embeddings", "semantic search"],
849
+ "always_active": false,
850
+ "validators": ["architecture", "security"],
851
+ "relationships": {
852
+ "reports_to": "ai-system-architect",
853
+ "coordinates": [],
854
+ "escalates_to": "ai-system-architect",
855
+ "collaborates_with": ["ef-modeler", "dotnet-senior"],
856
+ "team_role": "specialist"
857
+ },
858
+ "standards": ["data/vector-search/azure-ai-search.md", "data/vector-search/rag-chunking.md"],
859
+ "teammate": {
860
+ "role": "Vector Search & RAG Specialist",
861
+ "icon": "🔍",
862
+ "spawn_prompt": "You are the Vector Search & RAG Specialist. Implement Azure AI Search integration, embedding generation, and RAG patterns."
863
+ }
864
+ },
865
+
866
+ "thread-orchestrator": {
867
+ "tier": 3,
868
+ "role": "specialist",
869
+ "title": "Thread Orchestrator",
870
+ "domains": ["orchestration", "parallel-execution"],
871
+ "keywords": ["parallel", "thread", "concurrent", "fusion", "p-thread", "f-thread", "spawn"],
872
+ "always_active": false,
873
+ "validators": ["architecture"],
874
+ "relationships": {
875
+ "reports_to": "ai-system-architect",
876
+ "coordinates": [],
877
+ "escalates_to": "ai-system-architect",
878
+ "collaborates_with": ["standards-architect"],
879
+ "team_role": "specialist"
880
+ },
881
+ "standards": ["workflows/thread-management.md", "workflows/parallel-execution.md"],
882
+ "teammate": {
883
+ "role": "Thread Orchestrator",
884
+ "icon": "🔀",
885
+ "spawn_prompt": "You are the Thread Orchestrator. Plan and coordinate parallel thread execution, manage P-Thread/F-Thread/L-Thread lifecycle."
886
+ }
887
+ },
888
+
889
+ "context-optimizer": {
890
+ "tier": 3,
891
+ "role": "specialist",
892
+ "title": "Context Optimization Specialist",
893
+ "domains": ["context", "token-efficiency"],
894
+ "keywords": ["context", "token", "priming", "bundle", "mcp", "micro-agent", "context window"],
895
+ "always_active": false,
896
+ "validators": [],
897
+ "relationships": {
898
+ "reports_to": "ai-system-architect",
899
+ "coordinates": [],
900
+ "escalates_to": "standards-architect",
901
+ "collaborates_with": [],
902
+ "team_role": "specialist"
903
+ },
904
+ "standards": ["context/priming.md", "context/bundles.md", "context/analytics.md"],
905
+ "teammate": {
906
+ "role": "Context Optimization Specialist",
907
+ "icon": "📦",
908
+ "spawn_prompt": "You are the Context Optimization Specialist. Analyze token usage, create priming files, manage context bundles."
909
+ }
910
+ },
911
+
309
912
  "squads": {
310
913
  "backend_squad": {
311
914
  "leader": "dotnet-senior",
312
- "members": ["api-designer", "supabase-expert"],
313
- "domains": ["backend", "backend-api", "platform-supabase"]
915
+ "members": ["ef-modeler", "event-architect", "api-designer", "nosql-cache-expert", "ddd-expert", "hangfire-orchestrator", "ms-agent-expert", "asaas-financial", "clerk-auth", "resend-email"],
916
+ "domains": ["backend", "backend-data", "backend-events", "backend-api", "backend-nosql", "backend-ddd", "backend-jobs", "ai-agents", "integration-payment", "integration-auth", "integration-email"]
314
917
  },
315
918
  "frontend_squad": {
316
- "leader": "ui-ux-designer",
317
- "members": ["nextjs-expert", "css-specialist"],
318
- "domains": ["frontend-design", "frontend-nextjs", "frontend-css"],
919
+ "leader": "ui-designer",
920
+ "members": ["blazor-builder", "nextjs-expert", "css-specialist"],
921
+ "domains": ["frontend-design", "frontend-blazor", "frontend-nextjs", "frontend-css"],
319
922
  "active_phases": {
320
- "design": ["ui-ux-designer"],
321
- "implement": ["nextjs-expert", "css-specialist"]
923
+ "design": ["ui-designer"],
924
+ "implement": ["blazor-builder", "nextjs-expert", "css-specialist"]
322
925
  }
323
926
  },
324
927
  "infrastructure_squad": {
325
- "leader": "container-specialist",
326
- "members": ["easypanel-deployer", "devops-engineer"],
327
- "domains": ["infrastructure-containers", "infrastructure-deploy", "infrastructure-cicd"]
928
+ "leader": "azure-architect",
929
+ "members": ["bicep-architect", "devops-engineer", "container-specialist", "observability-expert", "azure-identity"],
930
+ "domains": ["infrastructure", "infrastructure-iac", "infrastructure-cicd", "infrastructure-containers", "infrastructure-observability", "infrastructure-identity"]
328
931
  },
329
932
  "quality_squad": {
330
933
  "leader": "standards-architect",
331
- "members": ["testing-specialist", "security-expert"],
332
- "domains": ["quality-testing", "security"],
333
- "note": "No permanent leader -- standards-architect coordinates directly"
934
+ "members": ["testing-specialist", "code-analyzer", "troubleshooting-expert", "load-testing-expert", "documentation-specialist"],
935
+ "domains": ["quality-testing", "quality-review", "quality-debug", "quality-performance", "developer-experience-docs"],
936
+ "note": "No permanent leader standards-architect coordinates directly"
334
937
  }
335
938
  },
336
939
 
@@ -340,6 +943,6 @@
340
943
  "escalates_to": "Where to escalate unresolved issues",
341
944
  "collaborates_with": "Peer agents for cross-domain work",
342
945
  "runs_in": "Execution context (hooks, not teammates)",
343
- "team_role": "Role in Agent Teams (lead, domain_leader, specialist, validator)"
946
+ "team_role": "Role in Agent Teams (lead, domain_leader, specialist, validator, escalation_specialist, post_implementation, planning_only)"
344
947
  }
345
948
  }