@agile-vibe-coding/avc 0.2.3 → 0.3.1

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 (261) hide show
  1. package/cli/agents/agent-selector.md +23 -0
  2. package/cli/agents/code-implementer.md +117 -0
  3. package/cli/agents/code-validator.md +80 -0
  4. package/cli/agents/context-reviewer-epic.md +101 -0
  5. package/cli/agents/context-reviewer-story.md +92 -0
  6. package/cli/agents/context-writer-epic.md +145 -0
  7. package/cli/agents/context-writer-story.md +111 -0
  8. package/cli/agents/doc-writer-epic.md +42 -0
  9. package/cli/agents/doc-writer-story.md +43 -0
  10. package/cli/agents/duplicate-detector.md +110 -0
  11. package/cli/agents/epic-story-decomposer.md +318 -39
  12. package/cli/agents/mission-scope-generator.md +68 -4
  13. package/cli/agents/mission-scope-validator.md +40 -6
  14. package/cli/agents/project-context-extractor.md +21 -6
  15. package/cli/agents/scaffolding-generator.md +99 -0
  16. package/cli/agents/seed-validator.md +71 -0
  17. package/cli/agents/story-scope-reviewer.md +147 -0
  18. package/cli/agents/story-splitter.md +83 -0
  19. package/cli/agents/validator-documentation.json +31 -0
  20. package/cli/agents/validator-documentation.md +3 -1
  21. package/cli/api-reference-tool.js +368 -0
  22. package/cli/checks/catalog.json +76 -0
  23. package/cli/checks/code/quality.json +26 -0
  24. package/cli/checks/code/testing.json +14 -0
  25. package/cli/checks/code/traceability.json +26 -0
  26. package/cli/checks/cross-refs/epic.json +171 -0
  27. package/cli/checks/cross-refs/story.json +149 -0
  28. package/cli/checks/epic/api.json +114 -0
  29. package/cli/checks/epic/backend.json +126 -0
  30. package/cli/checks/epic/cloud.json +126 -0
  31. package/cli/checks/epic/data.json +102 -0
  32. package/cli/checks/epic/database.json +114 -0
  33. package/cli/checks/epic/developer.json +182 -0
  34. package/cli/checks/epic/devops.json +174 -0
  35. package/cli/checks/epic/frontend.json +162 -0
  36. package/cli/checks/epic/mobile.json +102 -0
  37. package/cli/checks/epic/qa.json +90 -0
  38. package/cli/checks/epic/security.json +184 -0
  39. package/cli/checks/epic/solution-architect.json +192 -0
  40. package/cli/checks/epic/test-architect.json +90 -0
  41. package/cli/checks/epic/ui.json +102 -0
  42. package/cli/checks/epic/ux.json +90 -0
  43. package/cli/checks/fixes/epic-fix-template.md +10 -0
  44. package/cli/checks/fixes/story-fix-template.md +10 -0
  45. package/cli/checks/story/api.json +186 -0
  46. package/cli/checks/story/backend.json +102 -0
  47. package/cli/checks/story/cloud.json +102 -0
  48. package/cli/checks/story/data.json +210 -0
  49. package/cli/checks/story/database.json +102 -0
  50. package/cli/checks/story/developer.json +168 -0
  51. package/cli/checks/story/devops.json +102 -0
  52. package/cli/checks/story/frontend.json +174 -0
  53. package/cli/checks/story/mobile.json +102 -0
  54. package/cli/checks/story/qa.json +210 -0
  55. package/cli/checks/story/security.json +198 -0
  56. package/cli/checks/story/solution-architect.json +230 -0
  57. package/cli/checks/story/test-architect.json +210 -0
  58. package/cli/checks/story/ui.json +102 -0
  59. package/cli/checks/story/ux.json +102 -0
  60. package/cli/coding-order.js +401 -0
  61. package/cli/dependency-checker.js +72 -0
  62. package/cli/epic-story-validator.js +284 -799
  63. package/cli/index.js +0 -0
  64. package/cli/init-model-config.js +17 -10
  65. package/cli/init.js +514 -92
  66. package/cli/kanban-server-manager.js +1 -2
  67. package/cli/llm-claude.js +98 -31
  68. package/cli/llm-gemini.js +29 -5
  69. package/cli/llm-local.js +493 -0
  70. package/cli/llm-openai.js +262 -41
  71. package/cli/llm-provider.js +147 -8
  72. package/cli/llm-token-limits.js +113 -4
  73. package/cli/llm-verifier.js +209 -1
  74. package/cli/llm-xiaomi.js +143 -0
  75. package/cli/message-constants.js +3 -12
  76. package/cli/messaging-api.js +6 -12
  77. package/cli/micro-check-fixer.js +335 -0
  78. package/cli/micro-check-runner.js +449 -0
  79. package/cli/micro-check-scorer.js +148 -0
  80. package/cli/micro-check-validator.js +538 -0
  81. package/cli/model-pricing.js +23 -0
  82. package/cli/model-selector.js +3 -2
  83. package/cli/prompt-logger.js +57 -0
  84. package/cli/repl-ink.js +106 -346
  85. package/cli/repl-old.js +1 -2
  86. package/cli/seed-processor.js +194 -24
  87. package/cli/sprint-planning-processor.js +2638 -289
  88. package/cli/template-processor.js +50 -3
  89. package/cli/token-tracker.js +50 -23
  90. package/cli/tools/generate-story-validators.js +1 -1
  91. package/cli/validation-router.js +70 -8
  92. package/cli/worktree-runner.js +654 -0
  93. package/kanban/client/dist/assets/index-D_KC5EQT.css +1 -0
  94. package/kanban/client/dist/assets/index-DjY5zqW7.js +351 -0
  95. package/kanban/client/dist/index.html +2 -2
  96. package/kanban/client/src/App.jsx +43 -14
  97. package/kanban/client/src/components/ceremony/AskArchPopup.jsx +7 -3
  98. package/kanban/client/src/components/ceremony/AskModelPopup.jsx +23 -10
  99. package/kanban/client/src/components/ceremony/CeremonyWorkflowModal.jsx +320 -133
  100. package/kanban/client/src/components/ceremony/ProviderSwitcherButton.jsx +290 -0
  101. package/kanban/client/src/components/ceremony/SponsorCallModal.jsx +80 -13
  102. package/kanban/client/src/components/ceremony/SprintPlanningModal.jsx +156 -22
  103. package/kanban/client/src/components/ceremony/steps/ArchitectureStep.jsx +11 -11
  104. package/kanban/client/src/components/ceremony/steps/CompleteStep.jsx +3 -21
  105. package/kanban/client/src/components/ceremony/steps/ReviewAnswersStep.jsx +214 -10
  106. package/kanban/client/src/components/ceremony/steps/RunningStep.jsx +23 -2
  107. package/kanban/client/src/components/kanban/CardDetailModal.jsx +97 -10
  108. package/kanban/client/src/components/kanban/GroupingSelector.jsx +7 -1
  109. package/kanban/client/src/components/kanban/KanbanCard.jsx +23 -14
  110. package/kanban/client/src/components/kanban/RefineWorkItemPopup.jsx +9 -14
  111. package/kanban/client/src/components/kanban/RunButton.jsx +162 -0
  112. package/kanban/client/src/components/kanban/SeedButton.jsx +176 -0
  113. package/kanban/client/src/components/settings/AgentsTab.jsx +103 -75
  114. package/kanban/client/src/components/settings/ApiKeysTab.jsx +31 -2
  115. package/kanban/client/src/components/settings/CeremonyModelsTab.jsx +9 -2
  116. package/kanban/client/src/components/settings/CheckEditorPopup.jsx +507 -0
  117. package/kanban/client/src/components/settings/CostThresholdsTab.jsx +3 -2
  118. package/kanban/client/src/components/settings/ModelPricingTab.jsx +72 -7
  119. package/kanban/client/src/components/settings/OpenAIAuthSection.jsx +412 -0
  120. package/kanban/client/src/components/settings/SettingsModal.jsx +4 -4
  121. package/kanban/client/src/components/stats/CostModal.jsx +34 -3
  122. package/kanban/client/src/hooks/useGrouping.js +59 -0
  123. package/kanban/client/src/lib/api.js +118 -4
  124. package/kanban/client/src/lib/status-grouping.js +10 -0
  125. package/kanban/client/src/store/kanbanStore.js +8 -0
  126. package/kanban/server/index.js +23 -2
  127. package/kanban/server/routes/ceremony.js +153 -4
  128. package/kanban/server/routes/costs.js +9 -3
  129. package/kanban/server/routes/openai-oauth.js +366 -0
  130. package/kanban/server/routes/settings.js +447 -14
  131. package/kanban/server/routes/websocket.js +7 -2
  132. package/kanban/server/routes/work-items.js +141 -1
  133. package/kanban/server/services/CeremonyService.js +275 -24
  134. package/kanban/server/services/TaskRunnerService.js +261 -0
  135. package/kanban/server/workers/run-task-worker.js +121 -0
  136. package/kanban/server/workers/seed-worker.js +94 -0
  137. package/kanban/server/workers/sponsor-call-worker.js +14 -6
  138. package/kanban/server/workers/sprint-planning-worker.js +94 -12
  139. package/package.json +2 -3
  140. package/cli/agents/solver-epic-api.json +0 -15
  141. package/cli/agents/solver-epic-api.md +0 -39
  142. package/cli/agents/solver-epic-backend.json +0 -15
  143. package/cli/agents/solver-epic-backend.md +0 -39
  144. package/cli/agents/solver-epic-cloud.json +0 -15
  145. package/cli/agents/solver-epic-cloud.md +0 -39
  146. package/cli/agents/solver-epic-data.json +0 -15
  147. package/cli/agents/solver-epic-data.md +0 -39
  148. package/cli/agents/solver-epic-database.json +0 -15
  149. package/cli/agents/solver-epic-database.md +0 -39
  150. package/cli/agents/solver-epic-developer.json +0 -15
  151. package/cli/agents/solver-epic-developer.md +0 -39
  152. package/cli/agents/solver-epic-devops.json +0 -15
  153. package/cli/agents/solver-epic-devops.md +0 -39
  154. package/cli/agents/solver-epic-frontend.json +0 -15
  155. package/cli/agents/solver-epic-frontend.md +0 -39
  156. package/cli/agents/solver-epic-mobile.json +0 -15
  157. package/cli/agents/solver-epic-mobile.md +0 -39
  158. package/cli/agents/solver-epic-qa.json +0 -15
  159. package/cli/agents/solver-epic-qa.md +0 -39
  160. package/cli/agents/solver-epic-security.json +0 -15
  161. package/cli/agents/solver-epic-security.md +0 -39
  162. package/cli/agents/solver-epic-solution-architect.json +0 -15
  163. package/cli/agents/solver-epic-solution-architect.md +0 -39
  164. package/cli/agents/solver-epic-test-architect.json +0 -15
  165. package/cli/agents/solver-epic-test-architect.md +0 -39
  166. package/cli/agents/solver-epic-ui.json +0 -15
  167. package/cli/agents/solver-epic-ui.md +0 -39
  168. package/cli/agents/solver-epic-ux.json +0 -15
  169. package/cli/agents/solver-epic-ux.md +0 -39
  170. package/cli/agents/solver-story-api.json +0 -15
  171. package/cli/agents/solver-story-api.md +0 -39
  172. package/cli/agents/solver-story-backend.json +0 -15
  173. package/cli/agents/solver-story-backend.md +0 -39
  174. package/cli/agents/solver-story-cloud.json +0 -15
  175. package/cli/agents/solver-story-cloud.md +0 -39
  176. package/cli/agents/solver-story-data.json +0 -15
  177. package/cli/agents/solver-story-data.md +0 -39
  178. package/cli/agents/solver-story-database.json +0 -15
  179. package/cli/agents/solver-story-database.md +0 -39
  180. package/cli/agents/solver-story-developer.json +0 -15
  181. package/cli/agents/solver-story-developer.md +0 -39
  182. package/cli/agents/solver-story-devops.json +0 -15
  183. package/cli/agents/solver-story-devops.md +0 -39
  184. package/cli/agents/solver-story-frontend.json +0 -15
  185. package/cli/agents/solver-story-frontend.md +0 -39
  186. package/cli/agents/solver-story-mobile.json +0 -15
  187. package/cli/agents/solver-story-mobile.md +0 -39
  188. package/cli/agents/solver-story-qa.json +0 -15
  189. package/cli/agents/solver-story-qa.md +0 -39
  190. package/cli/agents/solver-story-security.json +0 -15
  191. package/cli/agents/solver-story-security.md +0 -39
  192. package/cli/agents/solver-story-solution-architect.json +0 -15
  193. package/cli/agents/solver-story-solution-architect.md +0 -39
  194. package/cli/agents/solver-story-test-architect.json +0 -15
  195. package/cli/agents/solver-story-test-architect.md +0 -39
  196. package/cli/agents/solver-story-ui.json +0 -15
  197. package/cli/agents/solver-story-ui.md +0 -39
  198. package/cli/agents/solver-story-ux.json +0 -15
  199. package/cli/agents/solver-story-ux.md +0 -39
  200. package/cli/agents/validator-epic-api.json +0 -93
  201. package/cli/agents/validator-epic-api.md +0 -137
  202. package/cli/agents/validator-epic-backend.json +0 -93
  203. package/cli/agents/validator-epic-backend.md +0 -130
  204. package/cli/agents/validator-epic-cloud.json +0 -93
  205. package/cli/agents/validator-epic-cloud.md +0 -137
  206. package/cli/agents/validator-epic-data.json +0 -93
  207. package/cli/agents/validator-epic-data.md +0 -130
  208. package/cli/agents/validator-epic-database.json +0 -93
  209. package/cli/agents/validator-epic-database.md +0 -137
  210. package/cli/agents/validator-epic-developer.json +0 -74
  211. package/cli/agents/validator-epic-developer.md +0 -153
  212. package/cli/agents/validator-epic-devops.json +0 -74
  213. package/cli/agents/validator-epic-devops.md +0 -153
  214. package/cli/agents/validator-epic-frontend.json +0 -74
  215. package/cli/agents/validator-epic-frontend.md +0 -153
  216. package/cli/agents/validator-epic-mobile.json +0 -93
  217. package/cli/agents/validator-epic-mobile.md +0 -130
  218. package/cli/agents/validator-epic-qa.json +0 -93
  219. package/cli/agents/validator-epic-qa.md +0 -130
  220. package/cli/agents/validator-epic-security.json +0 -74
  221. package/cli/agents/validator-epic-security.md +0 -154
  222. package/cli/agents/validator-epic-solution-architect.json +0 -74
  223. package/cli/agents/validator-epic-solution-architect.md +0 -156
  224. package/cli/agents/validator-epic-test-architect.json +0 -93
  225. package/cli/agents/validator-epic-test-architect.md +0 -130
  226. package/cli/agents/validator-epic-ui.json +0 -93
  227. package/cli/agents/validator-epic-ui.md +0 -130
  228. package/cli/agents/validator-epic-ux.json +0 -93
  229. package/cli/agents/validator-epic-ux.md +0 -130
  230. package/cli/agents/validator-story-api.json +0 -104
  231. package/cli/agents/validator-story-api.md +0 -152
  232. package/cli/agents/validator-story-backend.json +0 -104
  233. package/cli/agents/validator-story-backend.md +0 -152
  234. package/cli/agents/validator-story-cloud.json +0 -104
  235. package/cli/agents/validator-story-cloud.md +0 -152
  236. package/cli/agents/validator-story-data.json +0 -104
  237. package/cli/agents/validator-story-data.md +0 -152
  238. package/cli/agents/validator-story-database.json +0 -104
  239. package/cli/agents/validator-story-database.md +0 -152
  240. package/cli/agents/validator-story-developer.json +0 -104
  241. package/cli/agents/validator-story-developer.md +0 -152
  242. package/cli/agents/validator-story-devops.json +0 -104
  243. package/cli/agents/validator-story-devops.md +0 -152
  244. package/cli/agents/validator-story-frontend.json +0 -104
  245. package/cli/agents/validator-story-frontend.md +0 -152
  246. package/cli/agents/validator-story-mobile.json +0 -104
  247. package/cli/agents/validator-story-mobile.md +0 -152
  248. package/cli/agents/validator-story-qa.json +0 -104
  249. package/cli/agents/validator-story-qa.md +0 -152
  250. package/cli/agents/validator-story-security.json +0 -104
  251. package/cli/agents/validator-story-security.md +0 -152
  252. package/cli/agents/validator-story-solution-architect.json +0 -104
  253. package/cli/agents/validator-story-solution-architect.md +0 -152
  254. package/cli/agents/validator-story-test-architect.json +0 -104
  255. package/cli/agents/validator-story-test-architect.md +0 -152
  256. package/cli/agents/validator-story-ui.json +0 -104
  257. package/cli/agents/validator-story-ui.md +0 -152
  258. package/cli/agents/validator-story-ux.json +0 -104
  259. package/cli/agents/validator-story-ux.md +0 -152
  260. package/kanban/client/dist/assets/index-CiD8PS2e.js +0 -306
  261. package/kanban/client/dist/assets/index-nLh0m82Q.css +0 -1
