@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.
- package/bin/morph-spec.js +1 -1
- package/package.json +2 -1
- package/src/commands/project/doctor.js +24 -18
- package/src/commands/project/init.js +1 -1
- package/src/commands/state/state.js +24 -2
- package/src/core/templates/template-registry.js +1 -1
- package/src/core/workflows/workflow-detector.js +2 -2
- package/stacks/blazor-azure/.claude/commands/morph-apply.md +221 -0
- package/stacks/blazor-azure/.claude/commands/morph-archive.md +79 -0
- package/stacks/blazor-azure/.claude/commands/morph-deploy.md +529 -0
- package/stacks/blazor-azure/.claude/commands/morph-infra.md +209 -0
- package/stacks/blazor-azure/.claude/commands/morph-preflight.md +227 -0
- package/stacks/blazor-azure/.claude/commands/morph-proposal.md +122 -0
- package/stacks/blazor-azure/.claude/commands/morph-status.md +86 -0
- package/stacks/blazor-azure/.claude/commands/morph-troubleshoot.md +122 -0
- package/stacks/blazor-azure/.morph/.morphversion +5 -5
- package/stacks/blazor-azure/.morph/archive/.gitkeep +25 -0
- package/stacks/blazor-azure/.morph/config/config.json +9 -0
- package/stacks/blazor-azure/.morph/features/.gitkeep +25 -0
- package/stacks/blazor-azure/.morph/project/context/README.md +17 -0
- package/stacks/blazor-azure/.morph/schemas/agent.schema.json +296 -0
- package/stacks/blazor-azure/.morph/schemas/tasks.schema.json +220 -0
- package/stacks/blazor-azure/.morph/specs/.gitkeep +20 -0
- package/stacks/blazor-azure/.morph/standards/ai-agents/blazor-ui.md +364 -0
- package/stacks/blazor-azure/.morph/standards/ai-agents/production.md +415 -0
- package/stacks/blazor-azure/.morph/standards/ai-agents/setup.md +418 -0
- package/stacks/blazor-azure/.morph/standards/ai-agents/team-orchestration.md +479 -0
- package/stacks/blazor-azure/.morph/standards/ai-agents/workflows.md +354 -0
- package/stacks/blazor-azure/.morph/standards/architecture/ddd/aggregates.md +120 -0
- package/stacks/blazor-azure/.morph/standards/architecture/ddd/entities.md +99 -0
- package/stacks/blazor-azure/.morph/standards/architecture/ddd/value-objects.md +124 -0
- package/stacks/blazor-azure/.morph/standards/backend/api/minimal-api.md +494 -0
- package/stacks/blazor-azure/.morph/standards/backend/api/rest.md +492 -0
- package/stacks/blazor-azure/.morph/standards/backend/api/validation.md +88 -0
- package/stacks/blazor-azure/.morph/standards/backend/authentication/passkeys.md +428 -0
- package/stacks/blazor-azure/.morph/standards/backend/database/ef-core.md +199 -0
- package/stacks/blazor-azure/.morph/standards/backend/database/migrations.md +393 -0
- package/stacks/blazor-azure/.morph/standards/backend/database/postgresql/database.md +352 -0
- package/stacks/blazor-azure/.morph/standards/backend/database/repository-patterns.md +528 -0
- package/stacks/blazor-azure/.morph/standards/backend/database/vector-search-rag.md +541 -0
- package/stacks/blazor-azure/.morph/standards/backend/dotnet/async.md +366 -0
- package/stacks/blazor-azure/.morph/standards/backend/dotnet/core.md +117 -0
- package/stacks/blazor-azure/.morph/standards/backend/dotnet/di.md +439 -0
- package/stacks/blazor-azure/.morph/standards/backend/dotnet/program-cs-checklist.md +92 -0
- package/stacks/blazor-azure/.morph/standards/backend/integrations/asaas/asaas-api.md +216 -0
- package/stacks/blazor-azure/.morph/standards/backend/integrations/clerk/clerk-auth.md +290 -0
- package/stacks/blazor-azure/.morph/standards/backend/integrations/hangfire/hangfire-jobs.md +350 -0
- package/stacks/blazor-azure/.morph/standards/backend/integrations/resend/resend-email.md +385 -0
- package/stacks/blazor-azure/.morph/standards/context/analytics.md +96 -0
- package/stacks/blazor-azure/.morph/standards/context/bundles.md +110 -0
- package/stacks/blazor-azure/.morph/standards/context/priming.md +78 -0
- package/stacks/blazor-azure/.morph/standards/core/architecture.md +185 -0
- package/stacks/blazor-azure/.morph/standards/core/coding.md +214 -0
- package/stacks/blazor-azure/.morph/standards/core/git-branching-strategy.md +403 -0
- package/stacks/blazor-azure/.morph/standards/core/git.md +185 -0
- package/stacks/blazor-azure/.morph/standards/core/testing.md +295 -0
- package/stacks/blazor-azure/.morph/standards/data/nosql/blob-storage.md +102 -0
- package/stacks/blazor-azure/.morph/standards/data/nosql/cache/redis.md +97 -0
- package/stacks/blazor-azure/.morph/standards/data/nosql/cosmos-db.md +118 -0
- package/stacks/blazor-azure/.morph/standards/data/vector-search/azure-ai-search.md +121 -0
- package/stacks/blazor-azure/.morph/standards/data/vector-search/rag-chunking.md +104 -0
- package/stacks/blazor-azure/.morph/standards/frontend/blazor/design-checklist.md +222 -0
- package/stacks/blazor-azure/.morph/standards/frontend/blazor/fluent-ui-setup.md +595 -0
- package/stacks/blazor-azure/.morph/standards/frontend/blazor/fluent-ui.md +137 -0
- package/stacks/blazor-azure/.morph/standards/frontend/blazor/html-conversion.md +184 -0
- package/stacks/blazor-azure/.morph/standards/frontend/blazor/lifecycle.md +195 -0
- package/stacks/blazor-azure/.morph/standards/frontend/blazor/pitfalls.md +198 -0
- package/stacks/blazor-azure/.morph/standards/frontend/blazor/state.md +191 -0
- package/stacks/blazor-azure/.morph/standards/frontend/design-system/animations.md +151 -0
- package/stacks/blazor-azure/.morph/standards/frontend/design-system/naming.md +64 -0
- package/stacks/blazor-azure/.morph/standards/frontend/nextjs/nextjs-patterns.md +198 -0
- package/stacks/blazor-azure/.morph/standards/infrastructure/azure/azure.md +624 -0
- package/stacks/blazor-azure/.morph/standards/infrastructure/azure/bicep/bicep-patterns.md +422 -0
- package/stacks/blazor-azure/.morph/standards/infrastructure/azure/devops/azure-devops-setup.md +516 -0
- package/stacks/blazor-azure/.morph/standards/infrastructure/azure/devops/local-development.md +520 -0
- package/stacks/blazor-azure/.morph/standards/infrastructure/azure/services/functions.md +486 -0
- package/stacks/blazor-azure/.morph/standards/infrastructure/azure/services/service-bus.md +459 -0
- package/stacks/blazor-azure/.morph/standards/infrastructure/azure/services/storage.md +407 -0
- package/stacks/blazor-azure/.morph/standards/infrastructure/docker/easypanel-deploy.md +196 -0
- package/stacks/blazor-azure/.morph/standards/infrastructure/supabase/mcp-setup.md +252 -0
- package/stacks/blazor-azure/.morph/standards/infrastructure/supabase/supabase-auth.md +176 -0
- package/stacks/blazor-azure/.morph/standards/infrastructure/supabase/supabase-pgvector.md +169 -0
- package/stacks/blazor-azure/.morph/standards/infrastructure/supabase/supabase-rls.md +184 -0
- package/stacks/blazor-azure/.morph/standards/infrastructure/supabase/supabase-storage.md +153 -0
- package/stacks/blazor-azure/.morph/standards/integration/api/graphql.md +91 -0
- package/stacks/blazor-azure/.morph/standards/integration/api/grpc.md +114 -0
- package/stacks/blazor-azure/.morph/standards/integration/api/rest-design.md +95 -0
- package/stacks/blazor-azure/.morph/standards/integration/event-driven/cqrs.md +101 -0
- package/stacks/blazor-azure/.morph/standards/integration/event-driven/event-sourcing.md +124 -0
- package/stacks/blazor-azure/.morph/standards/integration/event-driven/service-bus.md +95 -0
- package/stacks/blazor-azure/.morph/standards/observability/logging.md +131 -0
- package/stacks/blazor-azure/.morph/standards/observability/metrics.md +121 -0
- package/stacks/blazor-azure/.morph/standards/observability/monitoring.md +114 -0
- package/stacks/blazor-azure/.morph/standards/observability/tracing.md +132 -0
- package/stacks/blazor-azure/.morph/standards/workflows/parallel-execution.md +112 -0
- package/stacks/blazor-azure/.morph/standards/workflows/thread-management.md +113 -0
- package/stacks/blazor-azure/.morph/test-infra/example.bicep +59 -0
- package/stacks/blazor-azure/CLAUDE.md +106 -101
- package/stacks/nextjs-supabase/.claude/commands/morph-apply.md +221 -0
- package/stacks/nextjs-supabase/.claude/commands/morph-archive.md +79 -0
- package/stacks/nextjs-supabase/.claude/commands/morph-deploy.md +529 -0
- package/stacks/nextjs-supabase/.claude/commands/morph-infra.md +209 -0
- package/stacks/nextjs-supabase/.claude/commands/morph-preflight.md +227 -0
- package/stacks/nextjs-supabase/.claude/commands/morph-proposal.md +122 -0
- package/stacks/nextjs-supabase/.claude/commands/morph-status.md +86 -0
- package/stacks/nextjs-supabase/.claude/commands/morph-troubleshoot.md +122 -0
- package/stacks/nextjs-supabase/.morph/.morphversion +5 -0
- package/stacks/nextjs-supabase/.morph/config/agents.json +730 -127
- package/stacks/nextjs-supabase/.morph/config/config.json +9 -0
- package/stacks/nextjs-supabase/.morph/project/context/README.md +17 -0
- package/stacks/nextjs-supabase/.morph/standards/ai-agents/blazor-ui.md +364 -0
- package/stacks/nextjs-supabase/.morph/standards/ai-agents/production.md +415 -0
- package/stacks/nextjs-supabase/.morph/standards/ai-agents/setup.md +418 -0
- package/stacks/nextjs-supabase/.morph/standards/ai-agents/team-orchestration.md +479 -0
- package/stacks/nextjs-supabase/.morph/standards/ai-agents/workflows.md +354 -0
- package/stacks/nextjs-supabase/.morph/standards/architecture/ddd/aggregates.md +120 -0
- package/stacks/nextjs-supabase/.morph/standards/architecture/ddd/entities.md +99 -0
- package/stacks/nextjs-supabase/.morph/standards/architecture/ddd/value-objects.md +124 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/api/minimal-api.md +494 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/api/rest.md +492 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/api/validation.md +88 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/authentication/passkeys.md +428 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/database/ef-core.md +199 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/database/migrations.md +393 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/database/postgresql/database.md +352 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/database/repository-patterns.md +528 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/database/vector-search-rag.md +541 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/dotnet/async.md +366 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/dotnet/core.md +117 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/dotnet/di.md +439 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/dotnet/program-cs-checklist.md +92 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/integrations/asaas/asaas-api.md +216 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/integrations/clerk/clerk-auth.md +290 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/integrations/hangfire/hangfire-jobs.md +350 -0
- package/stacks/nextjs-supabase/.morph/standards/backend/integrations/resend/resend-email.md +385 -0
- package/stacks/nextjs-supabase/.morph/standards/context/analytics.md +96 -0
- package/stacks/nextjs-supabase/.morph/standards/context/bundles.md +110 -0
- package/stacks/nextjs-supabase/.morph/standards/context/priming.md +78 -0
- package/stacks/nextjs-supabase/.morph/standards/core/architecture.md +185 -0
- package/stacks/nextjs-supabase/.morph/standards/core/coding.md +214 -0
- package/stacks/nextjs-supabase/.morph/standards/core/git-branching-strategy.md +403 -0
- package/stacks/nextjs-supabase/.morph/standards/core/git.md +185 -0
- package/stacks/nextjs-supabase/.morph/standards/core/testing.md +295 -0
- package/stacks/nextjs-supabase/.morph/standards/data/nosql/blob-storage.md +102 -0
- package/stacks/nextjs-supabase/.morph/standards/data/nosql/cache/redis.md +97 -0
- package/stacks/nextjs-supabase/.morph/standards/data/nosql/cosmos-db.md +118 -0
- package/stacks/nextjs-supabase/.morph/standards/data/vector-search/azure-ai-search.md +121 -0
- package/stacks/nextjs-supabase/.morph/standards/data/vector-search/rag-chunking.md +104 -0
- package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/design-checklist.md +222 -0
- package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/fluent-ui-setup.md +595 -0
- package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/fluent-ui.md +137 -0
- package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/html-conversion.md +184 -0
- package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/lifecycle.md +195 -0
- package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/pitfalls.md +198 -0
- package/stacks/nextjs-supabase/.morph/standards/frontend/blazor/state.md +191 -0
- package/stacks/nextjs-supabase/.morph/standards/frontend/design-system/animations.md +151 -0
- package/stacks/nextjs-supabase/.morph/standards/frontend/design-system/naming.md +64 -0
- package/stacks/nextjs-supabase/.morph/standards/frontend/nextjs/nextjs-patterns.md +198 -0
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/azure.md +624 -0
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/bicep/bicep-patterns.md +422 -0
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/devops/azure-devops-setup.md +516 -0
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/devops/local-development.md +520 -0
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/services/functions.md +486 -0
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/services/service-bus.md +459 -0
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/azure/services/storage.md +407 -0
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/docker/easypanel-deploy.md +196 -0
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/mcp-setup.md +252 -0
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/supabase-auth.md +176 -0
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/supabase-pgvector.md +169 -0
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/supabase-rls.md +184 -0
- package/stacks/nextjs-supabase/.morph/standards/infrastructure/supabase/supabase-storage.md +153 -0
- package/stacks/nextjs-supabase/.morph/standards/integration/api/graphql.md +91 -0
- package/stacks/nextjs-supabase/.morph/standards/integration/api/grpc.md +114 -0
- package/stacks/nextjs-supabase/.morph/standards/integration/api/rest-design.md +95 -0
- package/stacks/nextjs-supabase/.morph/standards/integration/event-driven/cqrs.md +101 -0
- package/stacks/nextjs-supabase/.morph/standards/integration/event-driven/event-sourcing.md +124 -0
- package/stacks/nextjs-supabase/.morph/standards/integration/event-driven/service-bus.md +95 -0
- package/stacks/nextjs-supabase/.morph/standards/observability/logging.md +131 -0
- package/stacks/nextjs-supabase/.morph/standards/observability/metrics.md +121 -0
- package/stacks/nextjs-supabase/.morph/standards/observability/monitoring.md +114 -0
- package/stacks/nextjs-supabase/.morph/standards/observability/tracing.md +132 -0
- package/stacks/nextjs-supabase/.morph/standards/workflows/parallel-execution.md +112 -0
- package/stacks/nextjs-supabase/.morph/standards/workflows/thread-management.md +113 -0
- package/stacks/nextjs-supabase/CLAUDE.md +69 -63
- package/stacks/blazor-azure/.morph/templates/.gitkeep +0 -0
- package/stacks/blazor-azure/.morph/templates/infrastructure/github/workflows/cd-prod.yml.hbs +0 -41
- package/stacks/blazor-azure/.morph/templates/infrastructure/github/workflows/cd-staging.yml.hbs +0 -24
- package/stacks/blazor-azure/.morph/templates/infrastructure/github/workflows/ci-build.yml.hbs +0 -23
- package/stacks/nextjs-supabase/.morph/templates/.gitkeep +0 -0
- package/stacks/nextjs-supabase/.morph/templates/infrastructure/github/workflows/cd-prod.yml.hbs +0 -22
- package/stacks/nextjs-supabase/.morph/templates/infrastructure/github/workflows/cd-staging.yml.hbs +0 -22
- 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
|
-
"
|
|
5
|
-
"total_agents": 15,
|
|
4
|
+
"total_agents": 33,
|
|
6
5
|
"tiers": {
|
|
7
|
-
"tier_1_orchestrators":
|
|
8
|
-
"tier_2_leaders":
|
|
9
|
-
"tier_3_specialists":
|
|
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 (
|
|
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", "
|
|
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", "
|
|
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": "
|
|
35
|
-
"spawn_prompt": "You are the Chief Architect and Team Lead in delegate mode. Coordinate
|
|
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
|
-
"
|
|
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#", "
|
|
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", "
|
|
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": ["
|
|
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": "
|
|
60
|
-
"spawn_prompt": "You are the Backend Squad Leader.
|
|
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-
|
|
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": ["
|
|
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": "
|
|
84
|
-
"spawn_prompt": "You are the UI/UX Squad Leader. Create wireframes, mockups, user flows. Define design system (colors, typography, spacing)
|
|
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
|
-
"
|
|
151
|
+
"_comment_tier_3_backend": "=== TIER 3: BACKEND SPECIALISTS (10) ===",
|
|
89
152
|
|
|
90
|
-
"
|
|
153
|
+
"ef-modeler": {
|
|
91
154
|
"tier": 3,
|
|
92
155
|
"role": "specialist",
|
|
93
|
-
"title": "
|
|
94
|
-
"domains": ["
|
|
95
|
-
"keywords": ["
|
|
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": ["
|
|
183
|
+
"validators": ["architecture", "event-driven"],
|
|
98
184
|
"relationships": {
|
|
99
|
-
"reports_to": "
|
|
185
|
+
"reports_to": "dotnet-senior",
|
|
100
186
|
"coordinates": [],
|
|
101
|
-
"escalates_to": "
|
|
102
|
-
"collaborates_with": ["
|
|
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", "
|
|
191
|
+
"standards": ["core/coding.md", "core/architecture.md"],
|
|
107
192
|
"teammate": {
|
|
108
|
-
"role": "
|
|
109
|
-
"icon": "
|
|
110
|
-
"spawn_prompt": "You are the
|
|
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", "
|
|
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": ["
|
|
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": "
|
|
133
|
-
"spawn_prompt": "You are the API Design Specialist. Design REST APIs
|
|
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
|
-
"
|
|
222
|
+
"nosql-cache-expert": {
|
|
138
223
|
"tier": 3,
|
|
139
224
|
"role": "specialist",
|
|
140
|
-
"title": "
|
|
141
|
-
"domains": ["
|
|
142
|
-
"keywords": ["
|
|
143
|
-
"always_active":
|
|
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": "
|
|
231
|
+
"reports_to": "dotnet-senior",
|
|
147
232
|
"coordinates": [],
|
|
148
|
-
"escalates_to": "
|
|
149
|
-
"collaborates_with": ["
|
|
233
|
+
"escalates_to": "dotnet-senior",
|
|
234
|
+
"collaborates_with": ["ef-modeler", "azure-architect"],
|
|
150
235
|
"team_role": "specialist"
|
|
151
236
|
},
|
|
152
|
-
"standards": ["
|
|
237
|
+
"standards": ["core/coding.md", "core/architecture.md"],
|
|
153
238
|
"teammate": {
|
|
154
|
-
"role": "
|
|
155
|
-
"icon": "
|
|
156
|
-
"spawn_prompt": "You are the
|
|
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
|
-
"
|
|
245
|
+
"ddd-expert": {
|
|
161
246
|
"tier": 3,
|
|
162
247
|
"role": "specialist",
|
|
163
|
-
"title": "
|
|
164
|
-
"domains": ["
|
|
165
|
-
"keywords": ["
|
|
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": "
|
|
254
|
+
"reports_to": "dotnet-senior",
|
|
170
255
|
"coordinates": [],
|
|
171
|
-
"escalates_to": "
|
|
172
|
-
"collaborates_with": ["
|
|
256
|
+
"escalates_to": "dotnet-senior",
|
|
257
|
+
"collaborates_with": ["ef-modeler", "event-architect", "api-designer"],
|
|
173
258
|
"team_role": "specialist"
|
|
174
259
|
},
|
|
175
|
-
"standards": ["
|
|
260
|
+
"standards": ["core/coding.md", "core/architecture.md"],
|
|
176
261
|
"teammate": {
|
|
177
|
-
"role": "
|
|
178
|
-
"icon": "
|
|
179
|
-
"spawn_prompt": "You are the
|
|
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
|
-
"
|
|
268
|
+
"hangfire-orchestrator": {
|
|
184
269
|
"tier": 3,
|
|
185
270
|
"role": "specialist",
|
|
186
|
-
"title": "
|
|
187
|
-
"domains": ["
|
|
188
|
-
"keywords": ["
|
|
189
|
-
"always_active":
|
|
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": "
|
|
277
|
+
"reports_to": "dotnet-senior",
|
|
193
278
|
"coordinates": [],
|
|
194
|
-
"escalates_to": "
|
|
195
|
-
"collaborates_with": ["
|
|
279
|
+
"escalates_to": "dotnet-senior",
|
|
280
|
+
"collaborates_with": ["ef-modeler", "azure-architect"],
|
|
196
281
|
"team_role": "specialist"
|
|
197
282
|
},
|
|
198
|
-
"standards": ["
|
|
283
|
+
"standards": ["core/coding.md", "core/architecture.md"],
|
|
199
284
|
"teammate": {
|
|
200
|
-
"role": "
|
|
201
|
-
"icon": "
|
|
202
|
-
"spawn_prompt": "You are the
|
|
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
|
-
"
|
|
291
|
+
"ms-agent-expert": {
|
|
207
292
|
"tier": 3,
|
|
208
293
|
"role": "specialist",
|
|
209
|
-
"title": "
|
|
210
|
-
"domains": ["
|
|
211
|
-
"keywords": ["
|
|
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": "
|
|
347
|
+
"reports_to": "dotnet-senior",
|
|
216
348
|
"coordinates": [],
|
|
217
|
-
"escalates_to": "
|
|
218
|
-
"collaborates_with": ["
|
|
349
|
+
"escalates_to": "dotnet-senior",
|
|
350
|
+
"collaborates_with": ["blazor-builder", "nextjs-expert", "azure-identity"],
|
|
219
351
|
"team_role": "specialist"
|
|
220
352
|
},
|
|
221
|
-
"standards": ["
|
|
353
|
+
"standards": ["core/coding.md", "core/architecture.md"],
|
|
222
354
|
"teammate": {
|
|
223
|
-
"role": "
|
|
224
|
-
"icon": "
|
|
225
|
-
"spawn_prompt": "You are the
|
|
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", "
|
|
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-
|
|
444
|
+
"reports_to": "ui-designer",
|
|
239
445
|
"coordinates": [],
|
|
240
|
-
"escalates_to": "ui-
|
|
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": ["
|
|
451
|
+
"standards": ["frontend/design-system/naming.md", "frontend/design-system/animations.md"],
|
|
246
452
|
"teammate": {
|
|
247
453
|
"role": "CSS & Design System Specialist",
|
|
248
|
-
"icon": "
|
|
249
|
-
"spawn_prompt": "You are the CSS & Design System Specialist. Validate
|
|
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", "
|
|
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": "
|
|
272
|
-
"spawn_prompt": "You are the Testing Specialist. Write
|
|
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 (
|
|
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", "
|
|
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", "
|
|
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
|
-
"
|
|
298
|
-
"
|
|
299
|
-
"
|
|
300
|
-
|
|
301
|
-
|
|
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", "
|
|
313
|
-
"domains": ["backend", "backend-api", "
|
|
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-
|
|
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-
|
|
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": "
|
|
326
|
-
"members": ["
|
|
327
|
-
"domains": ["infrastructure-containers", "infrastructure-
|
|
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", "
|
|
332
|
-
"domains": ["quality-testing", "
|
|
333
|
-
"note": "No permanent leader
|
|
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
|
}
|