@polymorphism-tech/morph-spec 4.8.19 → 4.9.0

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 (137) hide show
  1. package/CLAUDE.md +21 -0
  2. package/README.md +2 -2
  3. package/bin/morph-spec.js +15 -56
  4. package/bin/task-manager.js +115 -14
  5. package/bin/validate.js +67 -33
  6. package/claude-plugin.json +1 -1
  7. package/docs/CHEATSHEET.md +201 -203
  8. package/docs/QUICKSTART.md +2 -2
  9. package/framework/CLAUDE.md +21 -0
  10. package/framework/agents.json +698 -176
  11. package/framework/hooks/claude-code/post-tool-use/context-refresh.js +1 -1
  12. package/framework/hooks/claude-code/post-tool-use/dispatch.js +2 -2
  13. package/framework/hooks/claude-code/post-tool-use/skill-reminder.js +155 -0
  14. package/framework/hooks/claude-code/pre-tool-use/protect-spec-files.js +1 -1
  15. package/framework/hooks/claude-code/session-start/inject-morph-context.js +71 -2
  16. package/framework/hooks/claude-code/statusline.py +76 -30
  17. package/framework/hooks/claude-code/user-prompt/set-terminal-title.js +14 -6
  18. package/framework/hooks/shared/activity-logger.js +0 -24
  19. package/framework/hooks/shared/phase-utils.js +3 -0
  20. package/framework/hooks/shared/skill-reminder-helpers.js +79 -0
  21. package/framework/hooks/shared/stale-task-reset.js +57 -0
  22. package/framework/hooks/shared/state-reader.js +2 -2
  23. package/framework/hooks/shared/worktree-helpers.js +53 -0
  24. package/framework/phases.json +40 -8
  25. package/framework/skills/level-0-meta/brainstorming/SKILL.md +1 -1
  26. package/framework/skills/level-0-meta/code-review/SKILL.md +1 -1
  27. package/framework/skills/level-0-meta/code-review-nextjs/SKILL.md +163 -163
  28. package/framework/skills/level-0-meta/frontend-review/SKILL.md +5 -5
  29. package/framework/skills/level-0-meta/morph-checklist/SKILL.md +2 -2
  30. package/framework/skills/level-0-meta/morph-init/SKILL.md +5 -5
  31. package/framework/skills/level-0-meta/morph-replicate/SKILL.md +4 -4
  32. package/framework/skills/level-0-meta/morph-replicate/references/blazor-html-mapping.md +1 -1
  33. package/framework/skills/level-0-meta/post-implementation/SKILL.md +59 -12
  34. package/framework/skills/level-0-meta/simulation-checklist/SKILL.md +1 -1
  35. package/framework/skills/level-0-meta/terminal-title/SKILL.md +1 -1
  36. package/framework/skills/level-0-meta/tool-usage-guide/SKILL.md +1 -1
  37. package/framework/skills/level-0-meta/tool-usage-guide/references/tools-per-phase.md +6 -5
  38. package/framework/skills/level-0-meta/verification-before-completion/SKILL.md +1 -1
  39. package/framework/skills/level-1-workflows/phase-clarify/SKILL.md +215 -189
  40. package/framework/skills/level-1-workflows/phase-codebase-analysis/SKILL.md +251 -251
  41. package/framework/skills/level-1-workflows/phase-design/SKILL.md +382 -365
  42. package/framework/skills/level-1-workflows/phase-implement/SKILL.md +492 -450
  43. package/framework/skills/level-1-workflows/phase-setup/SKILL.md +194 -190
  44. package/framework/skills/level-1-workflows/phase-tasks/SKILL.md +270 -270
  45. package/framework/skills/level-1-workflows/phase-uiux/SKILL.md +285 -285
  46. package/framework/standards/STANDARDS.json +640 -88
  47. package/framework/standards/infrastructure/vercel/vercel-database.md +106 -0
  48. package/framework/templates/REGISTRY.json +1825 -1909
  49. package/framework/templates/context/CONTEXT-FEATURE.md +276 -276
  50. package/framework/templates/docs/onboarding.md +1 -5
  51. package/package.json +2 -6
  52. package/src/commands/agents/dispatch-agents.js +55 -4
  53. package/src/commands/project/doctor.js +16 -47
  54. package/src/commands/project/init.js +1 -1
  55. package/src/commands/project/status.js +2 -2
  56. package/src/commands/project/update.js +381 -365
  57. package/src/commands/project/worktree.js +154 -0
  58. package/src/commands/state/advance-phase.js +120 -30
  59. package/src/commands/state/approve.js +2 -2
  60. package/src/commands/state/index.js +7 -8
  61. package/src/commands/state/phase-runner.js +1 -1
  62. package/src/commands/state/state.js +61 -6
  63. package/src/commands/tasks/task.js +78 -99
  64. package/src/commands/templates/template-render.js +93 -173
  65. package/src/commands/trust/trust.js +26 -21
  66. package/src/core/paths/output-schema.js +15 -0
  67. package/src/core/state/state-manager.js +28 -54
  68. package/src/core/workflows/workflow-detector.js +9 -87
  69. package/src/lib/phase-chain/phase-validator.js +330 -0
  70. package/src/lib/stack/stack-profile.js +88 -0
  71. package/src/lib/tasks/task-classifier.js +16 -0
  72. package/src/lib/tasks/test-runner.js +77 -0
  73. package/src/lib/trust/trust-manager.js +32 -144
  74. package/src/lib/validators/spec-validator.js +58 -4
  75. package/src/lib/validators/validation-runner.js +23 -11
  76. package/src/scripts/setup-infra.js +240 -224
  77. package/src/utils/agents-installer.js +2 -2
  78. package/src/utils/banner.js +1 -1
  79. package/src/utils/claude-settings-manager.js +1 -1
  80. package/src/utils/file-copier.js +1 -0
  81. package/src/utils/hooks-installer.js +258 -8
  82. package/framework/hooks/dev/check-sync-health.js +0 -117
  83. package/framework/hooks/dev/guard-version-numbers.js +0 -57
  84. package/framework/hooks/dev/sync-standards-registry.js +0 -60
  85. package/framework/hooks/dev/sync-template-registry.js +0 -60
  86. package/framework/hooks/dev/validate-skill-format.js +0 -70
  87. package/framework/hooks/dev/validate-standard-format.js +0 -73
  88. package/framework/templates/meta-prompts/hops/hop-retry.md +0 -78
  89. package/framework/templates/meta-prompts/hops/hop-validation.md +0 -97
  90. package/framework/templates/meta-prompts/hops/hop-wrapper.md +0 -36
  91. package/framework/workflows/configs/design-impl.json +0 -49
  92. package/framework/workflows/configs/express.json +0 -45
  93. package/framework/workflows/configs/fast-track.json +0 -42
  94. package/framework/workflows/configs/full-morph.json +0 -79
  95. package/framework/workflows/configs/fusion.json +0 -39
  96. package/framework/workflows/configs/long-running.json +0 -33
  97. package/framework/workflows/configs/spec-only.json +0 -43
  98. package/framework/workflows/configs/ui-refresh.json +0 -49
  99. package/framework/workflows/configs/zero-touch.json +0 -82
  100. package/src/commands/project/monitor.js +0 -295
  101. package/src/commands/project/tutorial.js +0 -115
  102. package/src/commands/state/validate-phase.js +0 -238
  103. package/src/commands/templates/generate-contracts.js +0 -445
  104. package/src/core/orchestrator.js +0 -171
  105. package/src/core/registry/command-registry.js +0 -28
  106. package/src/core/registry/index.js +0 -8
  107. package/src/core/registry/validator-registry.js +0 -204
  108. package/src/core/templates/template-validator.js +0 -296
  109. package/src/generator/config-generator.js +0 -206
  110. package/src/generator/templates/config.json.template +0 -40
  111. package/src/generator/templates/project.md.template +0 -67
  112. package/src/lib/agents/micro-agent-factory.js +0 -161
  113. package/src/lib/analysis/complexity-analyzer.js +0 -441
  114. package/src/lib/analysis/index.js +0 -7
  115. package/src/lib/analytics/analytics-engine.js +0 -345
  116. package/src/lib/checkpoints/checkpoint-hooks.js +0 -298
  117. package/src/lib/checkpoints/index.js +0 -7
  118. package/src/lib/context/context-bundler.js +0 -241
  119. package/src/lib/context/context-optimizer.js +0 -212
  120. package/src/lib/context/context-tracker.js +0 -273
  121. package/src/lib/context/core-four-tracker.js +0 -201
  122. package/src/lib/context/mcp-optimizer.js +0 -200
  123. package/src/lib/execution/fusion-executor.js +0 -304
  124. package/src/lib/execution/parallel-executor.js +0 -270
  125. package/src/lib/hooks/stop-hook-executor.js +0 -286
  126. package/src/lib/hops/hop-composer.js +0 -221
  127. package/src/lib/phase-chain/eligibility-checker.js +0 -243
  128. package/src/lib/threads/thread-coordinator.js +0 -238
  129. package/src/lib/threads/thread-manager.js +0 -317
  130. package/src/lib/tracking/artifact-trail.js +0 -202
  131. package/src/scanner/project-scanner.js +0 -242
  132. package/src/ui/diff-display.js +0 -91
  133. package/src/ui/interactive-wizard.js +0 -96
  134. package/src/ui/user-review.js +0 -211
  135. package/src/ui/wizard-questions.js +0 -188
  136. package/src/utils/color-utils.js +0 -70
  137. package/src/utils/process-handler.js +0 -97