@@ -0,0 +1,174 @@
1
+ {
2
+ "perspective": "devops",
3
+ "scope": "epic",
4
+ "checks": [
5
+ {
6
+ "id": "devops-epic-01",
7
+ "tier": 1,
8
+ "perspective": "devops",
9
+ "severity": "critical",
10
+ "category": "completeness",
11
+ "universal": false,
12
+ "applicabilityQuestion": "Does this epic involve deployment, infrastructure, or operational concerns? (Does it require CI/CD, containers, or cloud infrastructure?)",
13
+ "question": "Does the epic scope clearly define deployment and operational boundaries?",
14
+ "failDescription": "Deployment and operational boundaries are not defined",
15
+ "failSuggestion": "Define deployment boundaries: what is deployed, where, and how (container, serverless, VM)"
16
+ },
17
+ {
18
+ "id": "devops-epic-02",
19
+ "tier": 1,
20
+ "perspective": "devops",
21
+ "severity": "critical",
22
+ "category": "completeness",
23
+ "universal": false,
24
+ "applicabilityQuestion": "Does this epic involve deployment, infrastructure, or operational concerns? (Does it require CI/CD, monitoring, or scaling?)",
25
+ "question": "Are all critical DevOps features identified (CI/CD, monitoring, scaling)?",
26
+ "failDescription": "Critical DevOps features are missing — CI/CD, monitoring, or scaling not addressed",
27
+ "failSuggestion": "Identify critical DevOps features: CI/CD pipeline, monitoring/alerting, auto-scaling strategy"
28
+ },
29
+ {
30
+ "id": "devops-epic-03",
31
+ "tier": 1,
32
+ "perspective": "devops",
33
+ "severity": "major",
34
+ "category": "completeness",
35
+ "universal": false,
36
+ "applicabilityQuestion": "Does this epic depend on infrastructure services? (Does it use cloud provider, container registry, or external services?)",
37
+ "question": "Are dependencies on infrastructure services explicit (cloud provider, container registry)?",
38
+ "failDescription": "Infrastructure service dependencies are not explicit",
39
+ "failSuggestion": "Make infrastructure dependencies explicit: cloud provider, container registry, DNS, CDN, load balancer"
40
+ },
41
+ {
42
+ "id": "devops-epic-04",
43
+ "tier": 1,
44
+ "perspective": "devops",
45
+ "severity": "major",
46
+ "category": "completeness",
47
+ "universal": false,
48
+ "applicabilityQuestion": "Does this epic have operational requirements? (Does it need uptime, recovery, or deployment frequency targets?)",
49
+ "question": "Are operational success criteria measurable (e.g. 99.9% uptime, < 15min MTTR)?",
50
+ "failDescription": "Operational success criteria are not measurable",
51
+ "failSuggestion": "Define measurable operational criteria: uptime SLA (e.g. 99.9%), MTTR (e.g. < 15min), deployment frequency"
52
+ },
53
+ {
54
+ "id": "devops-epic-05",
55
+ "tier": 1,
56
+ "perspective": "devops",
57
+ "severity": "minor",
58
+ "category": "clarity",
59
+ "universal": false,
60
+ "applicabilityQuestion": "Does this epic involve DevOps infrastructure or operational concerns?",
61
+ "question": "Is DevOps terminology used correctly and consistently?",
62
+ "failDescription": "DevOps terminology is used incorrectly or inconsistently",
63
+ "failSuggestion": "Review and correct DevOps terminology for consistency (e.g. container vs VM, deployment vs release)"
64
+ },
65
+ {
66
+ "id": "devops-epic-06",
67
+ "tier": 1,
68
+ "perspective": "devops",
69
+ "severity": "minor",
70
+ "category": "clarity",
71
+ "universal": false,
72
+ "applicabilityQuestion": "Does this epic involve DevOps infrastructure or operational concerns?",
73
+ "question": "Is the epic description understandable to non-DevOps team members?",
74
+ "failDescription": "Epic description uses excessive DevOps jargon without explanation",
75
+ "failSuggestion": "Simplify or explain DevOps concepts so non-DevOps team members can understand the epic"
76
+ },
77
+ {
78
+ "id": "devops-epic-07",
79
+ "tier": 1,
80
+ "perspective": "devops",
81
+ "severity": "minor",
82
+ "category": "clarity",
83
+ "universal": false,
84
+ "applicabilityQuestion": "Does this epic involve DevOps infrastructure or operational concerns?",
85
+ "question": "Are operational features described in terms of business value (faster deployments, reduced downtime)?",
86
+ "failDescription": "Operational features lack business value context",
87
+ "failSuggestion": "Frame operational features in business terms: 'automated deployment reduces release time from 2hr to 5min'"
88
+ },
89
+ {
90
+ "id": "devops-epic-08",
91
+ "tier": 1,
92
+ "perspective": "devops",
93
+ "severity": "major",
94
+ "category": "technical-depth",
95
+ "universal": false,
96
+ "applicabilityQuestion": "Does this epic involve deploying services? (Does it require containerization, orchestration, or scaling?)",
97
+ "question": "Is infrastructure architecture considered (containerization, orchestration, scaling)?",
98
+ "failDescription": "Infrastructure architecture is not considered — containerization, orchestration, or scaling missing",
99
+ "failSuggestion": "Address infrastructure architecture: containerization (Docker), orchestration (K8s/ECS), scaling strategy"
100
+ },
101
+ {
102
+ "id": "devops-epic-09",
103
+ "tier": 1,
104
+ "perspective": "devops",
105
+ "severity": "major",
106
+ "category": "technical-depth",
107
+ "universal": false,
108
+ "applicabilityQuestion": "Does this epic involve deploying to production? (Does it require a deployment strategy?)",
109
+ "question": "Is a deployment strategy addressed (blue/green, canary, rolling updates)?",
110
+ "failDescription": "Deployment strategy is not addressed",
111
+ "failSuggestion": "Define deployment strategy: blue/green, canary, or rolling updates with rollback plan"
112
+ },
113
+ {
114
+ "id": "devops-epic-10",
115
+ "tier": 1,
116
+ "perspective": "devops",
117
+ "severity": "major",
118
+ "category": "technical-depth",
119
+ "universal": false,
120
+ "applicabilityQuestion": "Does this epic involve running production services? (Does it require logging, metrics, or tracing?)",
121
+ "question": "Is an observability stack defined (metrics, logs, traces)?",
122
+ "failDescription": "Observability stack is not defined — no metrics, logging, or tracing specified",
123
+ "failSuggestion": "Define observability stack: logging (ELK, CloudWatch), metrics (Prometheus, Datadog), tracing (X-Ray, Jaeger)"
124
+ },
125
+ {
126
+ "id": "devops-epic-11",
127
+ "tier": 1,
128
+ "perspective": "devops",
129
+ "severity": "minor",
130
+ "category": "technical-depth",
131
+ "universal": false,
132
+ "applicabilityQuestion": "Does this epic involve production data or services? (Does it require backup or disaster recovery?)",
133
+ "question": "Is a disaster recovery and backup strategy mentioned?",
134
+ "failDescription": "Disaster recovery and backup strategy is not mentioned",
135
+ "failSuggestion": "Mention disaster recovery: backup frequency, RTO/RPO targets, recovery procedures"
136
+ },
137
+ {
138
+ "id": "devops-epic-12",
139
+ "tier": 1,
140
+ "perspective": "devops",
141
+ "severity": "minor",
142
+ "category": "consistency",
143
+ "universal": false,
144
+ "applicabilityQuestion": "Does this epic involve DevOps infrastructure or operational concerns?",
145
+ "question": "Does the DevOps approach align with the project context and cloud platform?",
146
+ "failDescription": "DevOps approach does not align with project context or cloud platform",
147
+ "failSuggestion": "Align DevOps approach with project context: ensure tools and patterns match the chosen cloud platform"
148
+ },
149
+ {
150
+ "id": "devops-epic-13",
151
+ "tier": 1,
152
+ "perspective": "devops",
153
+ "severity": "minor",
154
+ "category": "best-practices",
155
+ "universal": false,
156
+ "applicabilityQuestion": "Does this epic involve DevOps infrastructure or operational concerns?",
157
+ "question": "Are industry-standard DevOps patterns followed (12-factor app, GitOps, immutable infrastructure)?",
158
+ "failDescription": "Industry-standard DevOps patterns are not followed",
159
+ "failSuggestion": "Follow DevOps best practices: 12-factor app principles, GitOps workflows, immutable infrastructure"
160
+ },
161
+ {
162
+ "id": "devops-epic-14",
163
+ "tier": 1,
164
+ "perspective": "devops",
165
+ "severity": "minor",
166
+ "category": "best-practices",
167
+ "universal": false,
168
+ "applicabilityQuestion": "Does this epic involve DevOps infrastructure or operational concerns?",
169
+ "question": "Does the epic avoid DevOps anti-patterns (manual deployments, configuration drift, snowflake servers)?",
170
+ "failDescription": "Epic may introduce DevOps anti-patterns — manual deployments, configuration drift, or snowflake servers",
171
+ "failSuggestion": "Avoid DevOps anti-patterns: automate deployments, manage config as code, use immutable infrastructure"
172
+ }
173
+ ]
174
+ }
@@ -0,0 +1,162 @@
1
+ {
2
+ "perspective": "frontend",
3
+ "scope": "epic",
4
+ "checks": [
5
+ {
6
+ "id": "fe-epic-01",
7
+ "tier": 1,
8
+ "perspective": "frontend",
9
+ "severity": "critical",
10
+ "category": "ui-architecture-specification",
11
+ "universal": false,
12
+ "applicabilityQuestion": "Does this epic involve a user-facing web interface? (Does it include UI components, pages, or client-side rendering?)",
13
+ "question": "Does the epic state the frontend framework (React, Vue, Angular, etc.)?",
14
+ "failDescription": "Frontend framework is not stated — foundational technology decision is missing",
15
+ "failSuggestion": "State the frontend framework: React, Vue, Angular, Svelte, etc."
16
+ },
17
+ {
18
+ "id": "fe-epic-02",
19
+ "tier": 1,
20
+ "perspective": "frontend",
21
+ "severity": "critical",
22
+ "category": "ui-architecture-specification",
23
+ "universal": false,
24
+ "applicabilityQuestion": "Does this epic involve fetching data from a server? (Does it make API calls or query a backend?)",
25
+ "question": "Does the epic name the server-state management library (TanStack Query, SWR, Apollo) and describe its usage pattern?",
26
+ "failDescription": "Server-state management library is not named or its usage pattern is not described",
27
+ "failSuggestion": "Name the server-state management library (TanStack Query, SWR, Apollo) and describe caching/refetch patterns"
28
+ },
29
+ {
30
+ "id": "fe-epic-03",
31
+ "tier": 1,
32
+ "perspective": "frontend",
33
+ "severity": "major",
34
+ "category": "ui-architecture-specification",
35
+ "universal": false,
36
+ "applicabilityQuestion": "Does this epic involve client-side state beyond server data? (Does it need UI state, form state, or application state?)",
37
+ "question": "Does the epic name the client-state management strategy (Zustand, Redux, Context) — or explicitly state 'no client state beyond React Query cache'?",
38
+ "failDescription": "Client-state management strategy is not named or explicitly declared absent",
39
+ "failSuggestion": "Name the client-state strategy (Zustand, Redux, Context) or explicitly state 'no client state beyond server-state cache'"
40
+ },
41
+ {
42
+ "id": "fe-epic-04",
43
+ "tier": 1,
44
+ "perspective": "frontend",
45
+ "severity": "major",
46
+ "category": "ui-architecture-specification",
47
+ "universal": false,
48
+ "applicabilityQuestion": "Does this epic involve a user-facing web interface? (Does it include UI components?)",
49
+ "question": "Does the epic name the key UI component types (table, form, modal, drawer, chart, etc.)?",
50
+ "failDescription": "Key UI component types are not named",
51
+ "failSuggestion": "Name the key UI component types: tables, forms, modals, drawers, charts, etc."
52
+ },
53
+ {
54
+ "id": "fe-epic-05",
55
+ "tier": 1,
56
+ "perspective": "frontend",
57
+ "severity": "critical",
58
+ "category": "async-error-ux-strategy",
59
+ "universal": false,
60
+ "applicabilityQuestion": "Does this epic involve asynchronous operations? (Does it fetch data, submit forms, or call APIs?)",
61
+ "question": "Does the epic name a loading state strategy (skeleton loaders, spinners, progressive enhancement)?",
62
+ "failDescription": "Loading state strategy is not named — users will see undefined behavior during async operations",
63
+ "failSuggestion": "Name the loading state strategy: skeleton loaders, spinners, disabled buttons, or progressive enhancement"
64
+ },
65
+ {
66
+ "id": "fe-epic-06",
67
+ "tier": 1,
68
+ "perspective": "frontend",
69
+ "severity": "critical",
70
+ "category": "async-error-ux-strategy",
71
+ "universal": false,
72
+ "applicabilityQuestion": "Does this epic involve asynchronous operations? (Does it fetch data, submit forms, or call APIs?)",
73
+ "question": "Does the epic name an error state strategy (toast notifications, inline errors, error boundaries)?",
74
+ "failDescription": "Error state strategy is not named — errors will not be communicated to users",
75
+ "failSuggestion": "Name the error state strategy: toast notifications, inline errors, error boundaries, or retry prompts"
76
+ },
77
+ {
78
+ "id": "fe-epic-07",
79
+ "tier": 1,
80
+ "perspective": "frontend",
81
+ "severity": "major",
82
+ "category": "async-error-ux-strategy",
83
+ "universal": false,
84
+ "applicabilityQuestion": "Does this epic involve lists or search views? (Does it display collections of items or search results?)",
85
+ "question": "Does the epic describe empty state handling for all list/search views?",
86
+ "failDescription": "Empty state handling is not described for list/search views",
87
+ "failSuggestion": "Describe empty state handling: what renders when data is empty (illustration, message, call-to-action)"
88
+ },
89
+ {
90
+ "id": "fe-epic-08",
91
+ "tier": 1,
92
+ "perspective": "frontend",
93
+ "severity": "minor",
94
+ "category": "async-error-ux-strategy",
95
+ "universal": false,
96
+ "applicabilityQuestion": "Does this epic involve data mutations? (Does it create, update, or delete data?)",
97
+ "question": "Does the epic state an optimistic update strategy for mutation-heavy features?",
98
+ "failDescription": "Optimistic update strategy is not stated for mutation-heavy features",
99
+ "failSuggestion": "State whether mutations use optimistic updates (immediate UI update, rollback on failure) or wait for server confirmation"
100
+ },
101
+ {
102
+ "id": "fe-epic-09",
103
+ "tier": 1,
104
+ "perspective": "frontend",
105
+ "severity": "major",
106
+ "category": "accessibility-standards",
107
+ "universal": false,
108
+ "applicabilityQuestion": "Does this epic involve a user-facing web interface? (Does it render UI for end users?)",
109
+ "question": "Does the epic state an accessibility standard (WCAG 2.1 AA or equivalent) if user-facing?",
110
+ "failDescription": "Accessibility standard is not stated for user-facing interface",
111
+ "failSuggestion": "State the accessibility standard: WCAG 2.1 AA, Section 508, or equivalent"
112
+ },
113
+ {
114
+ "id": "fe-epic-10",
115
+ "tier": 1,
116
+ "perspective": "frontend",
117
+ "severity": "minor",
118
+ "category": "accessibility-standards",
119
+ "universal": false,
120
+ "applicabilityQuestion": "Does this epic involve interactive UI components? (Does it have forms, modals, menus, or dropdowns?)",
121
+ "question": "Does the epic require keyboard navigation for interactive components?",
122
+ "failDescription": "Keyboard navigation requirement is not stated for interactive components",
123
+ "failSuggestion": "Require keyboard navigation for interactive components: Tab, Enter, Escape, Arrow keys for forms, modals, menus"
124
+ },
125
+ {
126
+ "id": "fe-epic-11",
127
+ "tier": 1,
128
+ "perspective": "frontend",
129
+ "severity": "minor",
130
+ "category": "accessibility-standards",
131
+ "universal": false,
132
+ "applicabilityQuestion": "Does this epic involve dynamic content updates? (Does it have live feeds, notifications, or async-loaded content?)",
133
+ "question": "Does the epic describe an ARIA strategy for dynamic content (live regions, labeled controls)?",
134
+ "failDescription": "ARIA strategy for dynamic content is not described",
135
+ "failSuggestion": "Describe ARIA strategy: aria-live regions for async updates, aria-label for controls, aria-describedby for errors"
136
+ },
137
+ {
138
+ "id": "fe-epic-12",
139
+ "tier": 1,
140
+ "perspective": "frontend",
141
+ "severity": "minor",
142
+ "category": "performance-build",
143
+ "universal": false,
144
+ "applicabilityQuestion": "Does this epic involve a web application with multiple routes or heavy components? (Does it have route-based views or large libraries?)",
145
+ "question": "Does the epic describe a code splitting strategy (route-level, component-level) if relevant?",
146
+ "failDescription": "Code splitting strategy is not described",
147
+ "failSuggestion": "Describe code splitting: route-level lazy loading, component-level splitting for heavy libraries"
148
+ },
149
+ {
150
+ "id": "fe-epic-13",
151
+ "tier": 1,
152
+ "perspective": "frontend",
153
+ "severity": "minor",
154
+ "category": "performance-build",
155
+ "universal": false,
156
+ "applicabilityQuestion": "Does this epic involve a user-facing web application? (Does it need to load quickly for end users?)",
157
+ "question": "Does the epic specify performance targets (bundle size, LCP, FID, CLS) — or 'N/A for internal tool'?",
158
+ "failDescription": "Performance targets are not specified",
159
+ "failSuggestion": "Specify performance targets: bundle size budget, LCP < 2.5s, FID < 100ms, CLS < 0.1 — or state 'N/A for internal tool'"
160
+ }
161
+ ]
162
+ }
@@ -0,0 +1,102 @@
1
+ {
2
+ "perspective": "mobile",
3
+ "scope": "epic",
4
+ "checks": [
5
+ {
6
+ "id": "mob-epic-01",
7
+ "tier": 1,
8
+ "perspective": "mobile",
9
+ "severity": "critical",
10
+ "category": "completeness",
11
+ "universal": false,
12
+ "applicabilityQuestion": "Does this epic involve mobile application development? (Does it target iOS, Android, React Native, or Flutter?)",
13
+ "question": "Does the epic scope clearly define mobile boundaries?",
14
+ "failDescription": "Mobile boundaries are not defined — unclear which platforms and features are in scope",
15
+ "failSuggestion": "Define mobile boundaries: target platforms (iOS, Android), minimum OS versions, device support"
16
+ },
17
+ {
18
+ "id": "mob-epic-02",
19
+ "tier": 1,
20
+ "perspective": "mobile",
21
+ "severity": "critical",
22
+ "category": "completeness",
23
+ "universal": false,
24
+ "applicabilityQuestion": "Does this epic involve mobile application development?",
25
+ "question": "Are all critical mobile features identified?",
26
+ "failDescription": "Critical mobile features are missing — platform support, offline mode, or push notifications not identified",
27
+ "failSuggestion": "Identify critical mobile features: platform support, offline capability, push notifications, deep linking"
28
+ },
29
+ {
30
+ "id": "mob-epic-03",
31
+ "tier": 1,
32
+ "perspective": "mobile",
33
+ "severity": "major",
34
+ "category": "completeness",
35
+ "universal": false,
36
+ "applicabilityQuestion": "Does this epic depend on mobile services or infrastructure?",
37
+ "question": "Are dependencies on mobile services/infrastructure explicit?",
38
+ "failDescription": "Mobile service dependencies are not explicit",
39
+ "failSuggestion": "Make mobile dependencies explicit: push notification service, app store accounts, analytics SDK, crash reporting"
40
+ },
41
+ {
42
+ "id": "mob-epic-04",
43
+ "tier": 1,
44
+ "perspective": "mobile",
45
+ "severity": "major",
46
+ "category": "completeness",
47
+ "universal": false,
48
+ "applicabilityQuestion": "Does this epic involve mobile application development?",
49
+ "question": "Are mobile success criteria measurable?",
50
+ "failDescription": "Mobile success criteria are not measurable",
51
+ "failSuggestion": "Define measurable mobile criteria: app startup time, crash rate, battery usage, app store rating target"
52
+ },
53
+ {
54
+ "id": "mob-epic-05",
55
+ "tier": 1,
56
+ "perspective": "mobile",
57
+ "severity": "major",
58
+ "category": "technical-depth",
59
+ "universal": false,
60
+ "applicabilityQuestion": "Does this epic involve mobile architecture?",
61
+ "question": "Are mobile architectural patterns considered?",
62
+ "failDescription": "Mobile architectural patterns are not considered",
63
+ "failSuggestion": "Consider mobile patterns: MVVM/MVP, offline-first, data synchronization, navigation patterns"
64
+ },
65
+ {
66
+ "id": "mob-epic-06",
67
+ "tier": 1,
68
+ "perspective": "mobile",
69
+ "severity": "major",
70
+ "category": "technical-depth",
71
+ "universal": false,
72
+ "applicabilityQuestion": "Does this epic involve mobile apps that need to perform well?",
73
+ "question": "Are performance/scalability concerns for mobile addressed?",
74
+ "failDescription": "Mobile performance concerns are not addressed",
75
+ "failSuggestion": "Address mobile performance: battery optimization, memory management, network efficiency, image caching"
76
+ },
77
+ {
78
+ "id": "mob-epic-07",
79
+ "tier": 1,
80
+ "perspective": "mobile",
81
+ "severity": "minor",
82
+ "category": "consistency",
83
+ "universal": false,
84
+ "applicabilityQuestion": "Does this epic involve mobile application development?",
85
+ "question": "Does the mobile approach align with project context?",
86
+ "failDescription": "Mobile approach does not align with project context",
87
+ "failSuggestion": "Ensure mobile approach aligns with project: consistent platform strategy, UI patterns, navigation conventions"
88
+ },
89
+ {
90
+ "id": "mob-epic-08",
91
+ "tier": 1,
92
+ "perspective": "mobile",
93
+ "severity": "minor",
94
+ "category": "best-practices",
95
+ "universal": false,
96
+ "applicabilityQuestion": "Does this epic involve mobile application development?",
97
+ "question": "Are industry-standard mobile patterns followed (native patterns, offline-first)?",
98
+ "failDescription": "Mobile best practices are not followed",
99
+ "failSuggestion": "Follow mobile best practices: platform-native patterns, offline-first design, responsive layouts, gesture support"
100
+ }
101
+ ]
102
+ }
@@ -0,0 +1,90 @@
1
+ {
2
+ "perspective": "qa",
3
+ "scope": "epic",
4
+ "checks": [
5
+ {
6
+ "id": "qa-epic-01",
7
+ "tier": 1,
8
+ "perspective": "qa",
9
+ "severity": "critical",
10
+ "category": "completeness",
11
+ "universal": false,
12
+ "applicabilityQuestion": "Does this epic involve testing, quality assurance, or quality gates? (Does it define testing strategy, quality metrics, or test automation?)",
13
+ "question": "Does the epic scope clearly define QA boundaries?",
14
+ "failDescription": "QA boundaries are not defined — unclear which test levels and quality gates are in scope",
15
+ "failSuggestion": "Define QA boundaries: which test levels (unit, integration, e2e), quality gates, and acceptance criteria are in scope"
16
+ },
17
+ {
18
+ "id": "qa-epic-02",
19
+ "tier": 1,
20
+ "perspective": "qa",
21
+ "severity": "critical",
22
+ "category": "completeness",
23
+ "universal": false,
24
+ "applicabilityQuestion": "Does this epic involve testing, quality assurance, or quality gates?",
25
+ "question": "Are all critical QA features identified?",
26
+ "failDescription": "Critical QA features are missing — test strategy, coverage targets, or quality metrics not identified",
27
+ "failSuggestion": "Identify critical QA features: test strategy, coverage targets, defect management process, quality metrics"
28
+ },
29
+ {
30
+ "id": "qa-epic-03",
31
+ "tier": 1,
32
+ "perspective": "qa",
33
+ "severity": "major",
34
+ "category": "completeness",
35
+ "universal": false,
36
+ "applicabilityQuestion": "Does this epic depend on QA services or infrastructure?",
37
+ "question": "Are dependencies on QA services/infrastructure explicit?",
38
+ "failDescription": "QA dependencies are not explicit",
39
+ "failSuggestion": "Make QA dependencies explicit: test frameworks, CI/CD integration, test environments, test data management"
40
+ },
41
+ {
42
+ "id": "qa-epic-04",
43
+ "tier": 1,
44
+ "perspective": "qa",
45
+ "severity": "major",
46
+ "category": "completeness",
47
+ "universal": false,
48
+ "applicabilityQuestion": "Does this epic involve testing, quality assurance, or quality gates?",
49
+ "question": "Are QA success criteria measurable?",
50
+ "failDescription": "QA success criteria are not measurable",
51
+ "failSuggestion": "Define measurable QA criteria: test coverage (>80%), defect escape rate, test execution time, pass rate"
52
+ },
53
+ {
54
+ "id": "qa-epic-05",
55
+ "tier": 1,
56
+ "perspective": "qa",
57
+ "severity": "major",
58
+ "category": "technical-depth",
59
+ "universal": false,
60
+ "applicabilityQuestion": "Does this epic involve QA architecture or test strategy?",
61
+ "question": "Are QA architectural patterns considered?",
62
+ "failDescription": "QA patterns are not considered — test pyramid, automation strategy, or test data management missing",
63
+ "failSuggestion": "Consider QA patterns: test pyramid, automation vs manual balance, test data management, environment strategy"
64
+ },
65
+ {
66
+ "id": "qa-epic-06",
67
+ "tier": 1,
68
+ "perspective": "qa",
69
+ "severity": "minor",
70
+ "category": "consistency",
71
+ "universal": false,
72
+ "applicabilityQuestion": "Does this epic involve testing, quality assurance, or quality gates?",
73
+ "question": "Does the QA approach align with project context?",
74
+ "failDescription": "QA approach does not align with project context",
75
+ "failSuggestion": "Ensure QA approach aligns with project: consistent test frameworks, naming conventions, reporting"
76
+ },
77
+ {
78
+ "id": "qa-epic-07",
79
+ "tier": 1,
80
+ "perspective": "qa",
81
+ "severity": "minor",
82
+ "category": "best-practices",
83
+ "universal": false,
84
+ "applicabilityQuestion": "Does this epic involve testing, quality assurance, or quality gates?",
85
+ "question": "Are industry-standard QA patterns followed (test pyramid, shift-left)?",
86
+ "failDescription": "QA best practices are not followed",
87
+ "failSuggestion": "Follow QA best practices: test pyramid, shift-left testing, continuous testing, BDD/TDD where appropriate"
88
+ }
89
+ ]
90
+ }