@polymorphism-tech/morph-spec 4.8.7 → 4.8.8

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 (33) hide show
  1. package/README.md +2 -2
  2. package/bin/morph-spec.js +22 -1
  3. package/bin/task-manager.cjs +120 -16
  4. package/claude-plugin.json +1 -1
  5. package/docs/CHEATSHEET.md +1 -1
  6. package/docs/QUICKSTART.md +1 -1
  7. package/framework/agents.json +1854 -1815
  8. package/framework/hooks/claude-code/pre-compact/save-morph-context.js +141 -23
  9. package/framework/hooks/claude-code/statusline.py +0 -12
  10. package/framework/hooks/claude-code/statusline.sh +6 -2
  11. package/framework/hooks/claude-code/stop/validate-completion.js +70 -23
  12. package/framework/hooks/dev/guard-version-numbers.js +1 -1
  13. package/framework/skills/level-0-meta/morph-init/SKILL.md +44 -6
  14. package/framework/skills/level-0-meta/tool-usage-guide/SKILL.md +67 -16
  15. package/framework/skills/level-1-workflows/phase-clarify/SKILL.md +1 -1
  16. package/framework/skills/level-1-workflows/phase-codebase-analysis/SKILL.md +77 -7
  17. package/framework/skills/level-1-workflows/phase-design/SKILL.md +114 -50
  18. package/framework/skills/level-1-workflows/phase-implement/SKILL.md +139 -1
  19. package/framework/skills/level-1-workflows/phase-setup/SKILL.md +29 -6
  20. package/framework/skills/level-1-workflows/phase-tasks/SKILL.md +4 -3
  21. package/framework/skills/level-1-workflows/phase-uiux/SKILL.md +1 -1
  22. package/framework/standards/STANDARDS.json +944 -933
  23. package/framework/standards/architecture/vertical-slice/vertical-slice.md +429 -0
  24. package/framework/templates/REGISTRY.json +1909 -1888
  25. package/framework/templates/code/dotnet/contracts/contracts-vsa.cs +282 -0
  26. package/package.json +1 -1
  27. package/src/commands/agents/dispatch-agents.js +430 -0
  28. package/src/commands/agents/index.js +2 -1
  29. package/src/commands/project/doctor.js +137 -2
  30. package/src/commands/state/state.js +20 -4
  31. package/src/commands/templates/generate-contracts.js +445 -0
  32. package/src/commands/templates/index.js +1 -0
  33. package/src/lib/validators/validation-runner.js +19 -7