@@ -1,1909 +1,1825 @@
1
- {
2
- "$schema": "https://json-schema.org/draft-07/schema#",
3
- "version": "2.0.0",
4
- "description": "Template Registry for MORPH-SPEC Framework - Technology-based organization for multi-stack reusability",
5
- "lastUpdated": "2026-02-27",
6
- "migration": "v1 → v2: Migrated all templates to framework/, organized by technology (code/dotnet/, infrastructure/azure/, etc.) instead of by stack. This enables future stacks (vue-firebase, angular-mongodb) to reuse existing technology templates.",
7
- "categories": [
8
- "documentation",
9
- "code",
10
- "infrastructure",
11
- "context",
12
- "examples",
13
- "integration",
14
- "saas",
15
- "ui"
16
- ],
17
- "technologies": [
18
- "dotnet",
19
- "typescript",
20
- "sql",
21
- "azure",
22
- "azure-devops",
23
- "github-actions",
24
- "docker",
25
- "bicep",
26
- "handlebars"
27
- ],
28
- "templates": [
29
- {
30
- "id": "proposal",
31
- "name": "Feature Proposal",
32
- "path": "docs/proposal.md",
33
- "location": "framework",
34
- "category": "documentation",
35
- "phase": "proposal",
36
- "required": true,
37
- "description": "Feature proposal with overview, problem statement, solution approach, and cost estimates",
38
- "outputName": "proposal.md",
39
- "placeholders": [
40
- "FEATURE_NAME",
41
- "STACK",
42
- "DATE",
43
- "AUTHOR"
44
- ],
45
- "stackSpecific": false,
46
- "engine": "handlebars",
47
- "deprecated": false,
48
- "technology": "handlebars"
49
- },
50
- {
51
- "id": "spec",
52
- "name": "Technical Specification",
53
- "path": "docs/spec.md",
54
- "location": "framework",
55
- "category": "documentation",
56
- "phase": "design",
57
- "required": true,
58
- "description": "Detailed technical spec with architecture, data model, API contracts",
59
- "outputName": "spec.md",
60
- "placeholders": [
61
- "FEATURE_NAME",
62
- "STACK",
63
- "DATE"
64
- ],
65
- "stackSpecific": false,
66
- "engine": "handlebars",
67
- "deprecated": false,
68
- "technology": "handlebars"
69
- },
70
- {
71
- "id": "tasks",
72
- "name": "Implementation Tasks",
73
- "path": "feature/tasks.md",
74
- "location": "framework",
75
- "category": "documentation",
76
- "phase": "tasks",
77
- "required": true,
78
- "description": "Task breakdown with IDs, dependencies, estimates, and checkpoints",
79
- "outputName": "tasks.md",
80
- "placeholders": [
81
- "FEATURE_NAME",
82
- "STACK"
83
- ],
84
- "stackSpecific": false,
85
- "engine": "handlebars",
86
- "deprecated": false,
87
- "technology": "handlebars"
88
- },
89
- {
90
- "id": "decisions",
91
- "name": "Architecture Decision Records",
92
- "path": "feature/decisions.md",
93
- "location": "framework",
94
- "category": "documentation",
95
- "phase": "design",
96
- "required": true,
97
- "description": "ADR format for documenting architectural decisions with context, alternatives, consequences",
98
- "outputName": "decisions.md",
99
- "placeholders": [
100
- "FEATURE_NAME",
101
- "STACK",
102
- "DATE"
103
- ],
104
- "stackSpecific": false,
105
- "engine": "handlebars",
106
- "deprecated": false,
107
- "technology": "handlebars"
108
- },
109
- {
110
- "id": "recap",
111
- "name": "Feature Recap",
112
- "path": "feature/recap.md",
113
- "location": "framework",
114
- "category": "documentation",
115
- "phase": "completed",
116
- "required": true,
117
- "description": "Post-implementation summary with deliverables, metrics, lessons learned",
118
- "outputName": "recap.md",
119
- "placeholders": [
120
- "FEATURE_NAME",
121
- "STACK",
122
- "DATE"
123
- ],
124
- "stackSpecific": false,
125
- "engine": "handlebars",
126
- "deprecated": false,
127
- "technology": "handlebars"
128
- },
129
- {
130
- "id": "context",
131
- "name": "Project Context",
132
- "path": "context/CONTEXT.md",
133
- "location": "framework",
134
- "category": "context",
135
- "phase": "setup",
136
- "required": false,
137
- "description": "Project-level context with tech stack, active features, agents, standards",
138
- "outputName": "CONTEXT.md",
139
- "placeholders": [
140
- "PROJECT_NAME",
141
- "STACK",
142
- "TIMESTAMP"
143
- ],
144
- "stackSpecific": false,
145
- "engine": "handlebars",
146
- "deprecated": false,
147
- "technology": "handlebars"
148
- },
149
- {
150
- "id": "context-feature",
151
- "name": "Feature Context",
152
- "path": "context/CONTEXT-FEATURE.md",
153
- "location": "framework",
154
- "category": "context",
155
- "phase": "setup",
156
- "required": false,
157
- "description": "Feature-level context with progress, agents, tasks, decisions, validations",
158
- "outputName": "CONTEXT-FEATURE.md",
159
- "placeholders": [
160
- "FEATURE_NAME",
161
- "PHASE",
162
- "STATUS",
163
- "COMPLEXITY"
164
- ],
165
- "stackSpecific": false,
166
- "engine": "handlebars",
167
- "deprecated": false,
168
- "technology": "handlebars"
169
- },
170
- {
171
- "id": "spec-examples",
172
- "name": "Spec Examples",
173
- "path": "examples/spec-examples.md",
174
- "location": "framework",
175
- "category": "examples",
176
- "phase": null,
177
- "required": false,
178
- "description": "Example technical specs for reference",
179
- "outputName": null,
180
- "placeholders": [],
181
- "stackSpecific": false,
182
- "engine": null,
183
- "deprecated": false,
184
- "technology": null
185
- },
186
- {
187
- "id": "design-system-examples",
188
- "name": "Design System Examples",
189
- "path": "examples/design-system-examples.md",
190
- "location": "framework",
191
- "category": "examples",
192
- "phase": null,
193
- "required": false,
194
- "description": "Example design system definitions",
195
- "outputName": null,
196
- "placeholders": [],
197
- "stackSpecific": false,
198
- "engine": null,
199
- "deprecated": false,
200
- "technology": null
201
- },
202
- {
203
- "id": "dotnet-backend-service",
204
- "name": ".NET Service Class",
205
- "path": "code/dotnet/backend/service.cs",
206
- "location": "framework",
207
- "category": "code",
208
- "phase": "implement",
209
- "required": false,
210
- "description": "C# service class template with dependency injection and interface pattern",
211
- "outputName": "{FeatureName}Service.cs",
212
- "placeholders": [
213
- "FEATURE_NAME",
214
- "NAMESPACE"
215
- ],
216
- "stackSpecific": false,
217
- "engine": "handlebars",
218
- "deprecated": false,
219
- "technology": "dotnet",
220
- "applicableStacks": [
221
- "blazor-azure",
222
- "nextjs-supabase"
223
- ]
224
- },
225
- {
226
- "id": "dotnet-backend-repository",
227
- "name": ".NET Repository Class",
228
- "path": "code/dotnet/backend/repository.cs",
229
- "location": "framework",
230
- "category": "code",
231
- "phase": "implement",
232
- "required": false,
233
- "description": "C# repository class template with EF Core patterns",
234
- "outputName": "{FeatureName}Repository.cs",
235
- "placeholders": [
236
- "FEATURE_NAME",
237
- "NAMESPACE"
238
- ],
239
- "stackSpecific": false,
240
- "engine": "handlebars",
241
- "deprecated": false,
242
- "technology": "dotnet",
243
- "applicableStacks": [
244
- "blazor-azure",
245
- "nextjs-supabase"
246
- ]
247
- },
248
- {
249
- "id": "dotnet-backend-test",
250
- "name": ".NET Unit Test",
251
- "path": "code/dotnet/test.cs",
252
- "location": "framework",
253
- "category": "code",
254
- "phase": "implement",
255
- "required": false,
256
- "description": "xUnit test template with AAA pattern",
257
- "outputName": "{FeatureName}Tests.cs",
258
- "placeholders": [
259
- "FEATURE_NAME",
260
- "NAMESPACE"
261
- ],
262
- "stackSpecific": false,
263
- "engine": "handlebars",
264
- "deprecated": false,
265
- "technology": "dotnet",
266
- "applicableStacks": [
267
- "blazor-azure",
268
- "nextjs-supabase"
269
- ]
270
- },
271
- {
272
- "id": "dotnet-frontend-component",
273
- "name": "Blazor Component",
274
- "path": "code/dotnet/frontend/component.razor",
275
- "location": "framework",
276
- "category": "code",
277
- "phase": "implement",
278
- "required": false,
279
- "description": "Blazor component template with code-behind and lifecycle hooks",
280
- "outputName": "{FeatureName}.razor",
281
- "placeholders": [
282
- "FEATURE_NAME",
283
- "NAMESPACE"
284
- ],
285
- "stackSpecific": false,
286
- "engine": "handlebars",
287
- "deprecated": false,
288
- "technology": "dotnet",
289
- "applicableStacks": [
290
- "blazor-azure"
291
- ]
292
- },
293
- {
294
- "id": "dotnet-database-migration",
295
- "name": "EF Core Migration",
296
- "path": "code/dotnet/database/migration.cs",
297
- "location": "framework",
298
- "category": "code",
299
- "phase": "implement",
300
- "required": false,
301
- "description": "EF Core migration template with Up/Down methods",
302
- "outputName": "{Timestamp}_{FeatureName}.cs",
303
- "placeholders": [
304
- "FEATURE_NAME",
305
- "NAMESPACE"
306
- ],
307
- "stackSpecific": false,
308
- "engine": "handlebars",
309
- "deprecated": false,
310
- "technology": "dotnet",
311
- "applicableStacks": [
312
- "blazor-azure",
313
- "nextjs-supabase"
314
- ]
315
- },
316
- {
317
- "id": "dotnet-jobs-hangfire",
318
- "name": "Hangfire Background Job",
319
- "path": "code/dotnet/jobs/job.cs",
320
- "location": "framework",
321
- "category": "code",
322
- "phase": "implement",
323
- "required": false,
324
- "description": "Hangfire background job template with retry logic",
325
- "outputName": "{FeatureName}Job.cs",
326
- "placeholders": [
327
- "FEATURE_NAME",
328
- "NAMESPACE"
329
- ],
330
- "stackSpecific": false,
331
- "engine": "handlebars",
332
- "deprecated": false,
333
- "technology": "dotnet",
334
- "applicableStacks": [
335
- "blazor-azure",
336
- "nextjs-supabase"
337
- ]
338
- },
339
- {
340
- "id": "dotnet-jobs-agent",
341
- "name": "MS Agent Framework Agent",
342
- "path": "code/dotnet/jobs/agent.cs",
343
- "location": "framework",
344
- "category": "code",
345
- "phase": "implement",
346
- "required": false,
347
- "description": "Microsoft Agent Framework agent template with prompt engineering",
348
- "outputName": "{FeatureName}Agent.cs",
349
- "placeholders": [
350
- "FEATURE_NAME",
351
- "NAMESPACE"
352
- ],
353
- "stackSpecific": false,
354
- "engine": "handlebars",
355
- "deprecated": false,
356
- "technology": "dotnet",
357
- "applicableStacks": [
358
- "blazor-azure",
359
- "nextjs-supabase"
360
- ]
361
- },
362
- {
363
- "id": "dotnet-contracts-commands",
364
- "name": "CQRS Commands",
365
- "path": "code/dotnet/contracts/Commands.cs",
366
- "location": "framework",
367
- "category": "code",
368
- "phase": "design",
369
- "required": false,
370
- "description": "CQRS command contracts following command pattern",
371
- "outputName": "Commands.cs",
372
- "placeholders": [
373
- "FEATURE_NAME",
374
- "NAMESPACE"
375
- ],
376
- "stackSpecific": false,
377
- "engine": "handlebars",
378
- "deprecated": false,
379
- "technology": "dotnet",
380
- "applicableStacks": [
381
- "blazor-azure",
382
- "nextjs-supabase"
383
- ]
384
- },
385
- {
386
- "id": "dotnet-contracts-queries",
387
- "name": "CQRS Queries",
388
- "path": "code/dotnet/contracts/Queries.cs",
389
- "location": "framework",
390
- "category": "code",
391
- "phase": "design",
392
- "required": false,
393
- "description": "CQRS query contracts following query pattern",
394
- "outputName": "Queries.cs",
395
- "placeholders": [
396
- "FEATURE_NAME",
397
- "NAMESPACE"
398
- ],
399
- "stackSpecific": false,
400
- "engine": "handlebars",
401
- "deprecated": false,
402
- "technology": "dotnet",
403
- "applicableStacks": [
404
- "blazor-azure",
405
- "nextjs-supabase"
406
- ]
407
- },
408
- {
409
- "id": "dotnet-contracts-entities",
410
- "name": "Domain Entities",
411
- "path": "code/dotnet/contracts/Entities.cs",
412
- "location": "framework",
413
- "category": "code",
414
- "phase": "design",
415
- "required": false,
416
- "description": "Domain entity definitions with navigation properties",
417
- "outputName": "Entities.cs",
418
- "placeholders": [
419
- "FEATURE_NAME",
420
- "NAMESPACE"
421
- ],
422
- "stackSpecific": false,
423
- "engine": "handlebars",
424
- "deprecated": false,
425
- "technology": "dotnet",
426
- "applicableStacks": [
427
- "blazor-azure",
428
- "nextjs-supabase"
429
- ]
430
- },
431
- {
432
- "id": "dotnet-contracts-api",
433
- "name": "API Contracts",
434
- "path": "code/dotnet/contracts/api-contracts.cs",
435
- "location": "framework",
436
- "category": "code",
437
- "phase": "design",
438
- "required": false,
439
- "description": "REST API request/response contracts",
440
- "outputName": "ApiContracts.cs",
441
- "placeholders": [
442
- "FEATURE_NAME",
443
- "NAMESPACE"
444
- ],
445
- "stackSpecific": false,
446
- "engine": "handlebars",
447
- "deprecated": false,
448
- "technology": "dotnet",
449
- "applicableStacks": [
450
- "blazor-azure",
451
- "nextjs-supabase"
452
- ]
453
- },
454
- {
455
- "id": "dotnet-contracts-readme",
456
- "name": "Contracts README",
457
- "path": "code/dotnet/contracts/README.md",
458
- "location": "framework",
459
- "category": "documentation",
460
- "phase": "design",
461
- "required": false,
462
- "description": "Documentation for contract patterns and usage",
463
- "outputName": "README.md",
464
- "placeholders": [
465
- "FEATURE_NAME"
466
- ],
467
- "stackSpecific": false,
468
- "engine": "handlebars",
469
- "deprecated": false,
470
- "technology": "dotnet",
471
- "applicableStacks": [
472
- "blazor-azure",
473
- "nextjs-supabase"
474
- ]
475
- },
476
- {
477
- "id": "dotnet-contracts-vsa",
478
- "name": "Vertical Slice Architecture Contracts",
479
- "path": "code/dotnet/contracts/contracts-vsa.cs",
480
- "location": "framework",
481
- "category": "code",
482
- "phase": "design",
483
- "required": false,
484
- "description": "Feature slice completo: Abstractions, Entity, Errors, e um slice de operação (Request, Response, Validator, Handler, Endpoint). Padrão KanaiyaKatarmal (.NET 10, Minimal APIs, EF Core 10, FluentValidation 12, Scrutor 7).",
485
- "outputName": "contracts.cs",
486
- "placeholders": [
487
- "FEATURE_NAME",
488
- "NAMESPACE",
489
- "ROUTE",
490
- "DATE"
491
- ],
492
- "stackSpecific": false,
493
- "engine": "handlebars",
494
- "deprecated": false,
495
- "technology": "dotnet"
496
- },
497
- {
498
- "id": "typescript-contracts",
499
- "name": "TypeScript Contracts",
500
- "path": "code/typescript/contracts.ts",
501
- "location": "framework",
502
- "category": "code",
503
- "phase": "design",
504
- "required": false,
505
- "description": "TypeScript type definitions and interfaces",
506
- "outputName": "contracts.ts",
507
- "placeholders": [
508
- "FEATURE_NAME"
509
- ],
510
- "stackSpecific": false,
511
- "engine": "handlebars",
512
- "deprecated": false,
513
- "technology": "typescript",
514
- "applicableStacks": [
515
- "nextjs-supabase"
516
- ]
517
- },
518
- {
519
- "id": "sql-supabase-migration",
520
- "name": "Supabase Migration",
521
- "path": "code/sql/supabase-migration.sql",
522
- "location": "framework",
523
- "category": "code",
524
- "phase": "implement",
525
- "required": false,
526
- "description": "Supabase SQL migration template (basic)",
527
- "outputName": "{timestamp}_{feature_name}.sql",
528
- "placeholders": [
529
- "FEATURE_NAME"
530
- ],
531
- "stackSpecific": false,
532
- "engine": "handlebars",
533
- "deprecated": false,
534
- "technology": "sql",
535
- "applicableStacks": [
536
- "nextjs-supabase"
537
- ]
538
- },
539
- {
540
- "id": "sql-supabase-migration-enhanced",
541
- "name": "Supabase Migration (Enhanced)",
542
- "path": "code/sql/supabase-migration.template.sql",
543
- "location": "framework",
544
- "category": "code",
545
- "phase": "implement",
546
- "required": false,
547
- "description": "Enhanced Supabase migration with RLS and indexes",
548
- "outputName": "{timestamp}_{feature_name}.sql",
549
- "placeholders": [
550
- "FEATURE_NAME"
551
- ],
552
- "stackSpecific": false,
553
- "engine": "handlebars",
554
- "deprecated": false,
555
- "technology": "sql",
556
- "applicableStacks": [
557
- "nextjs-supabase"
558
- ]
559
- },
560
- {
561
- "id": "sql-rls-policy",
562
- "name": "Row-Level Security Policy",
563
- "path": "code/sql/rls-policy.sql",
564
- "location": "framework",
565
- "category": "code",
566
- "phase": "implement",
567
- "required": false,
568
- "description": "Row-level security policy template for Supabase",
569
- "outputName": "{table_name}_rls_policies.sql",
570
- "placeholders": [
571
- "FEATURE_NAME",
572
- "TABLE_NAME"
573
- ],
574
- "stackSpecific": false,
575
- "engine": "handlebars",
576
- "deprecated": false,
577
- "technology": "sql",
578
- "applicableStacks": [
579
- "nextjs-supabase"
580
- ]
581
- },
582
- {
583
- "id": "azure-bicep-main",
584
- "name": "Main Bicep Orchestration",
585
- "path": "infrastructure/azure/main.bicep",
586
- "location": "framework",
587
- "category": "infrastructure",
588
- "phase": "implement",
589
- "required": true,
590
- "description": "Main Bicep orchestration file for Azure resources",
591
- "outputName": "main.bicep",
592
- "placeholders": [
593
- "PROJECT_NAME",
594
- "ENVIRONMENT"
595
- ],
596
- "stackSpecific": false,
597
- "engine": "handlebars",
598
- "deprecated": false,
599
- "technology": "bicep",
600
- "applicableStacks": [
601
- "blazor-azure"
602
- ]
603
- },
604
- {
605
- "id": "azure-bicep-container-app",
606
- "name": "Azure Container App",
607
- "path": "infrastructure/azure/container-app.bicep",
608
- "location": "framework",
609
- "category": "infrastructure",
610
- "phase": "implement",
611
- "required": false,
612
- "description": "Azure Container App definition with scaling and secrets",
613
- "outputName": "container-app.bicep",
614
- "placeholders": [
615
- "PROJECT_NAME"
616
- ],
617
- "stackSpecific": false,
618
- "engine": "handlebars",
619
- "deprecated": false,
620
- "technology": "bicep",
621
- "applicableStacks": [
622
- "blazor-azure"
623
- ]
624
- },
625
- {
626
- "id": "azure-bicep-container-env",
627
- "name": "Container Apps Environment",
628
- "path": "infrastructure/azure/container-app-env.bicep",
629
- "location": "framework",
630
- "category": "infrastructure",
631
- "phase": "implement",
632
- "required": false,
633
- "description": "Azure Container Apps environment with Log Analytics",
634
- "outputName": "container-app-env.bicep",
635
- "placeholders": [
636
- "PROJECT_NAME"
637
- ],
638
- "stackSpecific": false,
639
- "engine": "handlebars",
640
- "deprecated": false,
641
- "technology": "bicep",
642
- "applicableStacks": [
643
- "blazor-azure"
644
- ]
645
- },
646
- {
647
- "id": "azure-bicep-app-service",
648
- "name": "Azure App Service",
649
- "path": "infrastructure/azure/app-service.bicep",
650
- "location": "framework",
651
- "category": "infrastructure",
652
- "phase": "implement",
653
- "required": false,
654
- "description": "Azure App Service definition (alternative to Container Apps)",
655
- "outputName": "app-service.bicep",
656
- "placeholders": [
657
- "PROJECT_NAME"
658
- ],
659
- "stackSpecific": false,
660
- "engine": "handlebars",
661
- "deprecated": false,
662
- "technology": "bicep",
663
- "applicableStacks": [
664
- "blazor-azure"
665
- ]
666
- },
667
- {
668
- "id": "azure-bicep-sql",
669
- "name": "Azure SQL Database",
670
- "path": "infrastructure/azure/sql-database.bicep",
671
- "location": "framework",
672
- "category": "infrastructure",
673
- "phase": "implement",
674
- "required": false,
675
- "description": "Azure SQL Database with server and firewall rules",
676
- "outputName": "sql-database.bicep",
677
- "placeholders": [
678
- "PROJECT_NAME"
679
- ],
680
- "stackSpecific": false,
681
- "engine": "handlebars",
682
- "deprecated": false,
683
- "technology": "bicep",
684
- "applicableStacks": [
685
- "blazor-azure"
686
- ]
687
- },
688
- {
689
- "id": "azure-bicep-storage",
690
- "name": "Azure Storage Account",
691
- "path": "infrastructure/azure/storage.bicep",
692
- "location": "framework",
693
- "category": "infrastructure",
694
- "phase": "implement",
695
- "required": false,
696
- "description": "Azure Storage Account with blob containers",
697
- "outputName": "storage.bicep",
698
- "placeholders": [
699
- "PROJECT_NAME"
700
- ],
701
- "stackSpecific": false,
702
- "engine": "handlebars",
703
- "deprecated": false,
704
- "technology": "bicep",
705
- "applicableStacks": [
706
- "blazor-azure"
707
- ]
708
- },
709
- {
710
- "id": "azure-bicep-key-vault",
711
- "name": "Azure Key Vault",
712
- "path": "infrastructure/azure/key-vault.bicep",
713
- "location": "framework",
714
- "category": "infrastructure",
715
- "phase": "implement",
716
- "required": false,
717
- "description": "Azure Key Vault for secrets management",
718
- "outputName": "key-vault.bicep",
719
- "placeholders": [
720
- "PROJECT_NAME"
721
- ],
722
- "stackSpecific": false,
723
- "engine": "handlebars",
724
- "deprecated": false,
725
- "technology": "bicep",
726
- "applicableStacks": [
727
- "blazor-azure"
728
- ]
729
- },
730
- {
731
- "id": "azure-bicep-app-insights",
732
- "name": "Application Insights",
733
- "path": "infrastructure/azure/app-insights.bicep",
734
- "location": "framework",
735
- "category": "infrastructure",
736
- "phase": "implement",
737
- "required": false,
738
- "description": "Application Insights for monitoring and telemetry",
739
- "outputName": "app-insights.bicep",
740
- "placeholders": [
741
- "PROJECT_NAME"
742
- ],
743
- "stackSpecific": false,
744
- "engine": "handlebars",
745
- "deprecated": false,
746
- "technology": "bicep",
747
- "applicableStacks": [
748
- "blazor-azure"
749
- ]
750
- },
751
- {
752
- "id": "azure-parameters-dev",
753
- "name": "Parameters (Development)",
754
- "path": "infrastructure/azure/parameters.dev.json",
755
- "location": "framework",
756
- "category": "infrastructure",
757
- "phase": "implement",
758
- "required": false,
759
- "description": "Bicep parameters for development environment",
760
- "outputName": "parameters.dev.json",
761
- "placeholders": [],
762
- "stackSpecific": false,
763
- "engine": null,
764
- "deprecated": false,
765
- "technology": "azure",
766
- "applicableStacks": [
767
- "blazor-azure"
768
- ]
769
- },
770
- {
771
- "id": "azure-parameters-staging",
772
- "name": "Parameters (Staging)",
773
- "path": "infrastructure/azure/parameters.staging.json",
774
- "location": "framework",
775
- "category": "infrastructure",
776
- "phase": "implement",
777
- "required": false,
778
- "description": "Bicep parameters for staging environment",
779
- "outputName": "parameters.staging.json",
780
- "placeholders": [],
781
- "stackSpecific": false,
782
- "engine": null,
783
- "deprecated": false,
784
- "technology": "azure",
785
- "applicableStacks": [
786
- "blazor-azure"
787
- ]
788
- },
789
- {
790
- "id": "azure-parameters-prod",
791
- "name": "Parameters (Production)",
792
- "path": "infrastructure/azure/parameters.prod.json",
793
- "location": "framework",
794
- "category": "infrastructure",
795
- "phase": "implement",
796
- "required": false,
797
- "description": "Bicep parameters for production environment",
798
- "outputName": "parameters.prod.json",
799
- "placeholders": [],
800
- "stackSpecific": false,
801
- "engine": null,
802
- "deprecated": false,
803
- "technology": "azure",
804
- "applicableStacks": [
805
- "blazor-azure"
806
- ]
807
- },
808
- {
809
- "id": "azure-deploy-ps1",
810
- "name": "Deploy Script (PowerShell)",
811
- "path": "infrastructure/azure/deploy.ps1",
812
- "location": "framework",
813
- "category": "infrastructure",
814
- "phase": "implement",
815
- "required": false,
816
- "description": "PowerShell deployment script for Azure",
817
- "outputName": "deploy.ps1",
818
- "placeholders": [],
819
- "stackSpecific": false,
820
- "engine": null,
821
- "deprecated": false,
822
- "technology": "azure",
823
- "applicableStacks": [
824
- "blazor-azure"
825
- ]
826
- },
827
- {
828
- "id": "azure-deploy-sh",
829
- "name": "Deploy Script (Bash)",
830
- "path": "infrastructure/azure/deploy.sh",
831
- "location": "framework",
832
- "category": "infrastructure",
833
- "phase": "implement",
834
- "required": false,
835
- "description": "Bash deployment script for Azure",
836
- "outputName": "deploy.sh",
837
- "placeholders": [],
838
- "stackSpecific": false,
839
- "engine": null,
840
- "deprecated": false,
841
- "technology": "azure",
842
- "applicableStacks": [
843
- "blazor-azure"
844
- ]
845
- },
846
- {
847
- "id": "azure-deploy-checklist",
848
- "name": "Deployment Checklist",
849
- "path": "infrastructure/azure/deploy-checklist.md",
850
- "location": "framework",
851
- "category": "infrastructure",
852
- "phase": "implement",
853
- "required": false,
854
- "description": "Pre-deployment verification checklist",
855
- "outputName": "deploy-checklist.md",
856
- "placeholders": [],
857
- "stackSpecific": false,
858
- "engine": "handlebars",
859
- "deprecated": false,
860
- "technology": "azure",
861
- "applicableStacks": [
862
- "blazor-azure"
863
- ]
864
- },
865
- {
866
- "id": "azure-dockerfile",
867
- "name": "Dockerfile (Azure)",
868
- "path": "infrastructure/azure/Dockerfile.example",
869
- "location": "framework",
870
- "category": "infrastructure",
871
- "phase": "implement",
872
- "required": false,
873
- "description": "Example Dockerfile for Azure Container Apps",
874
- "outputName": "Dockerfile",
875
- "placeholders": [],
876
- "stackSpecific": false,
877
- "engine": null,
878
- "deprecated": false,
879
- "technology": "docker",
880
- "applicableStacks": [
881
- "blazor-azure"
882
- ]
883
- },
884
- {
885
- "id": "azure-readme",
886
- "name": "Infrastructure README",
887
- "path": "infrastructure/azure/README.md",
888
- "location": "framework",
889
- "category": "infrastructure",
890
- "phase": "implement",
891
- "required": false,
892
- "description": "Documentation for Azure infrastructure",
893
- "outputName": "README.md",
894
- "placeholders": [],
895
- "stackSpecific": false,
896
- "engine": "handlebars",
897
- "deprecated": false,
898
- "technology": "azure",
899
- "applicableStacks": [
900
- "blazor-azure"
901
- ]
902
- },
903
- {
904
- "id": "docker-dockerfile-api",
905
- "name": "Dockerfile (.NET API)",
906
- "path": "infrastructure/docker/dockerfile-api.dockerfile",
907
- "location": "framework",
908
- "category": "infrastructure",
909
- "phase": "implement",
910
- "required": false,
911
- "description": ".NET API Dockerfile for EasyPanel/Docker",
912
- "outputName": "Dockerfile.api",
913
- "placeholders": [],
914
- "stackSpecific": false,
915
- "engine": null,
916
- "deprecated": false,
917
- "technology": "docker",
918
- "applicableStacks": [
919
- "nextjs-supabase"
920
- ]
921
- },
922
- {
923
- "id": "docker-dockerfile-web",
924
- "name": "Dockerfile (Next.js Web)",
925
- "path": "infrastructure/docker/dockerfile-web.dockerfile",
926
- "location": "framework",
927
- "category": "infrastructure",
928
- "phase": "implement",
929
- "required": false,
930
- "description": "Next.js web Dockerfile for EasyPanel/Docker",
931
- "outputName": "Dockerfile.web",
932
- "placeholders": [],
933
- "stackSpecific": false,
934
- "engine": null,
935
- "deprecated": false,
936
- "technology": "docker",
937
- "applicableStacks": [
938
- "nextjs-supabase"
939
- ]
940
- },
941
- {
942
- "id": "docker-dockerfile-generic",
943
- "name": "Dockerfile (Generic)",
944
- "path": "infrastructure/docker/Dockerfile.template",
945
- "location": "framework",
946
- "category": "infrastructure",
947
- "phase": "implement",
948
- "required": false,
949
- "description": "Generic multi-stage Dockerfile template",
950
- "outputName": "Dockerfile",
951
- "placeholders": [
952
- "PROJECT_NAME"
953
- ],
954
- "stackSpecific": false,
955
- "engine": "handlebars",
956
- "deprecated": false,
957
- "technology": "docker",
958
- "applicableStacks": [
959
- "nextjs-supabase"
960
- ]
961
- },
962
- {
963
- "id": "docker-compose",
964
- "name": "Docker Compose",
965
- "path": "infrastructure/docker/docker-compose.template.yml",
966
- "location": "framework",
967
- "category": "infrastructure",
968
- "phase": "implement",
969
- "required": false,
970
- "description": "Docker Compose for local development environment",
971
- "outputName": "docker-compose.yml",
972
- "placeholders": [
973
- "PROJECT_NAME"
974
- ],
975
- "stackSpecific": false,
976
- "engine": "handlebars",
977
- "deprecated": false,
978
- "technology": "docker",
979
- "applicableStacks": [
980
- "nextjs-supabase"
981
- ]
982
- },
983
- {
984
- "id": "easypanel-config",
985
- "name": "EasyPanel Configuration",
986
- "path": "infrastructure/docker/easypanel.template.json",
987
- "location": "framework",
988
- "category": "infrastructure",
989
- "phase": "implement",
990
- "required": false,
991
- "description": "EasyPanel deployment configuration",
992
- "outputName": "easypanel.json",
993
- "placeholders": [
994
- "PROJECT_NAME"
995
- ],
996
- "stackSpecific": false,
997
- "engine": "handlebars",
998
- "deprecated": false,
999
- "technology": "docker",
1000
- "applicableStacks": [
1001
- "nextjs-supabase"
1002
- ]
1003
- },
1004
- {
1005
- "id": "integration-asaas-client",
1006
- "name": "Asaas Financial Client",
1007
- "path": "integrations/asaas-client.cs",
1008
- "location": "framework",
1009
- "category": "integration",
1010
- "phase": "implement",
1011
- "required": false,
1012
- "description": "Asaas financial API client implementation",
1013
- "outputName": "AsaasClient.cs",
1014
- "placeholders": [
1015
- "NAMESPACE"
1016
- ],
1017
- "stackSpecific": false,
1018
- "engine": "handlebars",
1019
- "deprecated": false,
1020
- "technology": "dotnet",
1021
- "applicableStacks": [
1022
- "blazor-azure",
1023
- "nextjs-supabase"
1024
- ]
1025
- },
1026
- {
1027
- "id": "integration-asaas-webhook",
1028
- "name": "Asaas Webhook Handler",
1029
- "path": "integrations/asaas-webhook.cs",
1030
- "location": "framework",
1031
- "category": "integration",
1032
- "phase": "implement",
1033
- "required": false,
1034
- "description": "Asaas webhook handler for payment events",
1035
- "outputName": "AsaasWebhookHandler.cs",
1036
- "placeholders": [
1037
- "NAMESPACE"
1038
- ],
1039
- "stackSpecific": false,
1040
- "engine": "handlebars",
1041
- "deprecated": false,
1042
- "technology": "dotnet",
1043
- "applicableStacks": [
1044
- "blazor-azure",
1045
- "nextjs-supabase"
1046
- ]
1047
- },
1048
- {
1049
- "id": "integration-azure-identity",
1050
- "name": "Azure Identity Configuration",
1051
- "path": "integrations/azure-identity-config.cs",
1052
- "location": "framework",
1053
- "category": "integration",
1054
- "phase": "implement",
1055
- "required": false,
1056
- "description": "Azure AD/Entra ID authentication configuration",
1057
- "outputName": "AzureIdentityConfig.cs",
1058
- "placeholders": [
1059
- "NAMESPACE"
1060
- ],
1061
- "stackSpecific": false,
1062
- "engine": "handlebars",
1063
- "deprecated": false,
1064
- "technology": "dotnet",
1065
- "applicableStacks": [
1066
- "blazor-azure"
1067
- ]
1068
- },
1069
- {
1070
- "id": "integration-clerk",
1071
- "name": "Clerk Authentication",
1072
- "path": "integrations/clerk-config.cs",
1073
- "location": "framework",
1074
- "category": "integration",
1075
- "phase": "implement",
1076
- "required": false,
1077
- "description": "Clerk authentication configuration",
1078
- "outputName": "ClerkConfig.cs",
1079
- "placeholders": [
1080
- "NAMESPACE"
1081
- ],
1082
- "stackSpecific": false,
1083
- "engine": "handlebars",
1084
- "deprecated": false,
1085
- "technology": "dotnet",
1086
- "applicableStacks": [
1087
- "blazor-azure",
1088
- "nextjs-supabase"
1089
- ]
1090
- },
1091
- {
1092
- "id": "ui-design-system-css",
1093
- "name": "Design System CSS",
1094
- "path": "ui/design-system.css",
1095
- "location": "framework",
1096
- "category": "ui",
1097
- "phase": "uiux",
1098
- "required": false,
1099
- "description": "CSS design tokens and variables (colors, spacing, typography)",
1100
- "outputName": "design-system.css",
1101
- "placeholders": [
1102
- "PROJECT_NAME"
1103
- ],
1104
- "stackSpecific": false,
1105
- "engine": "handlebars",
1106
- "deprecated": false,
1107
- "technology": "css",
1108
- "applicableStacks": [
1109
- "blazor-azure",
1110
- "nextjs-supabase"
1111
- ]
1112
- },
1113
- {
1114
- "id": "ui-fluent-theme",
1115
- "name": "Fluent Design Theme",
1116
- "path": "ui/FluentDesignTheme.cs",
1117
- "location": "framework",
1118
- "category": "ui",
1119
- "phase": "uiux",
1120
- "required": false,
1121
- "description": "FluentUI Blazor theme configuration (auto-generated)",
1122
- "outputName": "FluentDesignTheme.cs",
1123
- "placeholders": [
1124
- "NAMESPACE"
1125
- ],
1126
- "stackSpecific": false,
1127
- "engine": "handlebars",
1128
- "deprecated": false,
1129
- "autoGenerated": true,
1130
- "technology": "dotnet",
1131
- "applicableStacks": [
1132
- "blazor-azure"
1133
- ]
1134
- },
1135
- {
1136
- "id": "ui-mud-theme",
1137
- "name": "MudBlazor Theme",
1138
- "path": "ui/MudTheme.cs",
1139
- "location": "framework",
1140
- "category": "ui",
1141
- "phase": "uiux",
1142
- "required": false,
1143
- "description": "MudBlazor theme configuration (auto-generated)",
1144
- "outputName": "MudTheme.cs",
1145
- "placeholders": [
1146
- "NAMESPACE"
1147
- ],
1148
- "stackSpecific": false,
1149
- "engine": "handlebars",
1150
- "deprecated": false,
1151
- "autoGenerated": true,
1152
- "technology": "dotnet",
1153
- "applicableStacks": [
1154
- "blazor-azure"
1155
- ]
1156
- },
1157
- {
1158
- "id": "saas-subscription",
1159
- "name": "Subscription Model",
1160
- "path": "saas/subscription.cs",
1161
- "location": "framework",
1162
- "category": "saas",
1163
- "phase": "implement",
1164
- "required": false,
1165
- "description": "Multi-tenant subscription model with billing",
1166
- "outputName": "Subscription.cs",
1167
- "placeholders": [
1168
- "NAMESPACE"
1169
- ],
1170
- "stackSpecific": false,
1171
- "engine": "handlebars",
1172
- "deprecated": false,
1173
- "technology": "dotnet",
1174
- "applicableStacks": [
1175
- "blazor-azure",
1176
- "nextjs-supabase"
1177
- ]
1178
- },
1179
- {
1180
- "id": "saas-tenant",
1181
- "name": "Tenant Model",
1182
- "path": "saas/tenant.cs",
1183
- "location": "framework",
1184
- "category": "saas",
1185
- "phase": "implement",
1186
- "required": false,
1187
- "description": "Multi-tenant tenant model with isolation",
1188
- "outputName": "Tenant.cs",
1189
- "placeholders": [
1190
- "NAMESPACE"
1191
- ],
1192
- "stackSpecific": false,
1193
- "engine": "handlebars",
1194
- "deprecated": false,
1195
- "technology": "dotnet",
1196
- "applicableStacks": [
1197
- "blazor-azure",
1198
- "nextjs-supabase"
1199
- ]
1200
- },
1201
- {
1202
- "id": "ui-mockups",
1203
- "name": "UI Mockups",
1204
- "path": "docs/ui-mockups.md",
1205
- "location": "framework",
1206
- "category": "documentation",
1207
- "phase": "uiux",
1208
- "required": false,
1209
- "description": "Wireframes and layout specifications with ASCII mockups and responsive breakpoints",
1210
- "outputName": "ui-mockups.md",
1211
- "placeholders": [
1212
- "FEATURE_NAME",
1213
- "DATE"
1214
- ],
1215
- "stackSpecific": false,
1216
- "engine": "handlebars",
1217
- "deprecated": false,
1218
- "technology": "handlebars"
1219
- },
1220
- {
1221
- "id": "ui-flows",
1222
- "name": "UI Flows",
1223
- "path": "docs/ui-flows.md",
1224
- "location": "framework",
1225
- "category": "documentation",
1226
- "phase": "uiux",
1227
- "required": false,
1228
- "description": "User flows and interaction patterns with state diagrams and edge cases",
1229
- "outputName": "ui-flows.md",
1230
- "placeholders": [
1231
- "FEATURE_NAME",
1232
- "DATE"
1233
- ],
1234
- "stackSpecific": false,
1235
- "engine": "handlebars",
1236
- "deprecated": false,
1237
- "technology": "handlebars"
1238
- },
1239
- {
1240
- "id": "ui-components",
1241
- "name": "UI Components",
1242
- "path": "docs/ui-components.md",
1243
- "location": "framework",
1244
- "category": "documentation",
1245
- "phase": "uiux",
1246
- "required": false,
1247
- "description": "Component specifications mapping UI elements to FluentUI/MudBlazor components with props and events",
1248
- "outputName": "ui-components.md",
1249
- "placeholders": [
1250
- "FEATURE_NAME",
1251
- "DATE",
1252
- "STACK"
1253
- ],
1254
- "stackSpecific": false,
1255
- "engine": "handlebars",
1256
- "deprecated": false,
1257
- "technology": "handlebars"
1258
- },
1259
- {
1260
- "id": "ui-design-system",
1261
- "name": "UI Design System",
1262
- "path": "docs/ui-design-system.md",
1263
- "location": "framework",
1264
- "category": "documentation",
1265
- "phase": "uiux",
1266
- "required": false,
1267
- "description": "Design system documentation with color palette, typography, spacing, and semantic tokens",
1268
- "outputName": "ui-design-system.md",
1269
- "placeholders": [
1270
- "FEATURE_NAME",
1271
- "DATE",
1272
- "PROJECT_NAME"
1273
- ],
1274
- "stackSpecific": false,
1275
- "engine": "handlebars",
1276
- "deprecated": false,
1277
- "technology": "handlebars"
1278
- },
1279
- {
1280
- "id": "github-workflow-dotnet-build",
1281
- "name": "GitHub Actions - .NET Build Workflow",
1282
- "path": "infrastructure/github/workflows/dotnet-build.yml.hbs",
1283
- "location": "framework",
1284
- "category": "infrastructure",
1285
- "technology": "github-actions",
1286
- "phase": "build",
1287
- "required": false,
1288
- "description": "Reusable workflow for building .NET applications with restore, build, test, coverage",
1289
- "outputName": "dotnet-build.yml",
1290
- "placeholders": [
1291
- "DOTNET_VERSION"
1292
- ],
1293
- "stackSpecific": false,
1294
- "applicableStacks": [
1295
- "blazor-azure",
1296
- "nextjs-supabase"
1297
- ],
1298
- "engine": "handlebars",
1299
- "deprecated": false,
1300
- "isFragment": true
1301
- },
1302
- {
1303
- "id": "github-workflow-docker-build-push",
1304
- "name": "GitHub Actions - Docker Build & Push",
1305
- "path": "infrastructure/github/workflows/docker-build-push.yml.hbs",
1306
- "location": "framework",
1307
- "category": "infrastructure",
1308
- "technology": "github-actions",
1309
- "phase": "build",
1310
- "required": false,
1311
- "description": "Reusable workflow for building and pushing Docker images to registry",
1312
- "outputName": "docker-build-push.yml",
1313
- "placeholders": [],
1314
- "stackSpecific": false,
1315
- "applicableStacks": [
1316
- "blazor-azure",
1317
- "nextjs-supabase"
1318
- ],
1319
- "engine": "handlebars",
1320
- "deprecated": false,
1321
- "isFragment": true
1322
- },
1323
- {
1324
- "id": "github-workflow-deploy-azure-app-service",
1325
- "name": "GitHub Actions - Deploy to Azure App Service",
1326
- "path": "infrastructure/github/workflows/deploy-azure-app-service.yml.hbs",
1327
- "location": "framework",
1328
- "category": "infrastructure",
1329
- "technology": "github-actions",
1330
- "phase": "deploy",
1331
- "required": false,
1332
- "description": "Reusable workflow for deploying .NET applications to Azure App Service with Bicep infrastructure",
1333
- "outputName": "deploy-azure-app-service.yml",
1334
- "placeholders": [
1335
- "DOTNET_VERSION"
1336
- ],
1337
- "stackSpecific": false,
1338
- "applicableStacks": [
1339
- "blazor-azure"
1340
- ],
1341
- "engine": "handlebars",
1342
- "deprecated": false,
1343
- "isFragment": true
1344
- },
1345
- {
1346
- "id": "github-workflow-deploy-easypanel",
1347
- "name": "GitHub Actions - Deploy to EasyPanel",
1348
- "path": "infrastructure/github/workflows/deploy-easypanel.yml.hbs",
1349
- "location": "framework",
1350
- "category": "infrastructure",
1351
- "technology": "github-actions",
1352
- "phase": "deploy",
1353
- "required": false,
1354
- "description": "Reusable workflow for deploying to EasyPanel via webhook",
1355
- "outputName": "deploy-easypanel.yml",
1356
- "placeholders": [],
1357
- "stackSpecific": false,
1358
- "applicableStacks": [
1359
- "nextjs-supabase"
1360
- ],
1361
- "engine": "handlebars",
1362
- "deprecated": false,
1363
- "isFragment": true
1364
- },
1365
- {
1366
- "id": "github-action-docker-build-push",
1367
- "name": "GitHub Composite Action - Docker Build & Push",
1368
- "path": "infrastructure/github/actions/docker-build-push/action.yml.hbs",
1369
- "location": "framework",
1370
- "category": "infrastructure",
1371
- "technology": "github-actions",
1372
- "phase": "build",
1373
- "required": false,
1374
- "description": "Composite action for building and pushing Docker images",
1375
- "outputName": "action.yml",
1376
- "placeholders": [],
1377
- "stackSpecific": false,
1378
- "applicableStacks": [
1379
- "blazor-azure",
1380
- "nextjs-supabase"
1381
- ],
1382
- "engine": "handlebars",
1383
- "deprecated": false,
1384
- "isFragment": true
1385
- },
1386
- {
1387
- "id": "github-action-health-check",
1388
- "name": "GitHub Composite Action - Health Check",
1389
- "path": "infrastructure/github/actions/health-check/action.yml.hbs",
1390
- "location": "framework",
1391
- "category": "infrastructure",
1392
- "technology": "github-actions",
1393
- "phase": "deploy",
1394
- "required": false,
1395
- "description": "Composite action for polling health endpoint until ready",
1396
- "outputName": "action.yml",
1397
- "placeholders": [],
1398
- "stackSpecific": false,
1399
- "applicableStacks": [
1400
- "blazor-azure",
1401
- "nextjs-supabase"
1402
- ],
1403
- "engine": "handlebars",
1404
- "deprecated": false,
1405
- "isFragment": true
1406
- },
1407
- {
1408
- "id": "github-action-azure-auth",
1409
- "name": "GitHub Composite Action - Azure OIDC Auth",
1410
- "path": "infrastructure/github/actions/azure-auth/action.yml.hbs",
1411
- "location": "framework",
1412
- "category": "infrastructure",
1413
- "technology": "github-actions",
1414
- "phase": "deploy",
1415
- "required": false,
1416
- "description": "Composite action for Azure authentication using OIDC",
1417
- "outputName": "action.yml",
1418
- "placeholders": [],
1419
- "stackSpecific": false,
1420
- "applicableStacks": [
1421
- "blazor-azure"
1422
- ],
1423
- "engine": "handlebars",
1424
- "deprecated": false,
1425
- "isFragment": true
1426
- },
1427
- {
1428
- "id": "blazor-azure-ci-build",
1429
- "name": "Blazor-Azure CI Build Workflow",
1430
- "path": "infrastructure/github/workflows/ci-build.yml.hbs",
1431
- "location": "stack/blazor-azure",
1432
- "category": "infrastructure",
1433
- "technology": "github-actions",
1434
- "phase": "build",
1435
- "required": true,
1436
- "description": "CI build workflow for Blazor-Azure stack with security checks",
1437
- "outputName": "ci-build.yml",
1438
- "placeholders": [
1439
- "DOTNET_VERSION"
1440
- ],
1441
- "stackSpecific": true,
1442
- "applicableStacks": [
1443
- "blazor-azure"
1444
- ],
1445
- "engine": "handlebars",
1446
- "deprecated": false
1447
- },
1448
- {
1449
- "id": "blazor-azure-cd-staging",
1450
- "name": "Blazor-Azure Staging Deployment",
1451
- "path": "infrastructure/github/workflows/cd-staging.yml.hbs",
1452
- "location": "stack/blazor-azure",
1453
- "category": "infrastructure",
1454
- "technology": "github-actions",
1455
- "phase": "deploy",
1456
- "required": true,
1457
- "description": "Staging deployment workflow for Azure App Service",
1458
- "outputName": "cd-staging.yml",
1459
- "placeholders": [
1460
- "APP_NAME",
1461
- "DOTNET_VERSION"
1462
- ],
1463
- "stackSpecific": true,
1464
- "applicableStacks": [
1465
- "blazor-azure"
1466
- ],
1467
- "engine": "handlebars",
1468
- "deprecated": false
1469
- },
1470
- {
1471
- "id": "blazor-azure-cd-prod",
1472
- "name": "Blazor-Azure Production Deployment",
1473
- "path": "infrastructure/github/workflows/cd-prod.yml.hbs",
1474
- "location": "stack/blazor-azure",
1475
- "category": "infrastructure",
1476
- "technology": "github-actions",
1477
- "phase": "deploy",
1478
- "required": true,
1479
- "description": "Production deployment workflow for Azure App Service with security scanning",
1480
- "outputName": "cd-prod.yml",
1481
- "placeholders": [
1482
- "APP_NAME",
1483
- "DOTNET_VERSION"
1484
- ],
1485
- "stackSpecific": true,
1486
- "applicableStacks": [
1487
- "blazor-azure"
1488
- ],
1489
- "engine": "handlebars",
1490
- "deprecated": false
1491
- },
1492
- {
1493
- "id": "nextjs-supabase-ci-build",
1494
- "name": "NextJS-Supabase CI Build Workflow",
1495
- "path": "infrastructure/github/workflows/ci-build.yml.hbs",
1496
- "location": "stack/nextjs-supabase",
1497
- "category": "infrastructure",
1498
- "technology": "github-actions",
1499
- "phase": "build",
1500
- "required": true,
1501
- "description": "CI build workflow for NextJS-Supabase stack (Node.js + .NET combined)",
1502
- "outputName": "ci-build.yml",
1503
- "placeholders": [
1504
- "DOTNET_VERSION"
1505
- ],
1506
- "stackSpecific": true,
1507
- "applicableStacks": [
1508
- "nextjs-supabase"
1509
- ],
1510
- "engine": "handlebars",
1511
- "deprecated": false
1512
- },
1513
- {
1514
- "id": "hop-squad-leader",
1515
- "name": "Squad Leader HOP",
1516
- "path": "meta-prompts/squad-leaders/squad-leader.md",
1517
- "location": "framework",
1518
- "category": "meta-prompts",
1519
- "technology": "handlebars",
1520
- "phase": "implement",
1521
- "required": false,
1522
- "description": "Generic squad leader higher-order prompt with mission, domain-leaders, standards, tasks, deliverables, constraints",
1523
- "outputName": "squad-leader-prompt.md",
1524
- "placeholders": [
1525
- "AGENT_ID",
1526
- "DOMAIN",
1527
- "MISSION",
1528
- "DOMAIN_LEADERS",
1529
- "SPEC_SUMMARY",
1530
- "STANDARDS",
1531
- "TASKS",
1532
- "DELIVERABLES",
1533
- "CONSTRAINTS",
1534
- "FEATURE_NAME"
1535
- ],
1536
- "stackSpecific": false,
1537
- "engine": "handlebars",
1538
- "deprecated": false,
1539
- "hopType": "squad-leader"
1540
- },
1541
- {
1542
- "id": "hop-backend-squad",
1543
- "name": "Backend Squad Leader HOP",
1544
- "path": "meta-prompts/squad-leaders/backend-squad.md",
1545
- "location": "framework",
1546
- "category": "meta-prompts",
1547
- "technology": "handlebars",
1548
- "phase": "implement",
1549
- "required": false,
1550
- "description": "Backend squad leader HOP for dotnet-senior with backend domain leaders, .NET 10 standards, architecture and security guidelines",
1551
- "outputName": "backend-squad-prompt.md",
1552
- "placeholders": [
1553
- "AGENT_ID",
1554
- "MISSION",
1555
- "SPEC_SUMMARY",
1556
- "TASKS",
1557
- "DELIVERABLES",
1558
- "CONSTRAINTS",
1559
- "FEATURE_NAME"
1560
- ],
1561
- "stackSpecific": false,
1562
- "engine": "handlebars",
1563
- "deprecated": false,
1564
- "hopType": "squad-leader",
1565
- "applicableStacks": [
1566
- "blazor-azure",
1567
- "nextjs-supabase"
1568
- ]
1569
- },
1570
- {
1571
- "id": "hop-frontend-squad",
1572
- "name": "Frontend Squad Leader HOP",
1573
- "path": "meta-prompts/squad-leaders/frontend-squad.md",
1574
- "location": "framework",
1575
- "category": "meta-prompts",
1576
- "technology": "handlebars",
1577
- "phase": "implement",
1578
- "required": false,
1579
- "description": "Frontend squad leader HOP for ui-designer with Blazor or Next.js domain leaders and design system standards",
1580
- "outputName": "frontend-squad-prompt.md",
1581
- "placeholders": [
1582
- "AGENT_ID",
1583
- "DOMAIN",
1584
- "MISSION",
1585
- "SPEC_SUMMARY",
1586
- "TASKS",
1587
- "DELIVERABLES",
1588
- "CONSTRAINTS",
1589
- "FEATURE_NAME",
1590
- "IS_BLAZOR",
1591
- "IS_NEXTJS"
1592
- ],
1593
- "stackSpecific": false,
1594
- "engine": "handlebars",
1595
- "deprecated": false,
1596
- "hopType": "squad-leader",
1597
- "applicableStacks": [
1598
- "blazor-azure",
1599
- "nextjs-supabase"
1600
- ]
1601
- },
1602
- {
1603
- "id": "hop-parallel-worker",
1604
- "name": "Parallel Worker HOP",
1605
- "path": "meta-prompts/parallel-workers/parallel-worker.md",
1606
- "location": "framework",
1607
- "category": "meta-prompts",
1608
- "technology": "handlebars",
1609
- "phase": "implement",
1610
- "required": false,
1611
- "description": "P-Thread parallel worker HOP with isolation rules, assigned file scope, and structured completion report",
1612
- "outputName": "parallel-worker-prompt.md",
1613
- "placeholders": [
1614
- "AGENT_ID",
1615
- "THREAD_ID",
1616
- "FEATURE_NAME",
1617
- "MISSION",
1618
- "SCOPE",
1619
- "DELIVERABLES",
1620
- "SPEC_SUMMARY",
1621
- "STANDARDS",
1622
- "TASKS"
1623
- ],
1624
- "stackSpecific": false,
1625
- "engine": "handlebars",
1626
- "deprecated": false,
1627
- "hopType": "parallel-worker"
1628
- },
1629
- {
1630
- "id": "hop-parallel-coordinator",
1631
- "name": "Parallel Coordinator HOP",
1632
- "path": "meta-prompts/parallel-workers/parallel-coordinator.md",
1633
- "location": "framework",
1634
- "category": "meta-prompts",
1635
- "technology": "handlebars",
1636
- "phase": "implement",
1637
- "required": false,
1638
- "description": "P-Thread coordinator HOP for spawning, monitoring and merging parallel worker results",
1639
- "outputName": "parallel-coordinator-prompt.md",
1640
- "placeholders": [
1641
- "AGENT_ID",
1642
- "SESSION_ID",
1643
- "FEATURE_NAME",
1644
- "WORKER_COUNT",
1645
- "WORKERS",
1646
- "PARALLEL_STRATEGY",
1647
- "MAX_CONCURRENT",
1648
- "TIMEOUT_MINUTES",
1649
- "MERGE_STRATEGY",
1650
- "SPEC_SUMMARY",
1651
- "PRE_SPAWN_TASKS",
1652
- "POST_MERGE_TASKS",
1653
- "CONSTRAINTS"
1654
- ],
1655
- "stackSpecific": false,
1656
- "engine": "handlebars",
1657
- "deprecated": false,
1658
- "hopType": "parallel-coordinator"
1659
- },
1660
- {
1661
- "id": "hop-wrapper",
1662
- "name": "HOP Wrapper",
1663
- "path": "meta-prompts/hops/hop-wrapper.md",
1664
- "location": "framework",
1665
- "category": "meta-prompts",
1666
- "technology": "handlebars",
1667
- "phase": "implement",
1668
- "required": false,
1669
- "description": "Wraps any prompt with additional context, pre/post conditions, and HOP metadata injection",
1670
- "outputName": "hop-wrapper-prompt.md",
1671
- "placeholders": [
1672
- "HOP_NAME",
1673
- "INNER_PROMPT",
1674
- "FEATURE_NAME",
1675
- "PHASE",
1676
- "AGENT_ID",
1677
- "STANDARDS_OVERRIDE",
1678
- "PRE_CONDITIONS",
1679
- "POST_CONDITIONS",
1680
- "HOP_VERSION",
1681
- "DATE"
1682
- ],
1683
- "stackSpecific": false,
1684
- "engine": "handlebars",
1685
- "deprecated": false,
1686
- "hopType": "utility"
1687
- },
1688
- {
1689
- "id": "hop-retry",
1690
- "name": "HOP Retry",
1691
- "path": "meta-prompts/hops/hop-retry.md",
1692
- "location": "framework",
1693
- "category": "meta-prompts",
1694
- "technology": "handlebars",
1695
- "phase": "implement",
1696
- "required": false,
1697
- "description": "Retry HOP with failure analysis, adjusted approach hints per attempt number (1=minor fix, 2=alternative, 3=escalation-ready)",
1698
- "outputName": "hop-retry-prompt.md",
1699
- "placeholders": [
1700
- "FEATURE_NAME",
1701
- "AGENT_ID",
1702
- "RETRY_COUNT",
1703
- "MAX_RETRIES",
1704
- "TASK_ID",
1705
- "FAILURE_DESCRIPTION",
1706
- "ERROR_DETAILS",
1707
- "PREVIOUS_ATTEMPTS",
1708
- "ORIGINAL_TASK_DESCRIPTION",
1709
- "CONSTRAINTS"
1710
- ],
1711
- "stackSpecific": false,
1712
- "engine": "handlebars",
1713
- "deprecated": false,
1714
- "hopType": "utility"
1715
- },
1716
- {
1717
- "id": "hop-validation",
1718
- "name": "HOP Validation",
1719
- "path": "meta-prompts/hops/hop-validation.md",
1720
- "location": "framework",
1721
- "category": "meta-prompts",
1722
- "technology": "handlebars",
1723
- "phase": "implement",
1724
- "required": false,
1725
- "description": "Validation agent HOP with architecture, security, design-system, and packages checklists",
1726
- "outputName": "hop-validation-prompt.md",
1727
- "placeholders": [
1728
- "VALIDATION_TYPE",
1729
- "REVIEWED_AGENT",
1730
- "FEATURE_NAME",
1731
- "CHECKPOINT_NUM",
1732
- "FILES_TO_REVIEW",
1733
- "VALIDATION_CRITERIA",
1734
- "IS_ARCHITECTURE",
1735
- "IS_SECURITY",
1736
- "IS_DESIGN_SYSTEM",
1737
- "IS_PACKAGES"
1738
- ],
1739
- "stackSpecific": false,
1740
- "engine": "handlebars",
1741
- "deprecated": false,
1742
- "hopType": "validator"
1743
- },
1744
- {
1745
- "id": "hop-checkpoint-validator",
1746
- "name": "Checkpoint Validator HOP",
1747
- "path": "meta-prompts/validators/checkpoint-validator.md",
1748
- "location": "framework",
1749
- "category": "meta-prompts",
1750
- "technology": "handlebars",
1751
- "phase": "implement",
1752
- "required": false,
1753
- "description": "Checkpoint validator HOP running architecture, security, design-system, and packages validators with pass/fail decision logic",
1754
- "outputName": "checkpoint-validator-prompt.md",
1755
- "placeholders": [
1756
- "FEATURE_NAME",
1757
- "CHECKPOINT_NUM",
1758
- "CHECKPOINT_FREQUENCY",
1759
- "TASKS_SINCE_LAST",
1760
- "TASKS_COMPLETED",
1761
- "TASKS_TOTAL",
1762
- "RECENT_TASKS",
1763
- "FILES_CHANGED",
1764
- "HAS_UI_FILES",
1765
- "HAS_CSPROJ_CHANGES"
1766
- ],
1767
- "stackSpecific": false,
1768
- "engine": "handlebars",
1769
- "deprecated": false,
1770
- "hopType": "validator"
1771
- },
1772
- {
1773
- "id": "hop-pre-commit-validator",
1774
- "name": "Pre-Commit Validator HOP",
1775
- "path": "meta-prompts/validators/pre-commit-validator.md",
1776
- "location": "framework",
1777
- "category": "meta-prompts",
1778
- "technology": "handlebars",
1779
- "phase": "implement",
1780
- "required": false,
1781
- "description": "Pre-commit hook validator HOP checking conventional commits, secrets, agent spec validity, and stack-specific rules",
1782
- "outputName": "pre-commit-validator-prompt.md",
1783
- "placeholders": [
1784
- "FEATURE_NAME",
1785
- "BRANCH_NAME",
1786
- "STAGED_FILE_COUNT",
1787
- "STAGED_FILES",
1788
- "IS_CSHARP",
1789
- "IS_TYPESCRIPT"
1790
- ],
1791
- "stackSpecific": false,
1792
- "engine": "handlebars",
1793
- "deprecated": false,
1794
- "hopType": "validator"
1795
- },
1796
- {
1797
- "id": "hop-fusion-agent",
1798
- "name": "Fusion Agent HOP",
1799
- "path": "meta-prompts/fusion/fusion-agent.md",
1800
- "location": "framework",
1801
- "category": "meta-prompts",
1802
- "technology": "handlebars",
1803
- "phase": "implement",
1804
- "required": false,
1805
- "description": "F-Thread fusion participant HOP with approach hints per thread index (standard, alternative, optimized) and self-assessment scoring",
1806
- "outputName": "fusion-agent-prompt.md",
1807
- "placeholders": [
1808
- "AGENT_ID",
1809
- "THREAD_INDEX",
1810
- "THREAD_COUNT",
1811
- "THREAD_COUNT_MINUS_ONE",
1812
- "THREAD_ID",
1813
- "FEATURE_NAME",
1814
- "FUSION_STRATEGY",
1815
- "TASK_DESCRIPTION",
1816
- "SPEC_SUMMARY",
1817
- "STANDARDS",
1818
- "DELIVERABLES"
1819
- ],
1820
- "stackSpecific": false,
1821
- "engine": "handlebars",
1822
- "deprecated": false,
1823
- "hopType": "fusion"
1824
- },
1825
- {
1826
- "id": "hop-fusion-aggregator",
1827
- "name": "Fusion Aggregator HOP",
1828
- "path": "meta-prompts/fusion/fusion-aggregator.md",
1829
- "location": "framework",
1830
- "category": "meta-prompts",
1831
- "technology": "handlebars",
1832
- "phase": "implement",
1833
- "required": false,
1834
- "description": "F-Thread aggregator HOP that scores and selects the winning implementation using best-of-n, consensus, or manual-select strategies",
1835
- "outputName": "fusion-aggregator-prompt.md",
1836
- "placeholders": [
1837
- "SESSION_ID",
1838
- "FEATURE_NAME",
1839
- "THREAD_COUNT",
1840
- "FUSION_STRATEGY",
1841
- "FUSION_RESULTS"
1842
- ],
1843
- "stackSpecific": false,
1844
- "engine": "handlebars",
1845
- "deprecated": false,
1846
- "hopType": "fusion"
1847
- }
1848
- ],
1849
- "stats": {
1850
- "total": 68,
1851
- "framework": 59,
1852
- "deprecated": 0,
1853
- "byCategory": {
1854
- "documentation": 4,
1855
- "code": 24,
1856
- "infrastructure": 18,
1857
- "context": 2,
1858
- "examples": 2,
1859
- "integration": 4,
1860
- "saas": 2,
1861
- "ui": 3,
1862
- "meta-prompts": 12
1863
- },
1864
- "byTechnology": {
1865
- "dotnet": 26,
1866
- "typescript": 1,
1867
- "sql": 3,
1868
- "bicep": 8,
1869
- "azure": 9,
1870
- "docker": 5,
1871
- "handlebars": 22,
1872
- "css": 1,
1873
- "github-actions": 9
1874
- },
1875
- "byPhase": {
1876
- "setup": 1,
1877
- "proposal": 1,
1878
- "uiux": 6,
1879
- "design": 10,
1880
- "clarify": 0,
1881
- "tasks": 1,
1882
- "implement": 34,
1883
- "completed": 1,
1884
- "build": 3,
1885
- "deploy": 4
1886
- },
1887
- "required": 5,
1888
- "optional": 63,
1889
- "applicableToMultipleStacks": 42
1890
- },
1891
- "migrationNotes": {
1892
- "v1ToV2": {
1893
- "breaking": true,
1894
- "pathChanges": "All templates moved from stacks/{stack}/.morph/templates/ to framework/templates/ organized by technology",
1895
- "organizationChange": "Stack-based → Technology-based (enables future stack reusability)",
1896
- "deprecated": 9,
1897
- "movedToFramework": 57,
1898
- "newTechnologies": [
1899
- "dotnet",
1900
- "typescript",
1901
- "sql",
1902
- "bicep",
1903
- "azure",
1904
- "docker"
1905
- ],
1906
- "actionRequired": "Delete stacks/{stack}/.morph/templates/ directories (Phase 6)"
1907
- }
1908
- }
1909
- }
1
+ {
2
+ "$schema": "https://json-schema.org/draft-07/schema#",
3
+ "version": "2.0.0",
4
+ "description": "Template Registry for MORPH-SPEC Framework - Technology-based organization for multi-stack reusability",
5
+ "lastUpdated": "2026-02-27",
6
+ "migration": "v1 → v2: Migrated all templates to framework/, organized by technology (code/dotnet/, infrastructure/azure/, etc.) instead of by stack. This enables future stacks (vue-firebase, angular-mongodb) to reuse existing technology templates.",
7
+ "categories": [
8
+ "documentation",
9
+ "code",
10
+ "infrastructure",
11
+ "context",
12
+ "examples",
13
+ "integration",
14
+ "saas",
15
+ "ui"
16
+ ],
17
+ "technologies": [
18
+ "dotnet",
19
+ "typescript",
20
+ "sql",
21
+ "azure",
22
+ "azure-devops",
23
+ "github-actions",
24
+ "docker",
25
+ "bicep",
26
+ "handlebars"
27
+ ],
28
+ "templates": [
29
+ {
30
+ "id": "proposal",
31
+ "name": "Feature Proposal",
32
+ "path": "docs/proposal.md",
33
+ "location": "framework",
34
+ "category": "documentation",
35
+ "phase": "proposal",
36
+ "required": true,
37
+ "description": "Feature proposal with overview, problem statement, solution approach, and cost estimates",
38
+ "outputName": "proposal.md",
39
+ "placeholders": [
40
+ "FEATURE_NAME",
41
+ "STACK",
42
+ "DATE",
43
+ "AUTHOR"
44
+ ],
45
+ "stackSpecific": false,
46
+ "engine": "handlebars",
47
+ "deprecated": false,
48
+ "technology": "handlebars"
49
+ },
50
+ {
51
+ "id": "spec",
52
+ "name": "Technical Specification",
53
+ "path": "docs/spec.md",
54
+ "location": "framework",
55
+ "category": "documentation",
56
+ "phase": "design",
57
+ "required": true,
58
+ "description": "Detailed technical spec with architecture, data model, API contracts",
59
+ "outputName": "spec.md",
60
+ "placeholders": [
61
+ "FEATURE_NAME",
62
+ "STACK",
63
+ "DATE"
64
+ ],
65
+ "stackSpecific": false,
66
+ "engine": "handlebars",
67
+ "deprecated": false,
68
+ "technology": "handlebars"
69
+ },
70
+ {
71
+ "id": "tasks",
72
+ "name": "Implementation Tasks",
73
+ "path": "feature/tasks.md",
74
+ "location": "framework",
75
+ "category": "documentation",
76
+ "phase": "tasks",
77
+ "required": true,
78
+ "description": "Task breakdown with IDs, dependencies, estimates, and checkpoints",
79
+ "outputName": "tasks.md",
80
+ "placeholders": [
81
+ "FEATURE_NAME",
82
+ "STACK"
83
+ ],
84
+ "stackSpecific": false,
85
+ "engine": "handlebars",
86
+ "deprecated": false,
87
+ "technology": "handlebars"
88
+ },
89
+ {
90
+ "id": "decisions",
91
+ "name": "Architecture Decision Records",
92
+ "path": "feature/decisions.md",
93
+ "location": "framework",
94
+ "category": "documentation",
95
+ "phase": "design",
96
+ "required": true,
97
+ "description": "ADR format for documenting architectural decisions with context, alternatives, consequences",
98
+ "outputName": "decisions.md",
99
+ "placeholders": [
100
+ "FEATURE_NAME",
101
+ "STACK",
102
+ "DATE"
103
+ ],
104
+ "stackSpecific": false,
105
+ "engine": "handlebars",
106
+ "deprecated": false,
107
+ "technology": "handlebars"
108
+ },
109
+ {
110
+ "id": "recap",
111
+ "name": "Feature Recap",
112
+ "path": "feature/recap.md",
113
+ "location": "framework",
114
+ "category": "documentation",
115
+ "phase": "completed",
116
+ "required": true,
117
+ "description": "Post-implementation summary with deliverables, metrics, lessons learned",
118
+ "outputName": "recap.md",
119
+ "placeholders": [
120
+ "FEATURE_NAME",
121
+ "STACK",
122
+ "DATE"
123
+ ],
124
+ "stackSpecific": false,
125
+ "engine": "handlebars",
126
+ "deprecated": false,
127
+ "technology": "handlebars"
128
+ },
129
+ {
130
+ "id": "context",
131
+ "name": "Project Context",
132
+ "path": "context/CONTEXT.md",
133
+ "location": "framework",
134
+ "category": "context",
135
+ "phase": "setup",
136
+ "required": false,
137
+ "description": "Project-level context with tech stack, active features, agents, standards",
138
+ "outputName": "CONTEXT.md",
139
+ "placeholders": [
140
+ "PROJECT_NAME",
141
+ "STACK",
142
+ "TIMESTAMP"
143
+ ],
144
+ "stackSpecific": false,
145
+ "engine": "handlebars",
146
+ "deprecated": false,
147
+ "technology": "handlebars"
148
+ },
149
+ {
150
+ "id": "context-feature",
151
+ "name": "Feature Context",
152
+ "path": "context/CONTEXT-FEATURE.md",
153
+ "location": "framework",
154
+ "category": "context",
155
+ "phase": "setup",
156
+ "required": false,
157
+ "description": "Feature-level context with progress, agents, tasks, decisions, validations",
158
+ "outputName": "CONTEXT-FEATURE.md",
159
+ "placeholders": [
160
+ "FEATURE_NAME",
161
+ "PHASE",
162
+ "STATUS",
163
+ "COMPLEXITY"
164
+ ],
165
+ "stackSpecific": false,
166
+ "engine": "handlebars",
167
+ "deprecated": false,
168
+ "technology": "handlebars"
169
+ },
170
+ {
171
+ "id": "spec-examples",
172
+ "name": "Spec Examples",
173
+ "path": "examples/spec-examples.md",
174
+ "location": "framework",
175
+ "category": "examples",
176
+ "phase": null,
177
+ "required": false,
178
+ "description": "Example technical specs for reference",
179
+ "outputName": null,
180
+ "placeholders": [],
181
+ "stackSpecific": false,
182
+ "engine": null,
183
+ "deprecated": false,
184
+ "technology": null
185
+ },
186
+ {
187
+ "id": "design-system-examples",
188
+ "name": "Design System Examples",
189
+ "path": "examples/design-system-examples.md",
190
+ "location": "framework",
191
+ "category": "examples",
192
+ "phase": null,
193
+ "required": false,
194
+ "description": "Example design system definitions",
195
+ "outputName": null,
196
+ "placeholders": [],
197
+ "stackSpecific": false,
198
+ "engine": null,
199
+ "deprecated": false,
200
+ "technology": null
201
+ },
202
+ {
203
+ "id": "dotnet-backend-service",
204
+ "name": ".NET Service Class",
205
+ "path": "code/dotnet/backend/service.cs",
206
+ "location": "framework",
207
+ "category": "code",
208
+ "phase": "implement",
209
+ "required": false,
210
+ "description": "C# service class template with dependency injection and interface pattern",
211
+ "outputName": "{FeatureName}Service.cs",
212
+ "placeholders": [
213
+ "FEATURE_NAME",
214
+ "NAMESPACE"
215
+ ],
216
+ "stackSpecific": false,
217
+ "engine": "handlebars",
218
+ "deprecated": false,
219
+ "technology": "dotnet",
220
+ "applicableStacks": [
221
+ "blazor-azure",
222
+ "nextjs-supabase"
223
+ ]
224
+ },
225
+ {
226
+ "id": "dotnet-backend-repository",
227
+ "name": ".NET Repository Class",
228
+ "path": "code/dotnet/backend/repository.cs",
229
+ "location": "framework",
230
+ "category": "code",
231
+ "phase": "implement",
232
+ "required": false,
233
+ "description": "C# repository class template with EF Core patterns",
234
+ "outputName": "{FeatureName}Repository.cs",
235
+ "placeholders": [
236
+ "FEATURE_NAME",
237
+ "NAMESPACE"
238
+ ],
239
+ "stackSpecific": false,
240
+ "engine": "handlebars",
241
+ "deprecated": false,
242
+ "technology": "dotnet",
243
+ "applicableStacks": [
244
+ "blazor-azure",
245
+ "nextjs-supabase"
246
+ ]
247
+ },
248
+ {
249
+ "id": "dotnet-backend-test",
250
+ "name": ".NET Unit Test",
251
+ "path": "code/dotnet/test.cs",
252
+ "location": "framework",
253
+ "category": "code",
254
+ "phase": "implement",
255
+ "required": false,
256
+ "description": "xUnit test template with AAA pattern",
257
+ "outputName": "{FeatureName}Tests.cs",
258
+ "placeholders": [
259
+ "FEATURE_NAME",
260
+ "NAMESPACE"
261
+ ],
262
+ "stackSpecific": false,
263
+ "engine": "handlebars",
264
+ "deprecated": false,
265
+ "technology": "dotnet",
266
+ "applicableStacks": [
267
+ "blazor-azure",
268
+ "nextjs-supabase"
269
+ ]
270
+ },
271
+ {
272
+ "id": "dotnet-frontend-component",
273
+ "name": "Blazor Component",
274
+ "path": "code/dotnet/frontend/component.razor",
275
+ "location": "framework",
276
+ "category": "code",
277
+ "phase": "implement",
278
+ "required": false,
279
+ "description": "Blazor component template with code-behind and lifecycle hooks",
280
+ "outputName": "{FeatureName}.razor",
281
+ "placeholders": [
282
+ "FEATURE_NAME",
283
+ "NAMESPACE"
284
+ ],
285
+ "stackSpecific": false,
286
+ "engine": "handlebars",
287
+ "deprecated": false,
288
+ "technology": "dotnet",
289
+ "applicableStacks": [
290
+ "blazor-azure"
291
+ ]
292
+ },
293
+ {
294
+ "id": "dotnet-database-migration",
295
+ "name": "EF Core Migration",
296
+ "path": "code/dotnet/database/migration.cs",
297
+ "location": "framework",
298
+ "category": "code",
299
+ "phase": "implement",
300
+ "required": false,
301
+ "description": "EF Core migration template with Up/Down methods",
302
+ "outputName": "{Timestamp}_{FeatureName}.cs",
303
+ "placeholders": [
304
+ "FEATURE_NAME",
305
+ "NAMESPACE"
306
+ ],
307
+ "stackSpecific": false,
308
+ "engine": "handlebars",
309
+ "deprecated": false,
310
+ "technology": "dotnet",
311
+ "applicableStacks": [
312
+ "blazor-azure",
313
+ "nextjs-supabase"
314
+ ]
315
+ },
316
+ {
317
+ "id": "dotnet-jobs-hangfire",
318
+ "name": "Hangfire Background Job",
319
+ "path": "code/dotnet/jobs/job.cs",
320
+ "location": "framework",
321
+ "category": "code",
322
+ "phase": "implement",
323
+ "required": false,
324
+ "description": "Hangfire background job template with retry logic",
325
+ "outputName": "{FeatureName}Job.cs",
326
+ "placeholders": [
327
+ "FEATURE_NAME",
328
+ "NAMESPACE"
329
+ ],
330
+ "stackSpecific": false,
331
+ "engine": "handlebars",
332
+ "deprecated": false,
333
+ "technology": "dotnet",
334
+ "applicableStacks": [
335
+ "blazor-azure",
336
+ "nextjs-supabase"
337
+ ]
338
+ },
339
+ {
340
+ "id": "dotnet-jobs-agent",
341
+ "name": "MS Agent Framework Agent",
342
+ "path": "code/dotnet/jobs/agent.cs",
343
+ "location": "framework",
344
+ "category": "code",
345
+ "phase": "implement",
346
+ "required": false,
347
+ "description": "Microsoft Agent Framework agent template with prompt engineering",
348
+ "outputName": "{FeatureName}Agent.cs",
349
+ "placeholders": [
350
+ "FEATURE_NAME",
351
+ "NAMESPACE"
352
+ ],
353
+ "stackSpecific": false,
354
+ "engine": "handlebars",
355
+ "deprecated": false,
356
+ "technology": "dotnet",
357
+ "applicableStacks": [
358
+ "blazor-azure",
359
+ "nextjs-supabase"
360
+ ]
361
+ },
362
+ {
363
+ "id": "dotnet-contracts-commands",
364
+ "name": "CQRS Commands",
365
+ "path": "code/dotnet/contracts/Commands.cs",
366
+ "location": "framework",
367
+ "category": "code",
368
+ "phase": "design",
369
+ "required": false,
370
+ "description": "CQRS command contracts following command pattern",
371
+ "outputName": "Commands.cs",
372
+ "placeholders": [
373
+ "FEATURE_NAME",
374
+ "NAMESPACE"
375
+ ],
376
+ "stackSpecific": false,
377
+ "engine": "handlebars",
378
+ "deprecated": false,
379
+ "technology": "dotnet",
380
+ "applicableStacks": [
381
+ "blazor-azure",
382
+ "nextjs-supabase"
383
+ ]
384
+ },
385
+ {
386
+ "id": "dotnet-contracts-queries",
387
+ "name": "CQRS Queries",
388
+ "path": "code/dotnet/contracts/Queries.cs",
389
+ "location": "framework",
390
+ "category": "code",
391
+ "phase": "design",
392
+ "required": false,
393
+ "description": "CQRS query contracts following query pattern",
394
+ "outputName": "Queries.cs",
395
+ "placeholders": [
396
+ "FEATURE_NAME",
397
+ "NAMESPACE"
398
+ ],
399
+ "stackSpecific": false,
400
+ "engine": "handlebars",
401
+ "deprecated": false,
402
+ "technology": "dotnet",
403
+ "applicableStacks": [
404
+ "blazor-azure",
405
+ "nextjs-supabase"
406
+ ]
407
+ },
408
+ {
409
+ "id": "dotnet-contracts-entities",
410
+ "name": "Domain Entities",
411
+ "path": "code/dotnet/contracts/Entities.cs",
412
+ "location": "framework",
413
+ "category": "code",
414
+ "phase": "design",
415
+ "required": false,
416
+ "description": "Domain entity definitions with navigation properties",
417
+ "outputName": "Entities.cs",
418
+ "placeholders": [
419
+ "FEATURE_NAME",
420
+ "NAMESPACE"
421
+ ],
422
+ "stackSpecific": false,
423
+ "engine": "handlebars",
424
+ "deprecated": false,
425
+ "technology": "dotnet",
426
+ "applicableStacks": [
427
+ "blazor-azure",
428
+ "nextjs-supabase"
429
+ ]
430
+ },
431
+ {
432
+ "id": "dotnet-contracts-api",
433
+ "name": "API Contracts",
434
+ "path": "code/dotnet/contracts/api-contracts.cs",
435
+ "location": "framework",
436
+ "category": "code",
437
+ "phase": "design",
438
+ "required": false,
439
+ "description": "REST API request/response contracts",
440
+ "outputName": "ApiContracts.cs",
441
+ "placeholders": [
442
+ "FEATURE_NAME",
443
+ "NAMESPACE"
444
+ ],
445
+ "stackSpecific": false,
446
+ "engine": "handlebars",
447
+ "deprecated": false,
448
+ "technology": "dotnet",
449
+ "applicableStacks": [
450
+ "blazor-azure",
451
+ "nextjs-supabase"
452
+ ]
453
+ },
454
+ {
455
+ "id": "dotnet-contracts-readme",
456
+ "name": "Contracts README",
457
+ "path": "code/dotnet/contracts/README.md",
458
+ "location": "framework",
459
+ "category": "documentation",
460
+ "phase": "design",
461
+ "required": false,
462
+ "description": "Documentation for contract patterns and usage",
463
+ "outputName": "README.md",
464
+ "placeholders": [
465
+ "FEATURE_NAME"
466
+ ],
467
+ "stackSpecific": false,
468
+ "engine": "handlebars",
469
+ "deprecated": false,
470
+ "technology": "dotnet",
471
+ "applicableStacks": [
472
+ "blazor-azure",
473
+ "nextjs-supabase"
474
+ ]
475
+ },
476
+ {
477
+ "id": "dotnet-contracts-vsa",
478
+ "name": "Vertical Slice Architecture Contracts",
479
+ "path": "code/dotnet/contracts/contracts-vsa.cs",
480
+ "location": "framework",
481
+ "category": "code",
482
+ "phase": "design",
483
+ "required": false,
484
+ "description": "Feature slice completo: Abstractions, Entity, Errors, e um slice de operação (Request, Response, Validator, Handler, Endpoint). Padrão KanaiyaKatarmal (.NET 10, Minimal APIs, EF Core 10, FluentValidation 12, Scrutor 7).",
485
+ "outputName": "contracts.cs",
486
+ "placeholders": [
487
+ "FEATURE_NAME",
488
+ "NAMESPACE",
489
+ "ROUTE",
490
+ "DATE"
491
+ ],
492
+ "stackSpecific": false,
493
+ "engine": "handlebars",
494
+ "deprecated": false,
495
+ "technology": "dotnet"
496
+ },
497
+ {
498
+ "id": "typescript-contracts",
499
+ "name": "TypeScript Contracts",
500
+ "path": "code/typescript/contracts.ts",
501
+ "location": "framework",
502
+ "category": "code",
503
+ "phase": "design",
504
+ "required": false,
505
+ "description": "TypeScript type definitions and interfaces",
506
+ "outputName": "contracts.ts",
507
+ "placeholders": [
508
+ "FEATURE_NAME"
509
+ ],
510
+ "stackSpecific": false,
511
+ "engine": "handlebars",
512
+ "deprecated": false,
513
+ "technology": "typescript",
514
+ "applicableStacks": [
515
+ "nextjs-supabase"
516
+ ]
517
+ },
518
+ {
519
+ "id": "sql-supabase-migration",
520
+ "name": "Supabase Migration",
521
+ "path": "code/sql/supabase-migration.sql",
522
+ "location": "framework",
523
+ "category": "code",
524
+ "phase": "implement",
525
+ "required": false,
526
+ "description": "Supabase SQL migration template (basic)",
527
+ "outputName": "{timestamp}_{feature_name}.sql",
528
+ "placeholders": [
529
+ "FEATURE_NAME"
530
+ ],
531
+ "stackSpecific": false,
532
+ "engine": "handlebars",
533
+ "deprecated": false,
534
+ "technology": "sql",
535
+ "applicableStacks": [
536
+ "nextjs-supabase"
537
+ ]
538
+ },
539
+ {
540
+ "id": "sql-supabase-migration-enhanced",
541
+ "name": "Supabase Migration (Enhanced)",
542
+ "path": "code/sql/supabase-migration.template.sql",
543
+ "location": "framework",
544
+ "category": "code",
545
+ "phase": "implement",
546
+ "required": false,
547
+ "description": "Enhanced Supabase migration with RLS and indexes",
548
+ "outputName": "{timestamp}_{feature_name}.sql",
549
+ "placeholders": [
550
+ "FEATURE_NAME"
551
+ ],
552
+ "stackSpecific": false,
553
+ "engine": "handlebars",
554
+ "deprecated": false,
555
+ "technology": "sql",
556
+ "applicableStacks": [
557
+ "nextjs-supabase"
558
+ ]
559
+ },
560
+ {
561
+ "id": "sql-rls-policy",
562
+ "name": "Row-Level Security Policy",
563
+ "path": "code/sql/rls-policy.sql",
564
+ "location": "framework",
565
+ "category": "code",
566
+ "phase": "implement",
567
+ "required": false,
568
+ "description": "Row-level security policy template for Supabase",
569
+ "outputName": "{table_name}_rls_policies.sql",
570
+ "placeholders": [
571
+ "FEATURE_NAME",
572
+ "TABLE_NAME"
573
+ ],
574
+ "stackSpecific": false,
575
+ "engine": "handlebars",
576
+ "deprecated": false,
577
+ "technology": "sql",
578
+ "applicableStacks": [
579
+ "nextjs-supabase"
580
+ ]
581
+ },
582
+ {
583
+ "id": "azure-bicep-main",
584
+ "name": "Main Bicep Orchestration",
585
+ "path": "infrastructure/azure/main.bicep",
586
+ "location": "framework",
587
+ "category": "infrastructure",
588
+ "phase": "implement",
589
+ "required": true,
590
+ "description": "Main Bicep orchestration file for Azure resources",
591
+ "outputName": "main.bicep",
592
+ "placeholders": [
593
+ "PROJECT_NAME",
594
+ "ENVIRONMENT"
595
+ ],
596
+ "stackSpecific": false,
597
+ "engine": "handlebars",
598
+ "deprecated": false,
599
+ "technology": "bicep",
600
+ "applicableStacks": [
601
+ "blazor-azure"
602
+ ]
603
+ },
604
+ {
605
+ "id": "azure-bicep-container-app",
606
+ "name": "Azure Container App",
607
+ "path": "infrastructure/azure/container-app.bicep",
608
+ "location": "framework",
609
+ "category": "infrastructure",
610
+ "phase": "implement",
611
+ "required": false,
612
+ "description": "Azure Container App definition with scaling and secrets",
613
+ "outputName": "container-app.bicep",
614
+ "placeholders": [
615
+ "PROJECT_NAME"
616
+ ],
617
+ "stackSpecific": false,
618
+ "engine": "handlebars",
619
+ "deprecated": false,
620
+ "technology": "bicep",
621
+ "applicableStacks": [
622
+ "blazor-azure"
623
+ ]
624
+ },
625
+ {
626
+ "id": "azure-bicep-container-env",
627
+ "name": "Container Apps Environment",
628
+ "path": "infrastructure/azure/container-app-env.bicep",
629
+ "location": "framework",
630
+ "category": "infrastructure",
631
+ "phase": "implement",
632
+ "required": false,
633
+ "description": "Azure Container Apps environment with Log Analytics",
634
+ "outputName": "container-app-env.bicep",
635
+ "placeholders": [
636
+ "PROJECT_NAME"
637
+ ],
638
+ "stackSpecific": false,
639
+ "engine": "handlebars",
640
+ "deprecated": false,
641
+ "technology": "bicep",
642
+ "applicableStacks": [
643
+ "blazor-azure"
644
+ ]
645
+ },
646
+ {
647
+ "id": "azure-bicep-app-service",
648
+ "name": "Azure App Service",
649
+ "path": "infrastructure/azure/app-service.bicep",
650
+ "location": "framework",
651
+ "category": "infrastructure",
652
+ "phase": "implement",
653
+ "required": false,
654
+ "description": "Azure App Service definition (alternative to Container Apps)",
655
+ "outputName": "app-service.bicep",
656
+ "placeholders": [
657
+ "PROJECT_NAME"
658
+ ],
659
+ "stackSpecific": false,
660
+ "engine": "handlebars",
661
+ "deprecated": false,
662
+ "technology": "bicep",
663
+ "applicableStacks": [
664
+ "blazor-azure"
665
+ ]
666
+ },
667
+ {
668
+ "id": "azure-bicep-sql",
669
+ "name": "Azure SQL Database",
670
+ "path": "infrastructure/azure/sql-database.bicep",
671
+ "location": "framework",
672
+ "category": "infrastructure",
673
+ "phase": "implement",
674
+ "required": false,
675
+ "description": "Azure SQL Database with server and firewall rules",
676
+ "outputName": "sql-database.bicep",
677
+ "placeholders": [
678
+ "PROJECT_NAME"
679
+ ],
680
+ "stackSpecific": false,
681
+ "engine": "handlebars",
682
+ "deprecated": false,
683
+ "technology": "bicep",
684
+ "applicableStacks": [
685
+ "blazor-azure"
686
+ ]
687
+ },
688
+ {
689
+ "id": "azure-bicep-storage",
690
+ "name": "Azure Storage Account",
691
+ "path": "infrastructure/azure/storage.bicep",
692
+ "location": "framework",
693
+ "category": "infrastructure",
694
+ "phase": "implement",
695
+ "required": false,
696
+ "description": "Azure Storage Account with blob containers",
697
+ "outputName": "storage.bicep",
698
+ "placeholders": [
699
+ "PROJECT_NAME"
700
+ ],
701
+ "stackSpecific": false,
702
+ "engine": "handlebars",
703
+ "deprecated": false,
704
+ "technology": "bicep",
705
+ "applicableStacks": [
706
+ "blazor-azure"
707
+ ]
708
+ },
709
+ {
710
+ "id": "azure-bicep-key-vault",
711
+ "name": "Azure Key Vault",
712
+ "path": "infrastructure/azure/key-vault.bicep",
713
+ "location": "framework",
714
+ "category": "infrastructure",
715
+ "phase": "implement",
716
+ "required": false,
717
+ "description": "Azure Key Vault for secrets management",
718
+ "outputName": "key-vault.bicep",
719
+ "placeholders": [
720
+ "PROJECT_NAME"
721
+ ],
722
+ "stackSpecific": false,
723
+ "engine": "handlebars",
724
+ "deprecated": false,
725
+ "technology": "bicep",
726
+ "applicableStacks": [
727
+ "blazor-azure"
728
+ ]
729
+ },
730
+ {
731
+ "id": "azure-bicep-app-insights",
732
+ "name": "Application Insights",
733
+ "path": "infrastructure/azure/app-insights.bicep",
734
+ "location": "framework",
735
+ "category": "infrastructure",
736
+ "phase": "implement",
737
+ "required": false,
738
+ "description": "Application Insights for monitoring and telemetry",
739
+ "outputName": "app-insights.bicep",
740
+ "placeholders": [
741
+ "PROJECT_NAME"
742
+ ],
743
+ "stackSpecific": false,
744
+ "engine": "handlebars",
745
+ "deprecated": false,
746
+ "technology": "bicep",
747
+ "applicableStacks": [
748
+ "blazor-azure"
749
+ ]
750
+ },
751
+ {
752
+ "id": "azure-parameters-dev",
753
+ "name": "Parameters (Development)",
754
+ "path": "infrastructure/azure/parameters.dev.json",
755
+ "location": "framework",
756
+ "category": "infrastructure",
757
+ "phase": "implement",
758
+ "required": false,
759
+ "description": "Bicep parameters for development environment",
760
+ "outputName": "parameters.dev.json",
761
+ "placeholders": [],
762
+ "stackSpecific": false,
763
+ "engine": null,
764
+ "deprecated": false,
765
+ "technology": "azure",
766
+ "applicableStacks": [
767
+ "blazor-azure"
768
+ ]
769
+ },
770
+ {
771
+ "id": "azure-parameters-staging",
772
+ "name": "Parameters (Staging)",
773
+ "path": "infrastructure/azure/parameters.staging.json",
774
+ "location": "framework",
775
+ "category": "infrastructure",
776
+ "phase": "implement",
777
+ "required": false,
778
+ "description": "Bicep parameters for staging environment",
779
+ "outputName": "parameters.staging.json",
780
+ "placeholders": [],
781
+ "stackSpecific": false,
782
+ "engine": null,
783
+ "deprecated": false,
784
+ "technology": "azure",
785
+ "applicableStacks": [
786
+ "blazor-azure"
787
+ ]
788
+ },
789
+ {
790
+ "id": "azure-parameters-prod",
791
+ "name": "Parameters (Production)",
792
+ "path": "infrastructure/azure/parameters.prod.json",
793
+ "location": "framework",
794
+ "category": "infrastructure",
795
+ "phase": "implement",
796
+ "required": false,
797
+ "description": "Bicep parameters for production environment",
798
+ "outputName": "parameters.prod.json",
799
+ "placeholders": [],
800
+ "stackSpecific": false,
801
+ "engine": null,
802
+ "deprecated": false,
803
+ "technology": "azure",
804
+ "applicableStacks": [
805
+ "blazor-azure"
806
+ ]
807
+ },
808
+ {
809
+ "id": "azure-deploy-ps1",
810
+ "name": "Deploy Script (PowerShell)",
811
+ "path": "infrastructure/azure/deploy.ps1",
812
+ "location": "framework",
813
+ "category": "infrastructure",
814
+ "phase": "implement",
815
+ "required": false,
816
+ "description": "PowerShell deployment script for Azure",
817
+ "outputName": "deploy.ps1",
818
+ "placeholders": [],
819
+ "stackSpecific": false,
820
+ "engine": null,
821
+ "deprecated": false,
822
+ "technology": "azure",
823
+ "applicableStacks": [
824
+ "blazor-azure"
825
+ ]
826
+ },
827
+ {
828
+ "id": "azure-deploy-sh",
829
+ "name": "Deploy Script (Bash)",
830
+ "path": "infrastructure/azure/deploy.sh",
831
+ "location": "framework",
832
+ "category": "infrastructure",
833
+ "phase": "implement",
834
+ "required": false,
835
+ "description": "Bash deployment script for Azure",
836
+ "outputName": "deploy.sh",
837
+ "placeholders": [],
838
+ "stackSpecific": false,
839
+ "engine": null,
840
+ "deprecated": false,
841
+ "technology": "azure",
842
+ "applicableStacks": [
843
+ "blazor-azure"
844
+ ]
845
+ },
846
+ {
847
+ "id": "azure-deploy-checklist",
848
+ "name": "Deployment Checklist",
849
+ "path": "infrastructure/azure/deploy-checklist.md",
850
+ "location": "framework",
851
+ "category": "infrastructure",
852
+ "phase": "implement",
853
+ "required": false,
854
+ "description": "Pre-deployment verification checklist",
855
+ "outputName": "deploy-checklist.md",
856
+ "placeholders": [],
857
+ "stackSpecific": false,
858
+ "engine": "handlebars",
859
+ "deprecated": false,
860
+ "technology": "azure",
861
+ "applicableStacks": [
862
+ "blazor-azure"
863
+ ]
864
+ },
865
+ {
866
+ "id": "azure-dockerfile",
867
+ "name": "Dockerfile (Azure)",
868
+ "path": "infrastructure/azure/Dockerfile.example",
869
+ "location": "framework",
870
+ "category": "infrastructure",
871
+ "phase": "implement",
872
+ "required": false,
873
+ "description": "Example Dockerfile for Azure Container Apps",
874
+ "outputName": "Dockerfile",
875
+ "placeholders": [],
876
+ "stackSpecific": false,
877
+ "engine": null,
878
+ "deprecated": false,
879
+ "technology": "docker",
880
+ "applicableStacks": [
881
+ "blazor-azure"
882
+ ]
883
+ },
884
+ {
885
+ "id": "azure-readme",
886
+ "name": "Infrastructure README",
887
+ "path": "infrastructure/azure/README.md",
888
+ "location": "framework",
889
+ "category": "infrastructure",
890
+ "phase": "implement",
891
+ "required": false,
892
+ "description": "Documentation for Azure infrastructure",
893
+ "outputName": "README.md",
894
+ "placeholders": [],
895
+ "stackSpecific": false,
896
+ "engine": "handlebars",
897
+ "deprecated": false,
898
+ "technology": "azure",
899
+ "applicableStacks": [
900
+ "blazor-azure"
901
+ ]
902
+ },
903
+ {
904
+ "id": "docker-dockerfile-api",
905
+ "name": "Dockerfile (.NET API)",
906
+ "path": "infrastructure/docker/dockerfile-api.dockerfile",
907
+ "location": "framework",
908
+ "category": "infrastructure",
909
+ "phase": "implement",
910
+ "required": false,
911
+ "description": ".NET API Dockerfile for EasyPanel/Docker",
912
+ "outputName": "Dockerfile.api",
913
+ "placeholders": [],
914
+ "stackSpecific": false,
915
+ "engine": null,
916
+ "deprecated": false,
917
+ "technology": "docker",
918
+ "applicableStacks": [
919
+ "nextjs-supabase"
920
+ ]
921
+ },
922
+ {
923
+ "id": "docker-dockerfile-web",
924
+ "name": "Dockerfile (Next.js Web)",
925
+ "path": "infrastructure/docker/dockerfile-web.dockerfile",
926
+ "location": "framework",
927
+ "category": "infrastructure",
928
+ "phase": "implement",
929
+ "required": false,
930
+ "description": "Next.js web Dockerfile for EasyPanel/Docker",
931
+ "outputName": "Dockerfile.web",
932
+ "placeholders": [],
933
+ "stackSpecific": false,
934
+ "engine": null,
935
+ "deprecated": false,
936
+ "technology": "docker",
937
+ "applicableStacks": [
938
+ "nextjs-supabase"
939
+ ]
940
+ },
941
+ {
942
+ "id": "docker-dockerfile-generic",
943
+ "name": "Dockerfile (Generic)",
944
+ "path": "infrastructure/docker/Dockerfile.template",
945
+ "location": "framework",
946
+ "category": "infrastructure",
947
+ "phase": "implement",
948
+ "required": false,
949
+ "description": "Generic multi-stage Dockerfile template",
950
+ "outputName": "Dockerfile",
951
+ "placeholders": [
952
+ "PROJECT_NAME"
953
+ ],
954
+ "stackSpecific": false,
955
+ "engine": "handlebars",
956
+ "deprecated": false,
957
+ "technology": "docker",
958
+ "applicableStacks": [
959
+ "nextjs-supabase"
960
+ ]
961
+ },
962
+ {
963
+ "id": "docker-compose",
964
+ "name": "Docker Compose",
965
+ "path": "infrastructure/docker/docker-compose.template.yml",
966
+ "location": "framework",
967
+ "category": "infrastructure",
968
+ "phase": "implement",
969
+ "required": false,
970
+ "description": "Docker Compose for local development environment",
971
+ "outputName": "docker-compose.yml",
972
+ "placeholders": [
973
+ "PROJECT_NAME"
974
+ ],
975
+ "stackSpecific": false,
976
+ "engine": "handlebars",
977
+ "deprecated": false,
978
+ "technology": "docker",
979
+ "applicableStacks": [
980
+ "nextjs-supabase"
981
+ ]
982
+ },
983
+ {
984
+ "id": "easypanel-config",
985
+ "name": "EasyPanel Configuration",
986
+ "path": "infrastructure/docker/easypanel.template.json",
987
+ "location": "framework",
988
+ "category": "infrastructure",
989
+ "phase": "implement",
990
+ "required": false,
991
+ "description": "EasyPanel deployment configuration",
992
+ "outputName": "easypanel.json",
993
+ "placeholders": [
994
+ "PROJECT_NAME"
995
+ ],
996
+ "stackSpecific": false,
997
+ "engine": "handlebars",
998
+ "deprecated": false,
999
+ "technology": "docker",
1000
+ "applicableStacks": [
1001
+ "nextjs-supabase"
1002
+ ]
1003
+ },
1004
+ {
1005
+ "id": "integration-asaas-client",
1006
+ "name": "Asaas Financial Client",
1007
+ "path": "integrations/asaas-client.cs",
1008
+ "location": "framework",
1009
+ "category": "integration",
1010
+ "phase": "implement",
1011
+ "required": false,
1012
+ "description": "Asaas financial API client implementation",
1013
+ "outputName": "AsaasClient.cs",
1014
+ "placeholders": [
1015
+ "NAMESPACE"
1016
+ ],
1017
+ "stackSpecific": false,
1018
+ "engine": "handlebars",
1019
+ "deprecated": false,
1020
+ "technology": "dotnet",
1021
+ "applicableStacks": [
1022
+ "blazor-azure",
1023
+ "nextjs-supabase"
1024
+ ]
1025
+ },
1026
+ {
1027
+ "id": "integration-asaas-webhook",
1028
+ "name": "Asaas Webhook Handler",
1029
+ "path": "integrations/asaas-webhook.cs",
1030
+ "location": "framework",
1031
+ "category": "integration",
1032
+ "phase": "implement",
1033
+ "required": false,
1034
+ "description": "Asaas webhook handler for payment events",
1035
+ "outputName": "AsaasWebhookHandler.cs",
1036
+ "placeholders": [
1037
+ "NAMESPACE"
1038
+ ],
1039
+ "stackSpecific": false,
1040
+ "engine": "handlebars",
1041
+ "deprecated": false,
1042
+ "technology": "dotnet",
1043
+ "applicableStacks": [
1044
+ "blazor-azure",
1045
+ "nextjs-supabase"
1046
+ ]
1047
+ },
1048
+ {
1049
+ "id": "integration-azure-identity",
1050
+ "name": "Azure Identity Configuration",
1051
+ "path": "integrations/azure-identity-config.cs",
1052
+ "location": "framework",
1053
+ "category": "integration",
1054
+ "phase": "implement",
1055
+ "required": false,
1056
+ "description": "Azure AD/Entra ID authentication configuration",
1057
+ "outputName": "AzureIdentityConfig.cs",
1058
+ "placeholders": [
1059
+ "NAMESPACE"
1060
+ ],
1061
+ "stackSpecific": false,
1062
+ "engine": "handlebars",
1063
+ "deprecated": false,
1064
+ "technology": "dotnet",
1065
+ "applicableStacks": [
1066
+ "blazor-azure"
1067
+ ]
1068
+ },
1069
+ {
1070
+ "id": "integration-clerk",
1071
+ "name": "Clerk Authentication",
1072
+ "path": "integrations/clerk-config.cs",
1073
+ "location": "framework",
1074
+ "category": "integration",
1075
+ "phase": "implement",
1076
+ "required": false,
1077
+ "description": "Clerk authentication configuration",
1078
+ "outputName": "ClerkConfig.cs",
1079
+ "placeholders": [
1080
+ "NAMESPACE"
1081
+ ],
1082
+ "stackSpecific": false,
1083
+ "engine": "handlebars",
1084
+ "deprecated": false,
1085
+ "technology": "dotnet",
1086
+ "applicableStacks": [
1087
+ "blazor-azure",
1088
+ "nextjs-supabase"
1089
+ ]
1090
+ },
1091
+ {
1092
+ "id": "ui-design-system-css",
1093
+ "name": "Design System CSS",
1094
+ "path": "ui/design-system.css",
1095
+ "location": "framework",
1096
+ "category": "ui",
1097
+ "phase": "uiux",
1098
+ "required": false,
1099
+ "description": "CSS design tokens and variables (colors, spacing, typography)",
1100
+ "outputName": "design-system.css",
1101
+ "placeholders": [
1102
+ "PROJECT_NAME"
1103
+ ],
1104
+ "stackSpecific": false,
1105
+ "engine": "handlebars",
1106
+ "deprecated": false,
1107
+ "technology": "css",
1108
+ "applicableStacks": [
1109
+ "blazor-azure",
1110
+ "nextjs-supabase"
1111
+ ]
1112
+ },
1113
+ {
1114
+ "id": "ui-fluent-theme",
1115
+ "name": "Fluent Design Theme",
1116
+ "path": "ui/FluentDesignTheme.cs",
1117
+ "location": "framework",
1118
+ "category": "ui",
1119
+ "phase": "uiux",
1120
+ "required": false,
1121
+ "description": "FluentUI Blazor theme configuration (auto-generated)",
1122
+ "outputName": "FluentDesignTheme.cs",
1123
+ "placeholders": [
1124
+ "NAMESPACE"
1125
+ ],
1126
+ "stackSpecific": false,
1127
+ "engine": "handlebars",
1128
+ "deprecated": false,
1129
+ "autoGenerated": true,
1130
+ "technology": "dotnet",
1131
+ "applicableStacks": [
1132
+ "blazor-azure"
1133
+ ]
1134
+ },
1135
+ {
1136
+ "id": "ui-mud-theme",
1137
+ "name": "MudBlazor Theme",
1138
+ "path": "ui/MudTheme.cs",
1139
+ "location": "framework",
1140
+ "category": "ui",
1141
+ "phase": "uiux",
1142
+ "required": false,
1143
+ "description": "MudBlazor theme configuration (auto-generated)",
1144
+ "outputName": "MudTheme.cs",
1145
+ "placeholders": [
1146
+ "NAMESPACE"
1147
+ ],
1148
+ "stackSpecific": false,
1149
+ "engine": "handlebars",
1150
+ "deprecated": false,
1151
+ "autoGenerated": true,
1152
+ "technology": "dotnet",
1153
+ "applicableStacks": [
1154
+ "blazor-azure"
1155
+ ]
1156
+ },
1157
+ {
1158
+ "id": "saas-subscription",
1159
+ "name": "Subscription Model",
1160
+ "path": "saas/subscription.cs",
1161
+ "location": "framework",
1162
+ "category": "saas",
1163
+ "phase": "implement",
1164
+ "required": false,
1165
+ "description": "Multi-tenant subscription model with billing",
1166
+ "outputName": "Subscription.cs",
1167
+ "placeholders": [
1168
+ "NAMESPACE"
1169
+ ],
1170
+ "stackSpecific": false,
1171
+ "engine": "handlebars",
1172
+ "deprecated": false,
1173
+ "technology": "dotnet",
1174
+ "applicableStacks": [
1175
+ "blazor-azure",
1176
+ "nextjs-supabase"
1177
+ ]
1178
+ },
1179
+ {
1180
+ "id": "saas-tenant",
1181
+ "name": "Tenant Model",
1182
+ "path": "saas/tenant.cs",
1183
+ "location": "framework",
1184
+ "category": "saas",
1185
+ "phase": "implement",
1186
+ "required": false,
1187
+ "description": "Multi-tenant tenant model with isolation",
1188
+ "outputName": "Tenant.cs",
1189
+ "placeholders": [
1190
+ "NAMESPACE"
1191
+ ],
1192
+ "stackSpecific": false,
1193
+ "engine": "handlebars",
1194
+ "deprecated": false,
1195
+ "technology": "dotnet",
1196
+ "applicableStacks": [
1197
+ "blazor-azure",
1198
+ "nextjs-supabase"
1199
+ ]
1200
+ },
1201
+ {
1202
+ "id": "ui-mockups",
1203
+ "name": "UI Mockups",
1204
+ "path": "docs/ui-mockups.md",
1205
+ "location": "framework",
1206
+ "category": "documentation",
1207
+ "phase": "uiux",
1208
+ "required": false,
1209
+ "description": "Wireframes and layout specifications with ASCII mockups and responsive breakpoints",
1210
+ "outputName": "ui-mockups.md",
1211
+ "placeholders": [
1212
+ "FEATURE_NAME",
1213
+ "DATE"
1214
+ ],
1215
+ "stackSpecific": false,
1216
+ "engine": "handlebars",
1217
+ "deprecated": false,
1218
+ "technology": "handlebars"
1219
+ },
1220
+ {
1221
+ "id": "ui-flows",
1222
+ "name": "UI Flows",
1223
+ "path": "docs/ui-flows.md",
1224
+ "location": "framework",
1225
+ "category": "documentation",
1226
+ "phase": "uiux",
1227
+ "required": false,
1228
+ "description": "User flows and interaction patterns with state diagrams and edge cases",
1229
+ "outputName": "ui-flows.md",
1230
+ "placeholders": [
1231
+ "FEATURE_NAME",
1232
+ "DATE"
1233
+ ],
1234
+ "stackSpecific": false,
1235
+ "engine": "handlebars",
1236
+ "deprecated": false,
1237
+ "technology": "handlebars"
1238
+ },
1239
+ {
1240
+ "id": "ui-components",
1241
+ "name": "UI Components",
1242
+ "path": "docs/ui-components.md",
1243
+ "location": "framework",
1244
+ "category": "documentation",
1245
+ "phase": "uiux",
1246
+ "required": false,
1247
+ "description": "Component specifications mapping UI elements to FluentUI/MudBlazor components with props and events",
1248
+ "outputName": "ui-components.md",
1249
+ "placeholders": [
1250
+ "FEATURE_NAME",
1251
+ "DATE",
1252
+ "STACK"
1253
+ ],
1254
+ "stackSpecific": false,
1255
+ "engine": "handlebars",
1256
+ "deprecated": false,
1257
+ "technology": "handlebars"
1258
+ },
1259
+ {
1260
+ "id": "ui-design-system",
1261
+ "name": "UI Design System",
1262
+ "path": "docs/ui-design-system.md",
1263
+ "location": "framework",
1264
+ "category": "documentation",
1265
+ "phase": "uiux",
1266
+ "required": false,
1267
+ "description": "Design system documentation with color palette, typography, spacing, and semantic tokens",
1268
+ "outputName": "ui-design-system.md",
1269
+ "placeholders": [
1270
+ "FEATURE_NAME",
1271
+ "DATE",
1272
+ "PROJECT_NAME"
1273
+ ],
1274
+ "stackSpecific": false,
1275
+ "engine": "handlebars",
1276
+ "deprecated": false,
1277
+ "technology": "handlebars"
1278
+ },
1279
+ {
1280
+ "id": "github-workflow-dotnet-build",
1281
+ "name": "GitHub Actions - .NET Build Workflow",
1282
+ "path": "infrastructure/github/workflows/dotnet-build.yml.hbs",
1283
+ "location": "framework",
1284
+ "category": "infrastructure",
1285
+ "technology": "github-actions",
1286
+ "phase": "build",
1287
+ "required": false,
1288
+ "description": "Reusable workflow for building .NET applications with restore, build, test, coverage",
1289
+ "outputName": "dotnet-build.yml",
1290
+ "placeholders": [
1291
+ "DOTNET_VERSION"
1292
+ ],
1293
+ "stackSpecific": false,
1294
+ "applicableStacks": [
1295
+ "blazor-azure",
1296
+ "nextjs-supabase"
1297
+ ],
1298
+ "engine": "handlebars",
1299
+ "deprecated": false,
1300
+ "isFragment": true
1301
+ },
1302
+ {
1303
+ "id": "github-workflow-docker-build-push",
1304
+ "name": "GitHub Actions - Docker Build & Push",
1305
+ "path": "infrastructure/github/workflows/docker-build-push.yml.hbs",
1306
+ "location": "framework",
1307
+ "category": "infrastructure",
1308
+ "technology": "github-actions",
1309
+ "phase": "build",
1310
+ "required": false,
1311
+ "description": "Reusable workflow for building and pushing Docker images to registry",
1312
+ "outputName": "docker-build-push.yml",
1313
+ "placeholders": [],
1314
+ "stackSpecific": false,
1315
+ "applicableStacks": [
1316
+ "blazor-azure",
1317
+ "nextjs-supabase"
1318
+ ],
1319
+ "engine": "handlebars",
1320
+ "deprecated": false,
1321
+ "isFragment": true
1322
+ },
1323
+ {
1324
+ "id": "github-workflow-deploy-azure-app-service",
1325
+ "name": "GitHub Actions - Deploy to Azure App Service",
1326
+ "path": "infrastructure/github/workflows/deploy-azure-app-service.yml.hbs",
1327
+ "location": "framework",
1328
+ "category": "infrastructure",
1329
+ "technology": "github-actions",
1330
+ "phase": "deploy",
1331
+ "required": false,
1332
+ "description": "Reusable workflow for deploying .NET applications to Azure App Service with Bicep infrastructure",
1333
+ "outputName": "deploy-azure-app-service.yml",
1334
+ "placeholders": [
1335
+ "DOTNET_VERSION"
1336
+ ],
1337
+ "stackSpecific": false,
1338
+ "applicableStacks": [
1339
+ "blazor-azure"
1340
+ ],
1341
+ "engine": "handlebars",
1342
+ "deprecated": false,
1343
+ "isFragment": true
1344
+ },
1345
+ {
1346
+ "id": "github-workflow-deploy-easypanel",
1347
+ "name": "GitHub Actions - Deploy to EasyPanel",
1348
+ "path": "infrastructure/github/workflows/deploy-easypanel.yml.hbs",
1349
+ "location": "framework",
1350
+ "category": "infrastructure",
1351
+ "technology": "github-actions",
1352
+ "phase": "deploy",
1353
+ "required": false,
1354
+ "description": "Reusable workflow for deploying to EasyPanel via webhook",
1355
+ "outputName": "deploy-easypanel.yml",
1356
+ "placeholders": [],
1357
+ "stackSpecific": false,
1358
+ "applicableStacks": [
1359
+ "nextjs-supabase"
1360
+ ],
1361
+ "engine": "handlebars",
1362
+ "deprecated": false,
1363
+ "isFragment": true
1364
+ },
1365
+ {
1366
+ "id": "github-action-docker-build-push",
1367
+ "name": "GitHub Composite Action - Docker Build & Push",
1368
+ "path": "infrastructure/github/actions/docker-build-push/action.yml.hbs",
1369
+ "location": "framework",
1370
+ "category": "infrastructure",
1371
+ "technology": "github-actions",
1372
+ "phase": "build",
1373
+ "required": false,
1374
+ "description": "Composite action for building and pushing Docker images",
1375
+ "outputName": "action.yml",
1376
+ "placeholders": [],
1377
+ "stackSpecific": false,
1378
+ "applicableStacks": [
1379
+ "blazor-azure",
1380
+ "nextjs-supabase"
1381
+ ],
1382
+ "engine": "handlebars",
1383
+ "deprecated": false,
1384
+ "isFragment": true
1385
+ },
1386
+ {
1387
+ "id": "github-action-health-check",
1388
+ "name": "GitHub Composite Action - Health Check",
1389
+ "path": "infrastructure/github/actions/health-check/action.yml.hbs",
1390
+ "location": "framework",
1391
+ "category": "infrastructure",
1392
+ "technology": "github-actions",
1393
+ "phase": "deploy",
1394
+ "required": false,
1395
+ "description": "Composite action for polling health endpoint until ready",
1396
+ "outputName": "action.yml",
1397
+ "placeholders": [],
1398
+ "stackSpecific": false,
1399
+ "applicableStacks": [
1400
+ "blazor-azure",
1401
+ "nextjs-supabase"
1402
+ ],
1403
+ "engine": "handlebars",
1404
+ "deprecated": false,
1405
+ "isFragment": true
1406
+ },
1407
+ {
1408
+ "id": "github-action-azure-auth",
1409
+ "name": "GitHub Composite Action - Azure OIDC Auth",
1410
+ "path": "infrastructure/github/actions/azure-auth/action.yml.hbs",
1411
+ "location": "framework",
1412
+ "category": "infrastructure",
1413
+ "technology": "github-actions",
1414
+ "phase": "deploy",
1415
+ "required": false,
1416
+ "description": "Composite action for Azure authentication using OIDC",
1417
+ "outputName": "action.yml",
1418
+ "placeholders": [],
1419
+ "stackSpecific": false,
1420
+ "applicableStacks": [
1421
+ "blazor-azure"
1422
+ ],
1423
+ "engine": "handlebars",
1424
+ "deprecated": false,
1425
+ "isFragment": true
1426
+ },
1427
+ {
1428
+ "id": "blazor-azure-ci-build",
1429
+ "name": "Blazor-Azure CI Build Workflow",
1430
+ "path": "infrastructure/github/workflows/ci-build.yml.hbs",
1431
+ "location": "stack/blazor-azure",
1432
+ "category": "infrastructure",
1433
+ "technology": "github-actions",
1434
+ "phase": "build",
1435
+ "required": true,
1436
+ "description": "CI build workflow for Blazor-Azure stack with security checks",
1437
+ "outputName": "ci-build.yml",
1438
+ "placeholders": [
1439
+ "DOTNET_VERSION"
1440
+ ],
1441
+ "stackSpecific": true,
1442
+ "applicableStacks": [
1443
+ "blazor-azure"
1444
+ ],
1445
+ "engine": "handlebars",
1446
+ "deprecated": false
1447
+ },
1448
+ {
1449
+ "id": "blazor-azure-cd-staging",
1450
+ "name": "Blazor-Azure Staging Deployment",
1451
+ "path": "infrastructure/github/workflows/cd-staging.yml.hbs",
1452
+ "location": "stack/blazor-azure",
1453
+ "category": "infrastructure",
1454
+ "technology": "github-actions",
1455
+ "phase": "deploy",
1456
+ "required": true,
1457
+ "description": "Staging deployment workflow for Azure App Service",
1458
+ "outputName": "cd-staging.yml",
1459
+ "placeholders": [
1460
+ "APP_NAME",
1461
+ "DOTNET_VERSION"
1462
+ ],
1463
+ "stackSpecific": true,
1464
+ "applicableStacks": [
1465
+ "blazor-azure"
1466
+ ],
1467
+ "engine": "handlebars",
1468
+ "deprecated": false
1469
+ },
1470
+ {
1471
+ "id": "blazor-azure-cd-prod",
1472
+ "name": "Blazor-Azure Production Deployment",
1473
+ "path": "infrastructure/github/workflows/cd-prod.yml.hbs",
1474
+ "location": "stack/blazor-azure",
1475
+ "category": "infrastructure",
1476
+ "technology": "github-actions",
1477
+ "phase": "deploy",
1478
+ "required": true,
1479
+ "description": "Production deployment workflow for Azure App Service with security scanning",
1480
+ "outputName": "cd-prod.yml",
1481
+ "placeholders": [
1482
+ "APP_NAME",
1483
+ "DOTNET_VERSION"
1484
+ ],
1485
+ "stackSpecific": true,
1486
+ "applicableStacks": [
1487
+ "blazor-azure"
1488
+ ],
1489
+ "engine": "handlebars",
1490
+ "deprecated": false
1491
+ },
1492
+ {
1493
+ "id": "nextjs-supabase-ci-build",
1494
+ "name": "NextJS-Supabase CI Build Workflow",
1495
+ "path": "infrastructure/github/workflows/ci-build.yml.hbs",
1496
+ "location": "stack/nextjs-supabase",
1497
+ "category": "infrastructure",
1498
+ "technology": "github-actions",
1499
+ "phase": "build",
1500
+ "required": true,
1501
+ "description": "CI build workflow for NextJS-Supabase stack (Node.js + .NET combined)",
1502
+ "outputName": "ci-build.yml",
1503
+ "placeholders": [
1504
+ "DOTNET_VERSION"
1505
+ ],
1506
+ "stackSpecific": true,
1507
+ "applicableStacks": [
1508
+ "nextjs-supabase"
1509
+ ],
1510
+ "engine": "handlebars",
1511
+ "deprecated": false
1512
+ },
1513
+ {
1514
+ "id": "hop-squad-leader",
1515
+ "name": "Squad Leader HOP",
1516
+ "path": "meta-prompts/squad-leaders/squad-leader.md",
1517
+ "location": "framework",
1518
+ "category": "meta-prompts",
1519
+ "technology": "handlebars",
1520
+ "phase": "implement",
1521
+ "required": false,
1522
+ "description": "Generic squad leader higher-order prompt with mission, domain-leaders, standards, tasks, deliverables, constraints",
1523
+ "outputName": "squad-leader-prompt.md",
1524
+ "placeholders": [
1525
+ "AGENT_ID",
1526
+ "DOMAIN",
1527
+ "MISSION",
1528
+ "DOMAIN_LEADERS",
1529
+ "SPEC_SUMMARY",
1530
+ "STANDARDS",
1531
+ "TASKS",
1532
+ "DELIVERABLES",
1533
+ "CONSTRAINTS",
1534
+ "FEATURE_NAME"
1535
+ ],
1536
+ "stackSpecific": false,
1537
+ "engine": "handlebars",
1538
+ "deprecated": false,
1539
+ "hopType": "squad-leader"
1540
+ },
1541
+ {
1542
+ "id": "hop-backend-squad",
1543
+ "name": "Backend Squad Leader HOP",
1544
+ "path": "meta-prompts/squad-leaders/backend-squad.md",
1545
+ "location": "framework",
1546
+ "category": "meta-prompts",
1547
+ "technology": "handlebars",
1548
+ "phase": "implement",
1549
+ "required": false,
1550
+ "description": "Backend squad leader HOP for dotnet-senior with backend domain leaders, .NET 10 standards, architecture and security guidelines",
1551
+ "outputName": "backend-squad-prompt.md",
1552
+ "placeholders": [
1553
+ "AGENT_ID",
1554
+ "MISSION",
1555
+ "SPEC_SUMMARY",
1556
+ "TASKS",
1557
+ "DELIVERABLES",
1558
+ "CONSTRAINTS",
1559
+ "FEATURE_NAME"
1560
+ ],
1561
+ "stackSpecific": false,
1562
+ "engine": "handlebars",
1563
+ "deprecated": false,
1564
+ "hopType": "squad-leader",
1565
+ "applicableStacks": [
1566
+ "blazor-azure",
1567
+ "nextjs-supabase"
1568
+ ]
1569
+ },
1570
+ {
1571
+ "id": "hop-frontend-squad",
1572
+ "name": "Frontend Squad Leader HOP",
1573
+ "path": "meta-prompts/squad-leaders/frontend-squad.md",
1574
+ "location": "framework",
1575
+ "category": "meta-prompts",
1576
+ "technology": "handlebars",
1577
+ "phase": "implement",
1578
+ "required": false,
1579
+ "description": "Frontend squad leader HOP for ui-designer with Blazor or Next.js domain leaders and design system standards",
1580
+ "outputName": "frontend-squad-prompt.md",
1581
+ "placeholders": [
1582
+ "AGENT_ID",
1583
+ "DOMAIN",
1584
+ "MISSION",
1585
+ "SPEC_SUMMARY",
1586
+ "TASKS",
1587
+ "DELIVERABLES",
1588
+ "CONSTRAINTS",
1589
+ "FEATURE_NAME",
1590
+ "IS_BLAZOR",
1591
+ "IS_NEXTJS"
1592
+ ],
1593
+ "stackSpecific": false,
1594
+ "engine": "handlebars",
1595
+ "deprecated": false,
1596
+ "hopType": "squad-leader",
1597
+ "applicableStacks": [
1598
+ "blazor-azure",
1599
+ "nextjs-supabase"
1600
+ ]
1601
+ },
1602
+ {
1603
+ "id": "hop-parallel-worker",
1604
+ "name": "Parallel Worker HOP",
1605
+ "path": "meta-prompts/parallel-workers/parallel-worker.md",
1606
+ "location": "framework",
1607
+ "category": "meta-prompts",
1608
+ "technology": "handlebars",
1609
+ "phase": "implement",
1610
+ "required": false,
1611
+ "description": "P-Thread parallel worker HOP with isolation rules, assigned file scope, and structured completion report",
1612
+ "outputName": "parallel-worker-prompt.md",
1613
+ "placeholders": [
1614
+ "AGENT_ID",
1615
+ "THREAD_ID",
1616
+ "FEATURE_NAME",
1617
+ "MISSION",
1618
+ "SCOPE",
1619
+ "DELIVERABLES",
1620
+ "SPEC_SUMMARY",
1621
+ "STANDARDS",
1622
+ "TASKS"
1623
+ ],
1624
+ "stackSpecific": false,
1625
+ "engine": "handlebars",
1626
+ "deprecated": false,
1627
+ "hopType": "parallel-worker"
1628
+ },
1629
+ {
1630
+ "id": "hop-parallel-coordinator",
1631
+ "name": "Parallel Coordinator HOP",
1632
+ "path": "meta-prompts/parallel-workers/parallel-coordinator.md",
1633
+ "location": "framework",
1634
+ "category": "meta-prompts",
1635
+ "technology": "handlebars",
1636
+ "phase": "implement",
1637
+ "required": false,
1638
+ "description": "P-Thread coordinator HOP for spawning, monitoring and merging parallel worker results",
1639
+ "outputName": "parallel-coordinator-prompt.md",
1640
+ "placeholders": [
1641
+ "AGENT_ID",
1642
+ "SESSION_ID",
1643
+ "FEATURE_NAME",
1644
+ "WORKER_COUNT",
1645
+ "WORKERS",
1646
+ "PARALLEL_STRATEGY",
1647
+ "MAX_CONCURRENT",
1648
+ "TIMEOUT_MINUTES",
1649
+ "MERGE_STRATEGY",
1650
+ "SPEC_SUMMARY",
1651
+ "PRE_SPAWN_TASKS",
1652
+ "POST_MERGE_TASKS",
1653
+ "CONSTRAINTS"
1654
+ ],
1655
+ "stackSpecific": false,
1656
+ "engine": "handlebars",
1657
+ "deprecated": false,
1658
+ "hopType": "parallel-coordinator"
1659
+ },
1660
+ {
1661
+ "id": "hop-checkpoint-validator",
1662
+ "name": "Checkpoint Validator HOP",
1663
+ "path": "meta-prompts/validators/checkpoint-validator.md",
1664
+ "location": "framework",
1665
+ "category": "meta-prompts",
1666
+ "technology": "handlebars",
1667
+ "phase": "implement",
1668
+ "required": false,
1669
+ "description": "Checkpoint validator HOP running architecture, security, design-system, and packages validators with pass/fail decision logic",
1670
+ "outputName": "checkpoint-validator-prompt.md",
1671
+ "placeholders": [
1672
+ "FEATURE_NAME",
1673
+ "CHECKPOINT_NUM",
1674
+ "CHECKPOINT_FREQUENCY",
1675
+ "TASKS_SINCE_LAST",
1676
+ "TASKS_COMPLETED",
1677
+ "TASKS_TOTAL",
1678
+ "RECENT_TASKS",
1679
+ "FILES_CHANGED",
1680
+ "HAS_UI_FILES",
1681
+ "HAS_CSPROJ_CHANGES"
1682
+ ],
1683
+ "stackSpecific": false,
1684
+ "engine": "handlebars",
1685
+ "deprecated": false,
1686
+ "hopType": "validator"
1687
+ },
1688
+ {
1689
+ "id": "hop-pre-commit-validator",
1690
+ "name": "Pre-Commit Validator HOP",
1691
+ "path": "meta-prompts/validators/pre-commit-validator.md",
1692
+ "location": "framework",
1693
+ "category": "meta-prompts",
1694
+ "technology": "handlebars",
1695
+ "phase": "implement",
1696
+ "required": false,
1697
+ "description": "Pre-commit hook validator HOP checking conventional commits, secrets, agent spec validity, and stack-specific rules",
1698
+ "outputName": "pre-commit-validator-prompt.md",
1699
+ "placeholders": [
1700
+ "FEATURE_NAME",
1701
+ "BRANCH_NAME",
1702
+ "STAGED_FILE_COUNT",
1703
+ "STAGED_FILES",
1704
+ "IS_CSHARP",
1705
+ "IS_TYPESCRIPT"
1706
+ ],
1707
+ "stackSpecific": false,
1708
+ "engine": "handlebars",
1709
+ "deprecated": false,
1710
+ "hopType": "validator"
1711
+ },
1712
+ {
1713
+ "id": "hop-fusion-agent",
1714
+ "name": "Fusion Agent HOP",
1715
+ "path": "meta-prompts/fusion/fusion-agent.md",
1716
+ "location": "framework",
1717
+ "category": "meta-prompts",
1718
+ "technology": "handlebars",
1719
+ "phase": "implement",
1720
+ "required": false,
1721
+ "description": "F-Thread fusion participant HOP with approach hints per thread index (standard, alternative, optimized) and self-assessment scoring",
1722
+ "outputName": "fusion-agent-prompt.md",
1723
+ "placeholders": [
1724
+ "AGENT_ID",
1725
+ "THREAD_INDEX",
1726
+ "THREAD_COUNT",
1727
+ "THREAD_COUNT_MINUS_ONE",
1728
+ "THREAD_ID",
1729
+ "FEATURE_NAME",
1730
+ "FUSION_STRATEGY",
1731
+ "TASK_DESCRIPTION",
1732
+ "SPEC_SUMMARY",
1733
+ "STANDARDS",
1734
+ "DELIVERABLES"
1735
+ ],
1736
+ "stackSpecific": false,
1737
+ "engine": "handlebars",
1738
+ "deprecated": false,
1739
+ "hopType": "fusion"
1740
+ },
1741
+ {
1742
+ "id": "hop-fusion-aggregator",
1743
+ "name": "Fusion Aggregator HOP",
1744
+ "path": "meta-prompts/fusion/fusion-aggregator.md",
1745
+ "location": "framework",
1746
+ "category": "meta-prompts",
1747
+ "technology": "handlebars",
1748
+ "phase": "implement",
1749
+ "required": false,
1750
+ "description": "F-Thread aggregator HOP that scores and selects the winning implementation using best-of-n, consensus, or manual-select strategies",
1751
+ "outputName": "fusion-aggregator-prompt.md",
1752
+ "placeholders": [
1753
+ "SESSION_ID",
1754
+ "FEATURE_NAME",
1755
+ "THREAD_COUNT",
1756
+ "FUSION_STRATEGY",
1757
+ "FUSION_RESULTS"
1758
+ ],
1759
+ "stackSpecific": false,
1760
+ "engine": "handlebars",
1761
+ "deprecated": false,
1762
+ "hopType": "fusion"
1763
+ }
1764
+ ],
1765
+ "stats": {
1766
+ "total": 68,
1767
+ "framework": 59,
1768
+ "deprecated": 0,
1769
+ "byCategory": {
1770
+ "documentation": 4,
1771
+ "code": 24,
1772
+ "infrastructure": 18,
1773
+ "context": 2,
1774
+ "examples": 2,
1775
+ "integration": 4,
1776
+ "saas": 2,
1777
+ "ui": 3,
1778
+ "meta-prompts": 12
1779
+ },
1780
+ "byTechnology": {
1781
+ "dotnet": 26,
1782
+ "typescript": 1,
1783
+ "sql": 3,
1784
+ "bicep": 8,
1785
+ "azure": 9,
1786
+ "docker": 5,
1787
+ "handlebars": 22,
1788
+ "css": 1,
1789
+ "github-actions": 9
1790
+ },
1791
+ "byPhase": {
1792
+ "setup": 1,
1793
+ "proposal": 1,
1794
+ "uiux": 6,
1795
+ "design": 10,
1796
+ "clarify": 0,
1797
+ "tasks": 1,
1798
+ "implement": 34,
1799
+ "completed": 1,
1800
+ "build": 3,
1801
+ "deploy": 4
1802
+ },
1803
+ "required": 5,
1804
+ "optional": 63,
1805
+ "applicableToMultipleStacks": 42
1806
+ },
1807
+ "migrationNotes": {
1808
+ "v1ToV2": {
1809
+ "breaking": true,
1810
+ "pathChanges": "All templates moved from stacks/{stack}/.morph/templates/ to framework/templates/ organized by technology",
1811
+ "organizationChange": "Stack-based → Technology-based (enables future stack reusability)",
1812
+ "deprecated": 9,
1813
+ "movedToFramework": 57,
1814
+ "newTechnologies": [
1815
+ "dotnet",
1816
+ "typescript",
1817
+ "sql",
1818
+ "bicep",
1819
+ "azure",
1820
+ "docker"
1821
+ ],
1822
+ "actionRequired": "Delete stacks/{stack}/.morph/templates/ directories (Phase 6)"
1823
+ }
1824
+ }
1825
+ }