@@ -1,1888 +1,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-18",
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": "typescript-contracts",
478
- "name": "TypeScript Contracts",
479
- "path": "code/typescript/contracts.ts",
480
- "location": "framework",
481
- "category": "code",
482
- "phase": "design",
483
- "required": false,
484
- "description": "TypeScript type definitions and interfaces",
485
- "outputName": "contracts.ts",
486
- "placeholders": [
487
- "FEATURE_NAME"
488
- ],
489
- "stackSpecific": false,
490
- "engine": "handlebars",
491
- "deprecated": false,
492
- "technology": "typescript",
493
- "applicableStacks": [
494
- "nextjs-supabase"
495
- ]
496
- },
497
- {
498
- "id": "sql-supabase-migration",
499
- "name": "Supabase Migration",
500
- "path": "code/sql/supabase-migration.sql",
501
- "location": "framework",
502
- "category": "code",
503
- "phase": "implement",
504
- "required": false,
505
- "description": "Supabase SQL migration template (basic)",
506
- "outputName": "{timestamp}_{feature_name}.sql",
507
- "placeholders": [
508
- "FEATURE_NAME"
509
- ],
510
- "stackSpecific": false,
511
- "engine": "handlebars",
512
- "deprecated": false,
513
- "technology": "sql",
514
- "applicableStacks": [
515
- "nextjs-supabase"
516
- ]
517
- },
518
- {
519
- "id": "sql-supabase-migration-enhanced",
520
- "name": "Supabase Migration (Enhanced)",
521
- "path": "code/sql/supabase-migration.template.sql",
522
- "location": "framework",
523
- "category": "code",
524
- "phase": "implement",
525
- "required": false,
526
- "description": "Enhanced Supabase migration with RLS and indexes",
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-rls-policy",
541
- "name": "Row-Level Security Policy",
542
- "path": "code/sql/rls-policy.sql",
543
- "location": "framework",
544
- "category": "code",
545
- "phase": "implement",
546
- "required": false,
547
- "description": "Row-level security policy template for Supabase",
548
- "outputName": "{table_name}_rls_policies.sql",
549
- "placeholders": [
550
- "FEATURE_NAME",
551
- "TABLE_NAME"
552
- ],
553
- "stackSpecific": false,
554
- "engine": "handlebars",
555
- "deprecated": false,
556
- "technology": "sql",
557
- "applicableStacks": [
558
- "nextjs-supabase"
559
- ]
560
- },
561
- {
562
- "id": "azure-bicep-main",
563
- "name": "Main Bicep Orchestration",
564
- "path": "infrastructure/azure/main.bicep",
565
- "location": "framework",
566
- "category": "infrastructure",
567
- "phase": "implement",
568
- "required": true,
569
- "description": "Main Bicep orchestration file for Azure resources",
570
- "outputName": "main.bicep",
571
- "placeholders": [
572
- "PROJECT_NAME",
573
- "ENVIRONMENT"
574
- ],
575
- "stackSpecific": false,
576
- "engine": "handlebars",
577
- "deprecated": false,
578
- "technology": "bicep",
579
- "applicableStacks": [
580
- "blazor-azure"
581
- ]
582
- },
583
- {
584
- "id": "azure-bicep-container-app",
585
- "name": "Azure Container App",
586
- "path": "infrastructure/azure/container-app.bicep",
587
- "location": "framework",
588
- "category": "infrastructure",
589
- "phase": "implement",
590
- "required": false,
591
- "description": "Azure Container App definition with scaling and secrets",
592
- "outputName": "container-app.bicep",
593
- "placeholders": [
594
- "PROJECT_NAME"
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-env",
606
- "name": "Container Apps Environment",
607
- "path": "infrastructure/azure/container-app-env.bicep",
608
- "location": "framework",
609
- "category": "infrastructure",
610
- "phase": "implement",
611
- "required": false,
612
- "description": "Azure Container Apps environment with Log Analytics",
613
- "outputName": "container-app-env.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-app-service",
627
- "name": "Azure App Service",
628
- "path": "infrastructure/azure/app-service.bicep",
629
- "location": "framework",
630
- "category": "infrastructure",
631
- "phase": "implement",
632
- "required": false,
633
- "description": "Azure App Service definition (alternative to Container Apps)",
634
- "outputName": "app-service.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-sql",
648
- "name": "Azure SQL Database",
649
- "path": "infrastructure/azure/sql-database.bicep",
650
- "location": "framework",
651
- "category": "infrastructure",
652
- "phase": "implement",
653
- "required": false,
654
- "description": "Azure SQL Database with server and firewall rules",
655
- "outputName": "sql-database.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-storage",
669
- "name": "Azure Storage Account",
670
- "path": "infrastructure/azure/storage.bicep",
671
- "location": "framework",
672
- "category": "infrastructure",
673
- "phase": "implement",
674
- "required": false,
675
- "description": "Azure Storage Account with blob containers",
676
- "outputName": "storage.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-key-vault",
690
- "name": "Azure Key Vault",
691
- "path": "infrastructure/azure/key-vault.bicep",
692
- "location": "framework",
693
- "category": "infrastructure",
694
- "phase": "implement",
695
- "required": false,
696
- "description": "Azure Key Vault for secrets management",
697
- "outputName": "key-vault.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-app-insights",
711
- "name": "Application Insights",
712
- "path": "infrastructure/azure/app-insights.bicep",
713
- "location": "framework",
714
- "category": "infrastructure",
715
- "phase": "implement",
716
- "required": false,
717
- "description": "Application Insights for monitoring and telemetry",
718
- "outputName": "app-insights.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-parameters-dev",
732
- "name": "Parameters (Development)",
733
- "path": "infrastructure/azure/parameters.dev.json",
734
- "location": "framework",
735
- "category": "infrastructure",
736
- "phase": "implement",
737
- "required": false,
738
- "description": "Bicep parameters for development environment",
739
- "outputName": "parameters.dev.json",
740
- "placeholders": [],
741
- "stackSpecific": false,
742
- "engine": null,
743
- "deprecated": false,
744
- "technology": "azure",
745
- "applicableStacks": [
746
- "blazor-azure"
747
- ]
748
- },
749
- {
750
- "id": "azure-parameters-staging",
751
- "name": "Parameters (Staging)",
752
- "path": "infrastructure/azure/parameters.staging.json",
753
- "location": "framework",
754
- "category": "infrastructure",
755
- "phase": "implement",
756
- "required": false,
757
- "description": "Bicep parameters for staging environment",
758
- "outputName": "parameters.staging.json",
759
- "placeholders": [],
760
- "stackSpecific": false,
761
- "engine": null,
762
- "deprecated": false,
763
- "technology": "azure",
764
- "applicableStacks": [
765
- "blazor-azure"
766
- ]
767
- },
768
- {
769
- "id": "azure-parameters-prod",
770
- "name": "Parameters (Production)",
771
- "path": "infrastructure/azure/parameters.prod.json",
772
- "location": "framework",
773
- "category": "infrastructure",
774
- "phase": "implement",
775
- "required": false,
776
- "description": "Bicep parameters for production environment",
777
- "outputName": "parameters.prod.json",
778
- "placeholders": [],
779
- "stackSpecific": false,
780
- "engine": null,
781
- "deprecated": false,
782
- "technology": "azure",
783
- "applicableStacks": [
784
- "blazor-azure"
785
- ]
786
- },
787
- {
788
- "id": "azure-deploy-ps1",
789
- "name": "Deploy Script (PowerShell)",
790
- "path": "infrastructure/azure/deploy.ps1",
791
- "location": "framework",
792
- "category": "infrastructure",
793
- "phase": "implement",
794
- "required": false,
795
- "description": "PowerShell deployment script for Azure",
796
- "outputName": "deploy.ps1",
797
- "placeholders": [],
798
- "stackSpecific": false,
799
- "engine": null,
800
- "deprecated": false,
801
- "technology": "azure",
802
- "applicableStacks": [
803
- "blazor-azure"
804
- ]
805
- },
806
- {
807
- "id": "azure-deploy-sh",
808
- "name": "Deploy Script (Bash)",
809
- "path": "infrastructure/azure/deploy.sh",
810
- "location": "framework",
811
- "category": "infrastructure",
812
- "phase": "implement",
813
- "required": false,
814
- "description": "Bash deployment script for Azure",
815
- "outputName": "deploy.sh",
816
- "placeholders": [],
817
- "stackSpecific": false,
818
- "engine": null,
819
- "deprecated": false,
820
- "technology": "azure",
821
- "applicableStacks": [
822
- "blazor-azure"
823
- ]
824
- },
825
- {
826
- "id": "azure-deploy-checklist",
827
- "name": "Deployment Checklist",
828
- "path": "infrastructure/azure/deploy-checklist.md",
829
- "location": "framework",
830
- "category": "infrastructure",
831
- "phase": "implement",
832
- "required": false,
833
- "description": "Pre-deployment verification checklist",
834
- "outputName": "deploy-checklist.md",
835
- "placeholders": [],
836
- "stackSpecific": false,
837
- "engine": "handlebars",
838
- "deprecated": false,
839
- "technology": "azure",
840
- "applicableStacks": [
841
- "blazor-azure"
842
- ]
843
- },
844
- {
845
- "id": "azure-dockerfile",
846
- "name": "Dockerfile (Azure)",
847
- "path": "infrastructure/azure/Dockerfile.example",
848
- "location": "framework",
849
- "category": "infrastructure",
850
- "phase": "implement",
851
- "required": false,
852
- "description": "Example Dockerfile for Azure Container Apps",
853
- "outputName": "Dockerfile",
854
- "placeholders": [],
855
- "stackSpecific": false,
856
- "engine": null,
857
- "deprecated": false,
858
- "technology": "docker",
859
- "applicableStacks": [
860
- "blazor-azure"
861
- ]
862
- },
863
- {
864
- "id": "azure-readme",
865
- "name": "Infrastructure README",
866
- "path": "infrastructure/azure/README.md",
867
- "location": "framework",
868
- "category": "infrastructure",
869
- "phase": "implement",
870
- "required": false,
871
- "description": "Documentation for Azure infrastructure",
872
- "outputName": "README.md",
873
- "placeholders": [],
874
- "stackSpecific": false,
875
- "engine": "handlebars",
876
- "deprecated": false,
877
- "technology": "azure",
878
- "applicableStacks": [
879
- "blazor-azure"
880
- ]
881
- },
882
- {
883
- "id": "docker-dockerfile-api",
884
- "name": "Dockerfile (.NET API)",
885
- "path": "infrastructure/docker/dockerfile-api.dockerfile",
886
- "location": "framework",
887
- "category": "infrastructure",
888
- "phase": "implement",
889
- "required": false,
890
- "description": ".NET API Dockerfile for EasyPanel/Docker",
891
- "outputName": "Dockerfile.api",
892
- "placeholders": [],
893
- "stackSpecific": false,
894
- "engine": null,
895
- "deprecated": false,
896
- "technology": "docker",
897
- "applicableStacks": [
898
- "nextjs-supabase"
899
- ]
900
- },
901
- {
902
- "id": "docker-dockerfile-web",
903
- "name": "Dockerfile (Next.js Web)",
904
- "path": "infrastructure/docker/dockerfile-web.dockerfile",
905
- "location": "framework",
906
- "category": "infrastructure",
907
- "phase": "implement",
908
- "required": false,
909
- "description": "Next.js web Dockerfile for EasyPanel/Docker",
910
- "outputName": "Dockerfile.web",
911
- "placeholders": [],
912
- "stackSpecific": false,
913
- "engine": null,
914
- "deprecated": false,
915
- "technology": "docker",
916
- "applicableStacks": [
917
- "nextjs-supabase"
918
- ]
919
- },
920
- {
921
- "id": "docker-dockerfile-generic",
922
- "name": "Dockerfile (Generic)",
923
- "path": "infrastructure/docker/Dockerfile.template",
924
- "location": "framework",
925
- "category": "infrastructure",
926
- "phase": "implement",
927
- "required": false,
928
- "description": "Generic multi-stage Dockerfile template",
929
- "outputName": "Dockerfile",
930
- "placeholders": [
931
- "PROJECT_NAME"
932
- ],
933
- "stackSpecific": false,
934
- "engine": "handlebars",
935
- "deprecated": false,
936
- "technology": "docker",
937
- "applicableStacks": [
938
- "nextjs-supabase"
939
- ]
940
- },
941
- {
942
- "id": "docker-compose",
943
- "name": "Docker Compose",
944
- "path": "infrastructure/docker/docker-compose.template.yml",
945
- "location": "framework",
946
- "category": "infrastructure",
947
- "phase": "implement",
948
- "required": false,
949
- "description": "Docker Compose for local development environment",
950
- "outputName": "docker-compose.yml",
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": "easypanel-config",
964
- "name": "EasyPanel Configuration",
965
- "path": "infrastructure/docker/easypanel.template.json",
966
- "location": "framework",
967
- "category": "infrastructure",
968
- "phase": "implement",
969
- "required": false,
970
- "description": "EasyPanel deployment configuration",
971
- "outputName": "easypanel.json",
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": "integration-asaas-client",
985
- "name": "Asaas Financial Client",
986
- "path": "integrations/asaas-client.cs",
987
- "location": "framework",
988
- "category": "integration",
989
- "phase": "implement",
990
- "required": false,
991
- "description": "Asaas financial API client implementation",
992
- "outputName": "AsaasClient.cs",
993
- "placeholders": [
994
- "NAMESPACE"
995
- ],
996
- "stackSpecific": false,
997
- "engine": "handlebars",
998
- "deprecated": false,
999
- "technology": "dotnet",
1000
- "applicableStacks": [
1001
- "blazor-azure",
1002
- "nextjs-supabase"
1003
- ]
1004
- },
1005
- {
1006
- "id": "integration-asaas-webhook",
1007
- "name": "Asaas Webhook Handler",
1008
- "path": "integrations/asaas-webhook.cs",
1009
- "location": "framework",
1010
- "category": "integration",
1011
- "phase": "implement",
1012
- "required": false,
1013
- "description": "Asaas webhook handler for payment events",
1014
- "outputName": "AsaasWebhookHandler.cs",
1015
- "placeholders": [
1016
- "NAMESPACE"
1017
- ],
1018
- "stackSpecific": false,
1019
- "engine": "handlebars",
1020
- "deprecated": false,
1021
- "technology": "dotnet",
1022
- "applicableStacks": [
1023
- "blazor-azure",
1024
- "nextjs-supabase"
1025
- ]
1026
- },
1027
- {
1028
- "id": "integration-azure-identity",
1029
- "name": "Azure Identity Configuration",
1030
- "path": "integrations/azure-identity-config.cs",
1031
- "location": "framework",
1032
- "category": "integration",
1033
- "phase": "implement",
1034
- "required": false,
1035
- "description": "Azure AD/Entra ID authentication configuration",
1036
- "outputName": "AzureIdentityConfig.cs",
1037
- "placeholders": [
1038
- "NAMESPACE"
1039
- ],
1040
- "stackSpecific": false,
1041
- "engine": "handlebars",
1042
- "deprecated": false,
1043
- "technology": "dotnet",
1044
- "applicableStacks": [
1045
- "blazor-azure"
1046
- ]
1047
- },
1048
- {
1049
- "id": "integration-clerk",
1050
- "name": "Clerk Authentication",
1051
- "path": "integrations/clerk-config.cs",
1052
- "location": "framework",
1053
- "category": "integration",
1054
- "phase": "implement",
1055
- "required": false,
1056
- "description": "Clerk authentication configuration",
1057
- "outputName": "ClerkConfig.cs",
1058
- "placeholders": [
1059
- "NAMESPACE"
1060
- ],
1061
- "stackSpecific": false,
1062
- "engine": "handlebars",
1063
- "deprecated": false,
1064
- "technology": "dotnet",
1065
- "applicableStacks": [
1066
- "blazor-azure",
1067
- "nextjs-supabase"
1068
- ]
1069
- },
1070
- {
1071
- "id": "ui-design-system-css",
1072
- "name": "Design System CSS",
1073
- "path": "ui/design-system.css",
1074
- "location": "framework",
1075
- "category": "ui",
1076
- "phase": "uiux",
1077
- "required": false,
1078
- "description": "CSS design tokens and variables (colors, spacing, typography)",
1079
- "outputName": "design-system.css",
1080
- "placeholders": [
1081
- "PROJECT_NAME"
1082
- ],
1083
- "stackSpecific": false,
1084
- "engine": "handlebars",
1085
- "deprecated": false,
1086
- "technology": "css",
1087
- "applicableStacks": [
1088
- "blazor-azure",
1089
- "nextjs-supabase"
1090
- ]
1091
- },
1092
- {
1093
- "id": "ui-fluent-theme",
1094
- "name": "Fluent Design Theme",
1095
- "path": "ui/FluentDesignTheme.cs",
1096
- "location": "framework",
1097
- "category": "ui",
1098
- "phase": "uiux",
1099
- "required": false,
1100
- "description": "FluentUI Blazor theme configuration (auto-generated)",
1101
- "outputName": "FluentDesignTheme.cs",
1102
- "placeholders": [
1103
- "NAMESPACE"
1104
- ],
1105
- "stackSpecific": false,
1106
- "engine": "handlebars",
1107
- "deprecated": false,
1108
- "autoGenerated": true,
1109
- "technology": "dotnet",
1110
- "applicableStacks": [
1111
- "blazor-azure"
1112
- ]
1113
- },
1114
- {
1115
- "id": "ui-mud-theme",
1116
- "name": "MudBlazor Theme",
1117
- "path": "ui/MudTheme.cs",
1118
- "location": "framework",
1119
- "category": "ui",
1120
- "phase": "uiux",
1121
- "required": false,
1122
- "description": "MudBlazor theme configuration (auto-generated)",
1123
- "outputName": "MudTheme.cs",
1124
- "placeholders": [
1125
- "NAMESPACE"
1126
- ],
1127
- "stackSpecific": false,
1128
- "engine": "handlebars",
1129
- "deprecated": false,
1130
- "autoGenerated": true,
1131
- "technology": "dotnet",
1132
- "applicableStacks": [
1133
- "blazor-azure"
1134
- ]
1135
- },
1136
- {
1137
- "id": "saas-subscription",
1138
- "name": "Subscription Model",
1139
- "path": "saas/subscription.cs",
1140
- "location": "framework",
1141
- "category": "saas",
1142
- "phase": "implement",
1143
- "required": false,
1144
- "description": "Multi-tenant subscription model with billing",
1145
- "outputName": "Subscription.cs",
1146
- "placeholders": [
1147
- "NAMESPACE"
1148
- ],
1149
- "stackSpecific": false,
1150
- "engine": "handlebars",
1151
- "deprecated": false,
1152
- "technology": "dotnet",
1153
- "applicableStacks": [
1154
- "blazor-azure",
1155
- "nextjs-supabase"
1156
- ]
1157
- },
1158
- {
1159
- "id": "saas-tenant",
1160
- "name": "Tenant Model",
1161
- "path": "saas/tenant.cs",
1162
- "location": "framework",
1163
- "category": "saas",
1164
- "phase": "implement",
1165
- "required": false,
1166
- "description": "Multi-tenant tenant model with isolation",
1167
- "outputName": "Tenant.cs",
1168
- "placeholders": [
1169
- "NAMESPACE"
1170
- ],
1171
- "stackSpecific": false,
1172
- "engine": "handlebars",
1173
- "deprecated": false,
1174
- "technology": "dotnet",
1175
- "applicableStacks": [
1176
- "blazor-azure",
1177
- "nextjs-supabase"
1178
- ]
1179
- },
1180
- {
1181
- "id": "ui-mockups",
1182
- "name": "UI Mockups",
1183
- "path": "docs/ui-mockups.md",
1184
- "location": "framework",
1185
- "category": "documentation",
1186
- "phase": "uiux",
1187
- "required": false,
1188
- "description": "Wireframes and layout specifications with ASCII mockups and responsive breakpoints",
1189
- "outputName": "ui-mockups.md",
1190
- "placeholders": [
1191
- "FEATURE_NAME",
1192
- "DATE"
1193
- ],
1194
- "stackSpecific": false,
1195
- "engine": "handlebars",
1196
- "deprecated": false,
1197
- "technology": "handlebars"
1198
- },
1199
- {
1200
- "id": "ui-flows",
1201
- "name": "UI Flows",
1202
- "path": "docs/ui-flows.md",
1203
- "location": "framework",
1204
- "category": "documentation",
1205
- "phase": "uiux",
1206
- "required": false,
1207
- "description": "User flows and interaction patterns with state diagrams and edge cases",
1208
- "outputName": "ui-flows.md",
1209
- "placeholders": [
1210
- "FEATURE_NAME",
1211
- "DATE"
1212
- ],
1213
- "stackSpecific": false,
1214
- "engine": "handlebars",
1215
- "deprecated": false,
1216
- "technology": "handlebars"
1217
- },
1218
- {
1219
- "id": "ui-components",
1220
- "name": "UI Components",
1221
- "path": "docs/ui-components.md",
1222
- "location": "framework",
1223
- "category": "documentation",
1224
- "phase": "uiux",
1225
- "required": false,
1226
- "description": "Component specifications mapping UI elements to FluentUI/MudBlazor components with props and events",
1227
- "outputName": "ui-components.md",
1228
- "placeholders": [
1229
- "FEATURE_NAME",
1230
- "DATE",
1231
- "STACK"
1232
- ],
1233
- "stackSpecific": false,
1234
- "engine": "handlebars",
1235
- "deprecated": false,
1236
- "technology": "handlebars"
1237
- },
1238
- {
1239
- "id": "ui-design-system",
1240
- "name": "UI Design System",
1241
- "path": "docs/ui-design-system.md",
1242
- "location": "framework",
1243
- "category": "documentation",
1244
- "phase": "uiux",
1245
- "required": false,
1246
- "description": "Design system documentation with color palette, typography, spacing, and semantic tokens",
1247
- "outputName": "ui-design-system.md",
1248
- "placeholders": [
1249
- "FEATURE_NAME",
1250
- "DATE",
1251
- "PROJECT_NAME"
1252
- ],
1253
- "stackSpecific": false,
1254
- "engine": "handlebars",
1255
- "deprecated": false,
1256
- "technology": "handlebars"
1257
- },
1258
- {
1259
- "id": "github-workflow-dotnet-build",
1260
- "name": "GitHub Actions - .NET Build Workflow",
1261
- "path": "infrastructure/github/workflows/dotnet-build.yml.hbs",
1262
- "location": "framework",
1263
- "category": "infrastructure",
1264
- "technology": "github-actions",
1265
- "phase": "build",
1266
- "required": false,
1267
- "description": "Reusable workflow for building .NET applications with restore, build, test, coverage",
1268
- "outputName": "dotnet-build.yml",
1269
- "placeholders": [
1270
- "DOTNET_VERSION"
1271
- ],
1272
- "stackSpecific": false,
1273
- "applicableStacks": [
1274
- "blazor-azure",
1275
- "nextjs-supabase"
1276
- ],
1277
- "engine": "handlebars",
1278
- "deprecated": false,
1279
- "isFragment": true
1280
- },
1281
- {
1282
- "id": "github-workflow-docker-build-push",
1283
- "name": "GitHub Actions - Docker Build & Push",
1284
- "path": "infrastructure/github/workflows/docker-build-push.yml.hbs",
1285
- "location": "framework",
1286
- "category": "infrastructure",
1287
- "technology": "github-actions",
1288
- "phase": "build",
1289
- "required": false,
1290
- "description": "Reusable workflow for building and pushing Docker images to registry",
1291
- "outputName": "docker-build-push.yml",
1292
- "placeholders": [],
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-deploy-azure-app-service",
1304
- "name": "GitHub Actions - Deploy to Azure App Service",
1305
- "path": "infrastructure/github/workflows/deploy-azure-app-service.yml.hbs",
1306
- "location": "framework",
1307
- "category": "infrastructure",
1308
- "technology": "github-actions",
1309
- "phase": "deploy",
1310
- "required": false,
1311
- "description": "Reusable workflow for deploying .NET applications to Azure App Service with Bicep infrastructure",
1312
- "outputName": "deploy-azure-app-service.yml",
1313
- "placeholders": [
1314
- "DOTNET_VERSION"
1315
- ],
1316
- "stackSpecific": false,
1317
- "applicableStacks": [
1318
- "blazor-azure"
1319
- ],
1320
- "engine": "handlebars",
1321
- "deprecated": false,
1322
- "isFragment": true
1323
- },
1324
- {
1325
- "id": "github-workflow-deploy-easypanel",
1326
- "name": "GitHub Actions - Deploy to EasyPanel",
1327
- "path": "infrastructure/github/workflows/deploy-easypanel.yml.hbs",
1328
- "location": "framework",
1329
- "category": "infrastructure",
1330
- "technology": "github-actions",
1331
- "phase": "deploy",
1332
- "required": false,
1333
- "description": "Reusable workflow for deploying to EasyPanel via webhook",
1334
- "outputName": "deploy-easypanel.yml",
1335
- "placeholders": [],
1336
- "stackSpecific": false,
1337
- "applicableStacks": [
1338
- "nextjs-supabase"
1339
- ],
1340
- "engine": "handlebars",
1341
- "deprecated": false,
1342
- "isFragment": true
1343
- },
1344
- {
1345
- "id": "github-action-docker-build-push",
1346
- "name": "GitHub Composite Action - Docker Build & Push",
1347
- "path": "infrastructure/github/actions/docker-build-push/action.yml.hbs",
1348
- "location": "framework",
1349
- "category": "infrastructure",
1350
- "technology": "github-actions",
1351
- "phase": "build",
1352
- "required": false,
1353
- "description": "Composite action for building and pushing Docker images",
1354
- "outputName": "action.yml",
1355
- "placeholders": [],
1356
- "stackSpecific": false,
1357
- "applicableStacks": [
1358
- "blazor-azure",
1359
- "nextjs-supabase"
1360
- ],
1361
- "engine": "handlebars",
1362
- "deprecated": false,
1363
- "isFragment": true
1364
- },
1365
- {
1366
- "id": "github-action-health-check",
1367
- "name": "GitHub Composite Action - Health Check",
1368
- "path": "infrastructure/github/actions/health-check/action.yml.hbs",
1369
- "location": "framework",
1370
- "category": "infrastructure",
1371
- "technology": "github-actions",
1372
- "phase": "deploy",
1373
- "required": false,
1374
- "description": "Composite action for polling health endpoint until ready",
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-azure-auth",
1388
- "name": "GitHub Composite Action - Azure OIDC Auth",
1389
- "path": "infrastructure/github/actions/azure-auth/action.yml.hbs",
1390
- "location": "framework",
1391
- "category": "infrastructure",
1392
- "technology": "github-actions",
1393
- "phase": "deploy",
1394
- "required": false,
1395
- "description": "Composite action for Azure authentication using OIDC",
1396
- "outputName": "action.yml",
1397
- "placeholders": [],
1398
- "stackSpecific": false,
1399
- "applicableStacks": [
1400
- "blazor-azure"
1401
- ],
1402
- "engine": "handlebars",
1403
- "deprecated": false,
1404
- "isFragment": true
1405
- },
1406
- {
1407
- "id": "blazor-azure-ci-build",
1408
- "name": "Blazor-Azure CI Build Workflow",
1409
- "path": "infrastructure/github/workflows/ci-build.yml.hbs",
1410
- "location": "stack/blazor-azure",
1411
- "category": "infrastructure",
1412
- "technology": "github-actions",
1413
- "phase": "build",
1414
- "required": true,
1415
- "description": "CI build workflow for Blazor-Azure stack with security checks",
1416
- "outputName": "ci-build.yml",
1417
- "placeholders": [
1418
- "DOTNET_VERSION"
1419
- ],
1420
- "stackSpecific": true,
1421
- "applicableStacks": [
1422
- "blazor-azure"
1423
- ],
1424
- "engine": "handlebars",
1425
- "deprecated": false
1426
- },
1427
- {
1428
- "id": "blazor-azure-cd-staging",
1429
- "name": "Blazor-Azure Staging Deployment",
1430
- "path": "infrastructure/github/workflows/cd-staging.yml.hbs",
1431
- "location": "stack/blazor-azure",
1432
- "category": "infrastructure",
1433
- "technology": "github-actions",
1434
- "phase": "deploy",
1435
- "required": true,
1436
- "description": "Staging deployment workflow for Azure App Service",
1437
- "outputName": "cd-staging.yml",
1438
- "placeholders": [
1439
- "APP_NAME",
1440
- "DOTNET_VERSION"
1441
- ],
1442
- "stackSpecific": true,
1443
- "applicableStacks": [
1444
- "blazor-azure"
1445
- ],
1446
- "engine": "handlebars",
1447
- "deprecated": false
1448
- },
1449
- {
1450
- "id": "blazor-azure-cd-prod",
1451
- "name": "Blazor-Azure Production Deployment",
1452
- "path": "infrastructure/github/workflows/cd-prod.yml.hbs",
1453
- "location": "stack/blazor-azure",
1454
- "category": "infrastructure",
1455
- "technology": "github-actions",
1456
- "phase": "deploy",
1457
- "required": true,
1458
- "description": "Production deployment workflow for Azure App Service with security scanning",
1459
- "outputName": "cd-prod.yml",
1460
- "placeholders": [
1461
- "APP_NAME",
1462
- "DOTNET_VERSION"
1463
- ],
1464
- "stackSpecific": true,
1465
- "applicableStacks": [
1466
- "blazor-azure"
1467
- ],
1468
- "engine": "handlebars",
1469
- "deprecated": false
1470
- },
1471
- {
1472
- "id": "nextjs-supabase-ci-build",
1473
- "name": "NextJS-Supabase CI Build Workflow",
1474
- "path": "infrastructure/github/workflows/ci-build.yml.hbs",
1475
- "location": "stack/nextjs-supabase",
1476
- "category": "infrastructure",
1477
- "technology": "github-actions",
1478
- "phase": "build",
1479
- "required": true,
1480
- "description": "CI build workflow for NextJS-Supabase stack (Node.js + .NET combined)",
1481
- "outputName": "ci-build.yml",
1482
- "placeholders": [
1483
- "DOTNET_VERSION"
1484
- ],
1485
- "stackSpecific": true,
1486
- "applicableStacks": [
1487
- "nextjs-supabase"
1488
- ],
1489
- "engine": "handlebars",
1490
- "deprecated": false
1491
- },
1492
- {
1493
- "id": "hop-squad-leader",
1494
- "name": "Squad Leader HOP",
1495
- "path": "meta-prompts/squad-leaders/squad-leader.md",
1496
- "location": "framework",
1497
- "category": "meta-prompts",
1498
- "technology": "handlebars",
1499
- "phase": "implement",
1500
- "required": false,
1501
- "description": "Generic squad leader higher-order prompt with mission, domain-leaders, standards, tasks, deliverables, constraints",
1502
- "outputName": "squad-leader-prompt.md",
1503
- "placeholders": [
1504
- "AGENT_ID",
1505
- "DOMAIN",
1506
- "MISSION",
1507
- "DOMAIN_LEADERS",
1508
- "SPEC_SUMMARY",
1509
- "STANDARDS",
1510
- "TASKS",
1511
- "DELIVERABLES",
1512
- "CONSTRAINTS",
1513
- "FEATURE_NAME"
1514
- ],
1515
- "stackSpecific": false,
1516
- "engine": "handlebars",
1517
- "deprecated": false,
1518
- "hopType": "squad-leader"
1519
- },
1520
- {
1521
- "id": "hop-backend-squad",
1522
- "name": "Backend Squad Leader HOP",
1523
- "path": "meta-prompts/squad-leaders/backend-squad.md",
1524
- "location": "framework",
1525
- "category": "meta-prompts",
1526
- "technology": "handlebars",
1527
- "phase": "implement",
1528
- "required": false,
1529
- "description": "Backend squad leader HOP for dotnet-senior with backend domain leaders, .NET 10 standards, architecture and security guidelines",
1530
- "outputName": "backend-squad-prompt.md",
1531
- "placeholders": [
1532
- "AGENT_ID",
1533
- "MISSION",
1534
- "SPEC_SUMMARY",
1535
- "TASKS",
1536
- "DELIVERABLES",
1537
- "CONSTRAINTS",
1538
- "FEATURE_NAME"
1539
- ],
1540
- "stackSpecific": false,
1541
- "engine": "handlebars",
1542
- "deprecated": false,
1543
- "hopType": "squad-leader",
1544
- "applicableStacks": [
1545
- "blazor-azure",
1546
- "nextjs-supabase"
1547
- ]
1548
- },
1549
- {
1550
- "id": "hop-frontend-squad",
1551
- "name": "Frontend Squad Leader HOP",
1552
- "path": "meta-prompts/squad-leaders/frontend-squad.md",
1553
- "location": "framework",
1554
- "category": "meta-prompts",
1555
- "technology": "handlebars",
1556
- "phase": "implement",
1557
- "required": false,
1558
- "description": "Frontend squad leader HOP for ui-designer with Blazor or Next.js domain leaders and design system standards",
1559
- "outputName": "frontend-squad-prompt.md",
1560
- "placeholders": [
1561
- "AGENT_ID",
1562
- "DOMAIN",
1563
- "MISSION",
1564
- "SPEC_SUMMARY",
1565
- "TASKS",
1566
- "DELIVERABLES",
1567
- "CONSTRAINTS",
1568
- "FEATURE_NAME",
1569
- "IS_BLAZOR",
1570
- "IS_NEXTJS"
1571
- ],
1572
- "stackSpecific": false,
1573
- "engine": "handlebars",
1574
- "deprecated": false,
1575
- "hopType": "squad-leader",
1576
- "applicableStacks": [
1577
- "blazor-azure",
1578
- "nextjs-supabase"
1579
- ]
1580
- },
1581
- {
1582
- "id": "hop-parallel-worker",
1583
- "name": "Parallel Worker HOP",
1584
- "path": "meta-prompts/parallel-workers/parallel-worker.md",
1585
- "location": "framework",
1586
- "category": "meta-prompts",
1587
- "technology": "handlebars",
1588
- "phase": "implement",
1589
- "required": false,
1590
- "description": "P-Thread parallel worker HOP with isolation rules, assigned file scope, and structured completion report",
1591
- "outputName": "parallel-worker-prompt.md",
1592
- "placeholders": [
1593
- "AGENT_ID",
1594
- "THREAD_ID",
1595
- "FEATURE_NAME",
1596
- "MISSION",
1597
- "SCOPE",
1598
- "DELIVERABLES",
1599
- "SPEC_SUMMARY",
1600
- "STANDARDS",
1601
- "TASKS"
1602
- ],
1603
- "stackSpecific": false,
1604
- "engine": "handlebars",
1605
- "deprecated": false,
1606
- "hopType": "parallel-worker"
1607
- },
1608
- {
1609
- "id": "hop-parallel-coordinator",
1610
- "name": "Parallel Coordinator HOP",
1611
- "path": "meta-prompts/parallel-workers/parallel-coordinator.md",
1612
- "location": "framework",
1613
- "category": "meta-prompts",
1614
- "technology": "handlebars",
1615
- "phase": "implement",
1616
- "required": false,
1617
- "description": "P-Thread coordinator HOP for spawning, monitoring and merging parallel worker results",
1618
- "outputName": "parallel-coordinator-prompt.md",
1619
- "placeholders": [
1620
- "AGENT_ID",
1621
- "SESSION_ID",
1622
- "FEATURE_NAME",
1623
- "WORKER_COUNT",
1624
- "WORKERS",
1625
- "PARALLEL_STRATEGY",
1626
- "MAX_CONCURRENT",
1627
- "TIMEOUT_MINUTES",
1628
- "MERGE_STRATEGY",
1629
- "SPEC_SUMMARY",
1630
- "PRE_SPAWN_TASKS",
1631
- "POST_MERGE_TASKS",
1632
- "CONSTRAINTS"
1633
- ],
1634
- "stackSpecific": false,
1635
- "engine": "handlebars",
1636
- "deprecated": false,
1637
- "hopType": "parallel-coordinator"
1638
- },
1639
- {
1640
- "id": "hop-wrapper",
1641
- "name": "HOP Wrapper",
1642
- "path": "meta-prompts/hops/hop-wrapper.md",
1643
- "location": "framework",
1644
- "category": "meta-prompts",
1645
- "technology": "handlebars",
1646
- "phase": "implement",
1647
- "required": false,
1648
- "description": "Wraps any prompt with additional context, pre/post conditions, and HOP metadata injection",
1649
- "outputName": "hop-wrapper-prompt.md",
1650
- "placeholders": [
1651
- "HOP_NAME",
1652
- "INNER_PROMPT",
1653
- "FEATURE_NAME",
1654
- "PHASE",
1655
- "AGENT_ID",
1656
- "STANDARDS_OVERRIDE",
1657
- "PRE_CONDITIONS",
1658
- "POST_CONDITIONS",
1659
- "HOP_VERSION",
1660
- "DATE"
1661
- ],
1662
- "stackSpecific": false,
1663
- "engine": "handlebars",
1664
- "deprecated": false,
1665
- "hopType": "utility"
1666
- },
1667
- {
1668
- "id": "hop-retry",
1669
- "name": "HOP Retry",
1670
- "path": "meta-prompts/hops/hop-retry.md",
1671
- "location": "framework",
1672
- "category": "meta-prompts",
1673
- "technology": "handlebars",
1674
- "phase": "implement",
1675
- "required": false,
1676
- "description": "Retry HOP with failure analysis, adjusted approach hints per attempt number (1=minor fix, 2=alternative, 3=escalation-ready)",
1677
- "outputName": "hop-retry-prompt.md",
1678
- "placeholders": [
1679
- "FEATURE_NAME",
1680
- "AGENT_ID",
1681
- "RETRY_COUNT",
1682
- "MAX_RETRIES",
1683
- "TASK_ID",
1684
- "FAILURE_DESCRIPTION",
1685
- "ERROR_DETAILS",
1686
- "PREVIOUS_ATTEMPTS",
1687
- "ORIGINAL_TASK_DESCRIPTION",
1688
- "CONSTRAINTS"
1689
- ],
1690
- "stackSpecific": false,
1691
- "engine": "handlebars",
1692
- "deprecated": false,
1693
- "hopType": "utility"
1694
- },
1695
- {
1696
- "id": "hop-validation",
1697
- "name": "HOP Validation",
1698
- "path": "meta-prompts/hops/hop-validation.md",
1699
- "location": "framework",
1700
- "category": "meta-prompts",
1701
- "technology": "handlebars",
1702
- "phase": "implement",
1703
- "required": false,
1704
- "description": "Validation agent HOP with architecture, security, design-system, and packages checklists",
1705
- "outputName": "hop-validation-prompt.md",
1706
- "placeholders": [
1707
- "VALIDATION_TYPE",
1708
- "REVIEWED_AGENT",
1709
- "FEATURE_NAME",
1710
- "CHECKPOINT_NUM",
1711
- "FILES_TO_REVIEW",
1712
- "VALIDATION_CRITERIA",
1713
- "IS_ARCHITECTURE",
1714
- "IS_SECURITY",
1715
- "IS_DESIGN_SYSTEM",
1716
- "IS_PACKAGES"
1717
- ],
1718
- "stackSpecific": false,
1719
- "engine": "handlebars",
1720
- "deprecated": false,
1721
- "hopType": "validator"
1722
- },
1723
- {
1724
- "id": "hop-checkpoint-validator",
1725
- "name": "Checkpoint Validator HOP",
1726
- "path": "meta-prompts/validators/checkpoint-validator.md",
1727
- "location": "framework",
1728
- "category": "meta-prompts",
1729
- "technology": "handlebars",
1730
- "phase": "implement",
1731
- "required": false,
1732
- "description": "Checkpoint validator HOP running architecture, security, design-system, and packages validators with pass/fail decision logic",
1733
- "outputName": "checkpoint-validator-prompt.md",
1734
- "placeholders": [
1735
- "FEATURE_NAME",
1736
- "CHECKPOINT_NUM",
1737
- "CHECKPOINT_FREQUENCY",
1738
- "TASKS_SINCE_LAST",
1739
- "TASKS_COMPLETED",
1740
- "TASKS_TOTAL",
1741
- "RECENT_TASKS",
1742
- "FILES_CHANGED",
1743
- "HAS_UI_FILES",
1744
- "HAS_CSPROJ_CHANGES"
1745
- ],
1746
- "stackSpecific": false,
1747
- "engine": "handlebars",
1748
- "deprecated": false,
1749
- "hopType": "validator"
1750
- },
1751
- {
1752
- "id": "hop-pre-commit-validator",
1753
- "name": "Pre-Commit Validator HOP",
1754
- "path": "meta-prompts/validators/pre-commit-validator.md",
1755
- "location": "framework",
1756
- "category": "meta-prompts",
1757
- "technology": "handlebars",
1758
- "phase": "implement",
1759
- "required": false,
1760
- "description": "Pre-commit hook validator HOP checking conventional commits, secrets, agent spec validity, and stack-specific rules",
1761
- "outputName": "pre-commit-validator-prompt.md",
1762
- "placeholders": [
1763
- "FEATURE_NAME",
1764
- "BRANCH_NAME",
1765
- "STAGED_FILE_COUNT",
1766
- "STAGED_FILES",
1767
- "IS_CSHARP",
1768
- "IS_TYPESCRIPT"
1769
- ],
1770
- "stackSpecific": false,
1771
- "engine": "handlebars",
1772
- "deprecated": false,
1773
- "hopType": "validator"
1774
- },
1775
- {
1776
- "id": "hop-fusion-agent",
1777
- "name": "Fusion Agent HOP",
1778
- "path": "meta-prompts/fusion/fusion-agent.md",
1779
- "location": "framework",
1780
- "category": "meta-prompts",
1781
- "technology": "handlebars",
1782
- "phase": "implement",
1783
- "required": false,
1784
- "description": "F-Thread fusion participant HOP with approach hints per thread index (standard, alternative, optimized) and self-assessment scoring",
1785
- "outputName": "fusion-agent-prompt.md",
1786
- "placeholders": [
1787
- "AGENT_ID",
1788
- "THREAD_INDEX",
1789
- "THREAD_COUNT",
1790
- "THREAD_COUNT_MINUS_ONE",
1791
- "THREAD_ID",
1792
- "FEATURE_NAME",
1793
- "FUSION_STRATEGY",
1794
- "TASK_DESCRIPTION",
1795
- "SPEC_SUMMARY",
1796
- "STANDARDS",
1797
- "DELIVERABLES"
1798
- ],
1799
- "stackSpecific": false,
1800
- "engine": "handlebars",
1801
- "deprecated": false,
1802
- "hopType": "fusion"
1803
- },
1804
- {
1805
- "id": "hop-fusion-aggregator",
1806
- "name": "Fusion Aggregator HOP",
1807
- "path": "meta-prompts/fusion/fusion-aggregator.md",
1808
- "location": "framework",
1809
- "category": "meta-prompts",
1810
- "technology": "handlebars",
1811
- "phase": "implement",
1812
- "required": false,
1813
- "description": "F-Thread aggregator HOP that scores and selects the winning implementation using best-of-n, consensus, or manual-select strategies",
1814
- "outputName": "fusion-aggregator-prompt.md",
1815
- "placeholders": [
1816
- "SESSION_ID",
1817
- "FEATURE_NAME",
1818
- "THREAD_COUNT",
1819
- "FUSION_STRATEGY",
1820
- "FUSION_RESULTS"
1821
- ],
1822
- "stackSpecific": false,
1823
- "engine": "handlebars",
1824
- "deprecated": false,
1825
- "hopType": "fusion"
1826
- }
1827
- ],
1828
- "stats": {
1829
- "total": 68,
1830
- "framework": 59,
1831
- "deprecated": 0,
1832
- "byCategory": {
1833
- "documentation": 4,
1834
- "code": 24,
1835
- "infrastructure": 18,
1836
- "context": 2,
1837
- "examples": 2,
1838
- "integration": 4,
1839
- "saas": 2,
1840
- "ui": 3,
1841
- "meta-prompts": 12
1842
- },
1843
- "byTechnology": {
1844
- "dotnet": 26,
1845
- "typescript": 1,
1846
- "sql": 3,
1847
- "bicep": 8,
1848
- "azure": 9,
1849
- "docker": 5,
1850
- "handlebars": 22,
1851
- "css": 1,
1852
- "github-actions": 9
1853
- },
1854
- "byPhase": {
1855
- "setup": 1,
1856
- "proposal": 1,
1857
- "uiux": 6,
1858
- "design": 10,
1859
- "clarify": 0,
1860
- "tasks": 1,
1861
- "implement": 34,
1862
- "completed": 1,
1863
- "build": 3,
1864
- "deploy": 4
1865
- },
1866
- "required": 5,
1867
- "optional": 63,
1868
- "applicableToMultipleStacks": 42
1869
- },
1870
- "migrationNotes": {
1871
- "v1ToV2": {
1872
- "breaking": true,
1873
- "pathChanges": "All templates moved from stacks/{stack}/.morph/templates/ to framework/templates/ organized by technology",
1874
- "organizationChange": "Stack-based → Technology-based (enables future stack reusability)",
1875
- "deprecated": 9,
1876
- "movedToFramework": 57,
1877
- "newTechnologies": [
1878
- "dotnet",
1879
- "typescript",
1880
- "sql",
1881
- "bicep",
1882
- "azure",
1883
- "docker"
1884
- ],
1885
- "actionRequired": "Delete stacks/{stack}/.morph/templates/ directories (Phase 6)"
1886
- }
1887
- }
1888
- }
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
+ }