@agile-vibe-coding/avc 0.2.3 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +475 -3
- package/cli/agents/agent-selector.md +23 -0
- package/cli/agents/code-implementer.md +117 -0
- package/cli/agents/code-validator.md +80 -0
- package/cli/agents/context-reviewer-epic.md +101 -0
- package/cli/agents/context-reviewer-story.md +92 -0
- package/cli/agents/context-writer-epic.md +145 -0
- package/cli/agents/context-writer-story.md +111 -0
- package/cli/agents/doc-writer-epic.md +42 -0
- package/cli/agents/doc-writer-story.md +43 -0
- package/cli/agents/duplicate-detector.md +110 -0
- package/cli/agents/epic-story-decomposer.md +318 -39
- package/cli/agents/mission-scope-generator.md +68 -4
- package/cli/agents/mission-scope-validator.md +40 -6
- package/cli/agents/project-context-extractor.md +21 -6
- package/cli/agents/scaffolding-generator.md +99 -0
- package/cli/agents/seed-validator.md +71 -0
- package/cli/agents/story-scope-reviewer.md +147 -0
- package/cli/agents/story-splitter.md +83 -0
- package/cli/agents/validator-documentation.json +31 -0
- package/cli/agents/validator-documentation.md +3 -1
- package/cli/api-reference-tool.js +368 -0
- package/cli/checks/catalog.json +76 -0
- package/cli/checks/code/quality.json +26 -0
- package/cli/checks/code/testing.json +14 -0
- package/cli/checks/code/traceability.json +26 -0
- package/cli/checks/cross-refs/epic.json +171 -0
- package/cli/checks/cross-refs/story.json +149 -0
- package/cli/checks/epic/api.json +114 -0
- package/cli/checks/epic/backend.json +126 -0
- package/cli/checks/epic/cloud.json +126 -0
- package/cli/checks/epic/data.json +102 -0
- package/cli/checks/epic/database.json +114 -0
- package/cli/checks/epic/developer.json +182 -0
- package/cli/checks/epic/devops.json +174 -0
- package/cli/checks/epic/frontend.json +162 -0
- package/cli/checks/epic/mobile.json +102 -0
- package/cli/checks/epic/qa.json +90 -0
- package/cli/checks/epic/security.json +184 -0
- package/cli/checks/epic/solution-architect.json +192 -0
- package/cli/checks/epic/test-architect.json +90 -0
- package/cli/checks/epic/ui.json +102 -0
- package/cli/checks/epic/ux.json +90 -0
- package/cli/checks/fixes/epic-fix-template.md +10 -0
- package/cli/checks/fixes/story-fix-template.md +10 -0
- package/cli/checks/story/api.json +186 -0
- package/cli/checks/story/backend.json +102 -0
- package/cli/checks/story/cloud.json +102 -0
- package/cli/checks/story/data.json +210 -0
- package/cli/checks/story/database.json +102 -0
- package/cli/checks/story/developer.json +168 -0
- package/cli/checks/story/devops.json +102 -0
- package/cli/checks/story/frontend.json +174 -0
- package/cli/checks/story/mobile.json +102 -0
- package/cli/checks/story/qa.json +210 -0
- package/cli/checks/story/security.json +198 -0
- package/cli/checks/story/solution-architect.json +230 -0
- package/cli/checks/story/test-architect.json +210 -0
- package/cli/checks/story/ui.json +102 -0
- package/cli/checks/story/ux.json +102 -0
- package/cli/coding-order.js +401 -0
- package/cli/dependency-checker.js +72 -0
- package/cli/epic-story-validator.js +284 -799
- package/cli/index.js +0 -0
- package/cli/init-model-config.js +17 -10
- package/cli/init.js +514 -92
- package/cli/kanban-server-manager.js +1 -2
- package/cli/llm-claude.js +98 -31
- package/cli/llm-gemini.js +29 -5
- package/cli/llm-local.js +493 -0
- package/cli/llm-openai.js +262 -41
- package/cli/llm-provider.js +147 -8
- package/cli/llm-token-limits.js +113 -4
- package/cli/llm-verifier.js +209 -1
- package/cli/llm-xiaomi.js +143 -0
- package/cli/message-constants.js +3 -12
- package/cli/messaging-api.js +6 -12
- package/cli/micro-check-fixer.js +335 -0
- package/cli/micro-check-runner.js +449 -0
- package/cli/micro-check-scorer.js +148 -0
- package/cli/micro-check-validator.js +538 -0
- package/cli/model-pricing.js +23 -0
- package/cli/model-selector.js +3 -2
- package/cli/prompt-logger.js +57 -0
- package/cli/repl-ink.js +106 -346
- package/cli/repl-old.js +1 -2
- package/cli/seed-processor.js +194 -24
- package/cli/sprint-planning-processor.js +2638 -289
- package/cli/template-processor.js +50 -3
- package/cli/token-tracker.js +50 -23
- package/cli/tools/generate-story-validators.js +1 -1
- package/cli/validation-router.js +70 -8
- package/cli/worktree-runner.js +654 -0
- package/kanban/client/dist/assets/index-D_KC5EQT.css +1 -0
- package/kanban/client/dist/assets/index-DjY5zqW7.js +351 -0
- package/kanban/client/dist/index.html +2 -2
- package/kanban/client/src/App.jsx +43 -14
- package/kanban/client/src/components/ceremony/AskArchPopup.jsx +7 -3
- package/kanban/client/src/components/ceremony/AskModelPopup.jsx +23 -10
- package/kanban/client/src/components/ceremony/CeremonyWorkflowModal.jsx +320 -133
- package/kanban/client/src/components/ceremony/ProviderSwitcherButton.jsx +290 -0
- package/kanban/client/src/components/ceremony/SponsorCallModal.jsx +80 -13
- package/kanban/client/src/components/ceremony/SprintPlanningModal.jsx +156 -22
- package/kanban/client/src/components/ceremony/steps/ArchitectureStep.jsx +11 -11
- package/kanban/client/src/components/ceremony/steps/CompleteStep.jsx +3 -21
- package/kanban/client/src/components/ceremony/steps/ReviewAnswersStep.jsx +214 -10
- package/kanban/client/src/components/ceremony/steps/RunningStep.jsx +23 -2
- package/kanban/client/src/components/kanban/CardDetailModal.jsx +97 -10
- package/kanban/client/src/components/kanban/GroupingSelector.jsx +7 -1
- package/kanban/client/src/components/kanban/KanbanCard.jsx +23 -14
- package/kanban/client/src/components/kanban/RefineWorkItemPopup.jsx +9 -14
- package/kanban/client/src/components/kanban/RunButton.jsx +162 -0
- package/kanban/client/src/components/kanban/SeedButton.jsx +176 -0
- package/kanban/client/src/components/settings/AgentsTab.jsx +103 -75
- package/kanban/client/src/components/settings/ApiKeysTab.jsx +31 -2
- package/kanban/client/src/components/settings/CeremonyModelsTab.jsx +9 -2
- package/kanban/client/src/components/settings/CheckEditorPopup.jsx +507 -0
- package/kanban/client/src/components/settings/CostThresholdsTab.jsx +3 -2
- package/kanban/client/src/components/settings/ModelPricingTab.jsx +72 -7
- package/kanban/client/src/components/settings/OpenAIAuthSection.jsx +412 -0
- package/kanban/client/src/components/settings/SettingsModal.jsx +4 -4
- package/kanban/client/src/components/stats/CostModal.jsx +34 -3
- package/kanban/client/src/hooks/useGrouping.js +59 -0
- package/kanban/client/src/lib/api.js +118 -4
- package/kanban/client/src/lib/status-grouping.js +10 -0
- package/kanban/client/src/store/kanbanStore.js +8 -0
- package/kanban/server/index.js +23 -2
- package/kanban/server/routes/ceremony.js +153 -4
- package/kanban/server/routes/costs.js +9 -3
- package/kanban/server/routes/openai-oauth.js +366 -0
- package/kanban/server/routes/settings.js +447 -14
- package/kanban/server/routes/websocket.js +7 -2
- package/kanban/server/routes/work-items.js +141 -1
- package/kanban/server/services/CeremonyService.js +275 -24
- package/kanban/server/services/TaskRunnerService.js +261 -0
- package/kanban/server/workers/run-task-worker.js +121 -0
- package/kanban/server/workers/seed-worker.js +94 -0
- package/kanban/server/workers/sponsor-call-worker.js +14 -6
- package/kanban/server/workers/sprint-planning-worker.js +94 -12
- package/package.json +2 -3
- package/cli/agents/solver-epic-api.json +0 -15
- package/cli/agents/solver-epic-api.md +0 -39
- package/cli/agents/solver-epic-backend.json +0 -15
- package/cli/agents/solver-epic-backend.md +0 -39
- package/cli/agents/solver-epic-cloud.json +0 -15
- package/cli/agents/solver-epic-cloud.md +0 -39
- package/cli/agents/solver-epic-data.json +0 -15
- package/cli/agents/solver-epic-data.md +0 -39
- package/cli/agents/solver-epic-database.json +0 -15
- package/cli/agents/solver-epic-database.md +0 -39
- package/cli/agents/solver-epic-developer.json +0 -15
- package/cli/agents/solver-epic-developer.md +0 -39
- package/cli/agents/solver-epic-devops.json +0 -15
- package/cli/agents/solver-epic-devops.md +0 -39
- package/cli/agents/solver-epic-frontend.json +0 -15
- package/cli/agents/solver-epic-frontend.md +0 -39
- package/cli/agents/solver-epic-mobile.json +0 -15
- package/cli/agents/solver-epic-mobile.md +0 -39
- package/cli/agents/solver-epic-qa.json +0 -15
- package/cli/agents/solver-epic-qa.md +0 -39
- package/cli/agents/solver-epic-security.json +0 -15
- package/cli/agents/solver-epic-security.md +0 -39
- package/cli/agents/solver-epic-solution-architect.json +0 -15
- package/cli/agents/solver-epic-solution-architect.md +0 -39
- package/cli/agents/solver-epic-test-architect.json +0 -15
- package/cli/agents/solver-epic-test-architect.md +0 -39
- package/cli/agents/solver-epic-ui.json +0 -15
- package/cli/agents/solver-epic-ui.md +0 -39
- package/cli/agents/solver-epic-ux.json +0 -15
- package/cli/agents/solver-epic-ux.md +0 -39
- package/cli/agents/solver-story-api.json +0 -15
- package/cli/agents/solver-story-api.md +0 -39
- package/cli/agents/solver-story-backend.json +0 -15
- package/cli/agents/solver-story-backend.md +0 -39
- package/cli/agents/solver-story-cloud.json +0 -15
- package/cli/agents/solver-story-cloud.md +0 -39
- package/cli/agents/solver-story-data.json +0 -15
- package/cli/agents/solver-story-data.md +0 -39
- package/cli/agents/solver-story-database.json +0 -15
- package/cli/agents/solver-story-database.md +0 -39
- package/cli/agents/solver-story-developer.json +0 -15
- package/cli/agents/solver-story-developer.md +0 -39
- package/cli/agents/solver-story-devops.json +0 -15
- package/cli/agents/solver-story-devops.md +0 -39
- package/cli/agents/solver-story-frontend.json +0 -15
- package/cli/agents/solver-story-frontend.md +0 -39
- package/cli/agents/solver-story-mobile.json +0 -15
- package/cli/agents/solver-story-mobile.md +0 -39
- package/cli/agents/solver-story-qa.json +0 -15
- package/cli/agents/solver-story-qa.md +0 -39
- package/cli/agents/solver-story-security.json +0 -15
- package/cli/agents/solver-story-security.md +0 -39
- package/cli/agents/solver-story-solution-architect.json +0 -15
- package/cli/agents/solver-story-solution-architect.md +0 -39
- package/cli/agents/solver-story-test-architect.json +0 -15
- package/cli/agents/solver-story-test-architect.md +0 -39
- package/cli/agents/solver-story-ui.json +0 -15
- package/cli/agents/solver-story-ui.md +0 -39
- package/cli/agents/solver-story-ux.json +0 -15
- package/cli/agents/solver-story-ux.md +0 -39
- package/cli/agents/validator-epic-api.json +0 -93
- package/cli/agents/validator-epic-api.md +0 -137
- package/cli/agents/validator-epic-backend.json +0 -93
- package/cli/agents/validator-epic-backend.md +0 -130
- package/cli/agents/validator-epic-cloud.json +0 -93
- package/cli/agents/validator-epic-cloud.md +0 -137
- package/cli/agents/validator-epic-data.json +0 -93
- package/cli/agents/validator-epic-data.md +0 -130
- package/cli/agents/validator-epic-database.json +0 -93
- package/cli/agents/validator-epic-database.md +0 -137
- package/cli/agents/validator-epic-developer.json +0 -74
- package/cli/agents/validator-epic-developer.md +0 -153
- package/cli/agents/validator-epic-devops.json +0 -74
- package/cli/agents/validator-epic-devops.md +0 -153
- package/cli/agents/validator-epic-frontend.json +0 -74
- package/cli/agents/validator-epic-frontend.md +0 -153
- package/cli/agents/validator-epic-mobile.json +0 -93
- package/cli/agents/validator-epic-mobile.md +0 -130
- package/cli/agents/validator-epic-qa.json +0 -93
- package/cli/agents/validator-epic-qa.md +0 -130
- package/cli/agents/validator-epic-security.json +0 -74
- package/cli/agents/validator-epic-security.md +0 -154
- package/cli/agents/validator-epic-solution-architect.json +0 -74
- package/cli/agents/validator-epic-solution-architect.md +0 -156
- package/cli/agents/validator-epic-test-architect.json +0 -93
- package/cli/agents/validator-epic-test-architect.md +0 -130
- package/cli/agents/validator-epic-ui.json +0 -93
- package/cli/agents/validator-epic-ui.md +0 -130
- package/cli/agents/validator-epic-ux.json +0 -93
- package/cli/agents/validator-epic-ux.md +0 -130
- package/cli/agents/validator-story-api.json +0 -104
- package/cli/agents/validator-story-api.md +0 -152
- package/cli/agents/validator-story-backend.json +0 -104
- package/cli/agents/validator-story-backend.md +0 -152
- package/cli/agents/validator-story-cloud.json +0 -104
- package/cli/agents/validator-story-cloud.md +0 -152
- package/cli/agents/validator-story-data.json +0 -104
- package/cli/agents/validator-story-data.md +0 -152
- package/cli/agents/validator-story-database.json +0 -104
- package/cli/agents/validator-story-database.md +0 -152
- package/cli/agents/validator-story-developer.json +0 -104
- package/cli/agents/validator-story-developer.md +0 -152
- package/cli/agents/validator-story-devops.json +0 -104
- package/cli/agents/validator-story-devops.md +0 -152
- package/cli/agents/validator-story-frontend.json +0 -104
- package/cli/agents/validator-story-frontend.md +0 -152
- package/cli/agents/validator-story-mobile.json +0 -104
- package/cli/agents/validator-story-mobile.md +0 -152
- package/cli/agents/validator-story-qa.json +0 -104
- package/cli/agents/validator-story-qa.md +0 -152
- package/cli/agents/validator-story-security.json +0 -104
- package/cli/agents/validator-story-security.md +0 -152
- package/cli/agents/validator-story-solution-architect.json +0 -104
- package/cli/agents/validator-story-solution-architect.md +0 -152
- package/cli/agents/validator-story-test-architect.json +0 -104
- package/cli/agents/validator-story-test-architect.md +0 -152
- package/cli/agents/validator-story-ui.json +0 -104
- package/cli/agents/validator-story-ui.md +0 -152
- package/cli/agents/validator-story-ux.json +0 -104
- package/cli/agents/validator-story-ux.md +0 -152
- package/kanban/client/dist/assets/index-CiD8PS2e.js +0 -306
- package/kanban/client/dist/assets/index-nLh0m82Q.css +0 -1
|
@@ -0,0 +1,126 @@
|
|
|
1
|
+
{
|
|
2
|
+
"perspective": "cloud",
|
|
3
|
+
"scope": "epic",
|
|
4
|
+
"checks": [
|
|
5
|
+
{
|
|
6
|
+
"id": "cloud-epic-01",
|
|
7
|
+
"tier": 1,
|
|
8
|
+
"perspective": "cloud",
|
|
9
|
+
"severity": "critical",
|
|
10
|
+
"category": "completeness",
|
|
11
|
+
"universal": false,
|
|
12
|
+
"applicabilityQuestion": "Does this epic involve cloud services or cloud infrastructure? (Does it use AWS, Azure, GCP, or cloud-hosted services?)",
|
|
13
|
+
"question": "Does the epic scope clearly define cloud boundaries?",
|
|
14
|
+
"failDescription": "Cloud boundaries are not defined — unclear which cloud services and regions are in scope",
|
|
15
|
+
"failSuggestion": "Define cloud boundaries: which cloud provider, services, regions, and accounts are in scope"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "cloud-epic-02",
|
|
19
|
+
"tier": 1,
|
|
20
|
+
"perspective": "cloud",
|
|
21
|
+
"severity": "critical",
|
|
22
|
+
"category": "completeness",
|
|
23
|
+
"universal": false,
|
|
24
|
+
"applicabilityQuestion": "Does this epic involve cloud services or cloud infrastructure?",
|
|
25
|
+
"question": "Are all critical cloud features identified?",
|
|
26
|
+
"failDescription": "Critical cloud features are not identified — compute, storage, networking, or security services missing",
|
|
27
|
+
"failSuggestion": "Identify critical cloud features: compute (EC2/Lambda/ECS), storage (S3/EBS), networking (VPC/ALB), security (IAM)"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "cloud-epic-03",
|
|
31
|
+
"tier": 1,
|
|
32
|
+
"perspective": "cloud",
|
|
33
|
+
"severity": "major",
|
|
34
|
+
"category": "completeness",
|
|
35
|
+
"universal": false,
|
|
36
|
+
"applicabilityQuestion": "Does this epic depend on cloud services or infrastructure?",
|
|
37
|
+
"question": "Are dependencies on cloud services/infrastructure explicit?",
|
|
38
|
+
"failDescription": "Cloud service dependencies are not explicit",
|
|
39
|
+
"failSuggestion": "Make cloud dependencies explicit: list specific services (RDS, ElastiCache, SQS) and their configurations"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "cloud-epic-04",
|
|
43
|
+
"tier": 1,
|
|
44
|
+
"perspective": "cloud",
|
|
45
|
+
"severity": "major",
|
|
46
|
+
"category": "completeness",
|
|
47
|
+
"universal": false,
|
|
48
|
+
"applicabilityQuestion": "Does this epic involve cloud services or cloud infrastructure?",
|
|
49
|
+
"question": "Are cloud success criteria measurable?",
|
|
50
|
+
"failDescription": "Cloud success criteria are not measurable",
|
|
51
|
+
"failSuggestion": "Define measurable cloud criteria: availability (99.9%), latency (< 100ms), cost budget, resource utilization targets"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"id": "cloud-epic-05",
|
|
55
|
+
"tier": 1,
|
|
56
|
+
"perspective": "cloud",
|
|
57
|
+
"severity": "minor",
|
|
58
|
+
"category": "clarity",
|
|
59
|
+
"universal": false,
|
|
60
|
+
"applicabilityQuestion": "Does this epic involve cloud services or cloud infrastructure?",
|
|
61
|
+
"question": "Is cloud terminology used correctly?",
|
|
62
|
+
"failDescription": "Cloud terminology is used incorrectly or inconsistently",
|
|
63
|
+
"failSuggestion": "Review and correct cloud terminology for accuracy (e.g. region vs AZ, instance vs container)"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "cloud-epic-06",
|
|
67
|
+
"tier": 1,
|
|
68
|
+
"perspective": "cloud",
|
|
69
|
+
"severity": "minor",
|
|
70
|
+
"category": "clarity",
|
|
71
|
+
"universal": false,
|
|
72
|
+
"applicabilityQuestion": "Does this epic involve cloud services or cloud infrastructure?",
|
|
73
|
+
"question": "Are features described in business value terms?",
|
|
74
|
+
"failDescription": "Cloud features lack business value context",
|
|
75
|
+
"failSuggestion": "Frame cloud features in business terms: 'multi-AZ deployment ensures 99.99% availability for end users'"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": "cloud-epic-07",
|
|
79
|
+
"tier": 1,
|
|
80
|
+
"perspective": "cloud",
|
|
81
|
+
"severity": "major",
|
|
82
|
+
"category": "technical-depth",
|
|
83
|
+
"universal": false,
|
|
84
|
+
"applicabilityQuestion": "Does this epic involve cloud architecture? (Does it need HA, scaling, or multi-region?)",
|
|
85
|
+
"question": "Are cloud architectural patterns considered?",
|
|
86
|
+
"failDescription": "Cloud architectural patterns are not considered — HA, scaling, or serverless patterns missing",
|
|
87
|
+
"failSuggestion": "Consider cloud patterns: multi-AZ, auto-scaling, serverless, microservices, event-driven architecture"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "cloud-epic-08",
|
|
91
|
+
"tier": 1,
|
|
92
|
+
"perspective": "cloud",
|
|
93
|
+
"severity": "major",
|
|
94
|
+
"category": "technical-depth",
|
|
95
|
+
"universal": false,
|
|
96
|
+
"applicabilityQuestion": "Does this epic involve cloud services that need to scale?",
|
|
97
|
+
"question": "Are performance/scalability concerns for cloud addressed?",
|
|
98
|
+
"failDescription": "Cloud performance and scalability concerns are not addressed",
|
|
99
|
+
"failSuggestion": "Address cloud scalability: auto-scaling policies, load balancing, caching strategy, CDN for static assets"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "cloud-epic-09",
|
|
103
|
+
"tier": 1,
|
|
104
|
+
"perspective": "cloud",
|
|
105
|
+
"severity": "minor",
|
|
106
|
+
"category": "consistency",
|
|
107
|
+
"universal": false,
|
|
108
|
+
"applicabilityQuestion": "Does this epic involve cloud services or cloud infrastructure?",
|
|
109
|
+
"question": "Does the cloud approach align with project context?",
|
|
110
|
+
"failDescription": "Cloud approach does not align with project context",
|
|
111
|
+
"failSuggestion": "Ensure cloud approach aligns with project: use consistent cloud provider, follow organization standards"
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"id": "cloud-epic-10",
|
|
115
|
+
"tier": 1,
|
|
116
|
+
"perspective": "cloud",
|
|
117
|
+
"severity": "minor",
|
|
118
|
+
"category": "best-practices",
|
|
119
|
+
"universal": false,
|
|
120
|
+
"applicabilityQuestion": "Does this epic involve cloud services or cloud infrastructure?",
|
|
121
|
+
"question": "Are industry-standard cloud patterns followed (well-architected framework)?",
|
|
122
|
+
"failDescription": "Cloud best practices are not followed",
|
|
123
|
+
"failSuggestion": "Follow cloud best practices: AWS Well-Architected Framework pillars (reliability, security, performance, cost, operations)"
|
|
124
|
+
}
|
|
125
|
+
]
|
|
126
|
+
}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
{
|
|
2
|
+
"perspective": "data",
|
|
3
|
+
"scope": "epic",
|
|
4
|
+
"checks": [
|
|
5
|
+
{
|
|
6
|
+
"id": "data-epic-01",
|
|
7
|
+
"tier": 1,
|
|
8
|
+
"perspective": "data",
|
|
9
|
+
"severity": "critical",
|
|
10
|
+
"category": "completeness",
|
|
11
|
+
"universal": false,
|
|
12
|
+
"applicabilityQuestion": "Does this epic involve data pipelines, ETL, data warehousing, or data processing? (Does it handle data ingestion, transformation, or analytics?)",
|
|
13
|
+
"question": "Does the epic scope clearly define data boundaries?",
|
|
14
|
+
"failDescription": "Data boundaries are not defined — unclear which data sources, transformations, and destinations are in scope",
|
|
15
|
+
"failSuggestion": "Define data boundaries: data sources, transformation logic, destination systems, data quality requirements"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "data-epic-02",
|
|
19
|
+
"tier": 1,
|
|
20
|
+
"perspective": "data",
|
|
21
|
+
"severity": "critical",
|
|
22
|
+
"category": "completeness",
|
|
23
|
+
"universal": false,
|
|
24
|
+
"applicabilityQuestion": "Does this epic involve data pipelines, ETL, data warehousing, or data processing?",
|
|
25
|
+
"question": "Are all critical data features identified?",
|
|
26
|
+
"failDescription": "Critical data features are missing — pipeline stages, orchestration, or quality checks not identified",
|
|
27
|
+
"failSuggestion": "Identify critical data features: ETL stages, orchestration tool, data quality checks, lineage tracking"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "data-epic-03",
|
|
31
|
+
"tier": 1,
|
|
32
|
+
"perspective": "data",
|
|
33
|
+
"severity": "major",
|
|
34
|
+
"category": "completeness",
|
|
35
|
+
"universal": false,
|
|
36
|
+
"applicabilityQuestion": "Does this epic depend on data services or infrastructure?",
|
|
37
|
+
"question": "Are dependencies on data services/infrastructure explicit?",
|
|
38
|
+
"failDescription": "Data service dependencies are not explicit",
|
|
39
|
+
"failSuggestion": "Make data dependencies explicit: source databases, data warehouse, orchestration tool (Airflow), processing engine (Spark)"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "data-epic-04",
|
|
43
|
+
"tier": 1,
|
|
44
|
+
"perspective": "data",
|
|
45
|
+
"severity": "major",
|
|
46
|
+
"category": "completeness",
|
|
47
|
+
"universal": false,
|
|
48
|
+
"applicabilityQuestion": "Does this epic involve data pipelines, ETL, data warehousing, or data processing?",
|
|
49
|
+
"question": "Are data success criteria measurable?",
|
|
50
|
+
"failDescription": "Data success criteria are not measurable",
|
|
51
|
+
"failSuggestion": "Define measurable data criteria: data freshness SLA, processing latency, data quality score, pipeline uptime"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"id": "data-epic-05",
|
|
55
|
+
"tier": 1,
|
|
56
|
+
"perspective": "data",
|
|
57
|
+
"severity": "major",
|
|
58
|
+
"category": "technical-depth",
|
|
59
|
+
"universal": false,
|
|
60
|
+
"applicabilityQuestion": "Does this epic involve data architecture? (Does it need batch vs streaming, schema evolution, or data governance?)",
|
|
61
|
+
"question": "Are data architectural patterns considered?",
|
|
62
|
+
"failDescription": "Data architectural patterns are not considered",
|
|
63
|
+
"failSuggestion": "Consider data patterns: batch vs streaming, schema evolution, data lake/warehouse architecture, CDC patterns"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "data-epic-06",
|
|
67
|
+
"tier": 1,
|
|
68
|
+
"perspective": "data",
|
|
69
|
+
"severity": "major",
|
|
70
|
+
"category": "technical-depth",
|
|
71
|
+
"universal": false,
|
|
72
|
+
"applicabilityQuestion": "Does this epic involve data processing that needs to scale?",
|
|
73
|
+
"question": "Are performance/scalability concerns for data addressed?",
|
|
74
|
+
"failDescription": "Data performance and scalability concerns are not addressed",
|
|
75
|
+
"failSuggestion": "Address data scalability: partitioning strategy, parallel processing, incremental loads, data retention policy"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": "data-epic-07",
|
|
79
|
+
"tier": 1,
|
|
80
|
+
"perspective": "data",
|
|
81
|
+
"severity": "minor",
|
|
82
|
+
"category": "consistency",
|
|
83
|
+
"universal": false,
|
|
84
|
+
"applicabilityQuestion": "Does this epic involve data pipelines, ETL, data warehousing, or data processing?",
|
|
85
|
+
"question": "Does the data approach align with project context?",
|
|
86
|
+
"failDescription": "Data approach does not align with project context",
|
|
87
|
+
"failSuggestion": "Ensure data approach aligns with project: consistent tools, naming conventions, data governance policies"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "data-epic-08",
|
|
91
|
+
"tier": 1,
|
|
92
|
+
"perspective": "data",
|
|
93
|
+
"severity": "minor",
|
|
94
|
+
"category": "best-practices",
|
|
95
|
+
"universal": false,
|
|
96
|
+
"applicabilityQuestion": "Does this epic involve data pipelines, ETL, data warehousing, or data processing?",
|
|
97
|
+
"question": "Are industry-standard data patterns followed (idempotency, schema evolution)?",
|
|
98
|
+
"failDescription": "Data best practices are not followed",
|
|
99
|
+
"failSuggestion": "Follow data best practices: idempotent pipelines, schema evolution support, data quality gates, lineage tracking"
|
|
100
|
+
}
|
|
101
|
+
]
|
|
102
|
+
}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"perspective": "database",
|
|
3
|
+
"scope": "epic",
|
|
4
|
+
"checks": [
|
|
5
|
+
{
|
|
6
|
+
"id": "db-epic-01",
|
|
7
|
+
"tier": 1,
|
|
8
|
+
"perspective": "database",
|
|
9
|
+
"severity": "critical",
|
|
10
|
+
"category": "completeness",
|
|
11
|
+
"universal": false,
|
|
12
|
+
"applicabilityQuestion": "Does this epic involve data persistence or database operations? (Does it store, query, or manage structured data?)",
|
|
13
|
+
"question": "Does the epic scope clearly define database boundaries?",
|
|
14
|
+
"failDescription": "Database boundaries are not defined — unclear which data entities and operations are in scope",
|
|
15
|
+
"failSuggestion": "Define database boundaries: which tables/collections, relationships, and operations belong to this epic"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"id": "db-epic-02",
|
|
19
|
+
"tier": 1,
|
|
20
|
+
"perspective": "database",
|
|
21
|
+
"severity": "critical",
|
|
22
|
+
"category": "completeness",
|
|
23
|
+
"universal": false,
|
|
24
|
+
"applicabilityQuestion": "Does this epic involve data persistence or database operations?",
|
|
25
|
+
"question": "Are all critical database features identified?",
|
|
26
|
+
"failDescription": "Critical database features are missing — schema, indexes, or migration strategy not identified",
|
|
27
|
+
"failSuggestion": "Identify critical database features: schema definition, indexes, migrations, data validation constraints"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"id": "db-epic-03",
|
|
31
|
+
"tier": 1,
|
|
32
|
+
"perspective": "database",
|
|
33
|
+
"severity": "major",
|
|
34
|
+
"category": "completeness",
|
|
35
|
+
"universal": false,
|
|
36
|
+
"applicabilityQuestion": "Does this epic depend on database services or infrastructure?",
|
|
37
|
+
"question": "Are dependencies on database services/infrastructure explicit?",
|
|
38
|
+
"failDescription": "Database service dependencies are not explicit",
|
|
39
|
+
"failSuggestion": "Make database dependencies explicit: database engine, version, hosting, backup service"
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"id": "db-epic-04",
|
|
43
|
+
"tier": 1,
|
|
44
|
+
"perspective": "database",
|
|
45
|
+
"severity": "major",
|
|
46
|
+
"category": "completeness",
|
|
47
|
+
"universal": false,
|
|
48
|
+
"applicabilityQuestion": "Does this epic involve data persistence or database operations?",
|
|
49
|
+
"question": "Are database success criteria measurable?",
|
|
50
|
+
"failDescription": "Database success criteria are not measurable",
|
|
51
|
+
"failSuggestion": "Define measurable database criteria: query latency targets, throughput, data integrity constraints"
|
|
52
|
+
},
|
|
53
|
+
{
|
|
54
|
+
"id": "db-epic-05",
|
|
55
|
+
"tier": 1,
|
|
56
|
+
"perspective": "database",
|
|
57
|
+
"severity": "minor",
|
|
58
|
+
"category": "clarity",
|
|
59
|
+
"universal": false,
|
|
60
|
+
"applicabilityQuestion": "Does this epic involve data persistence or database operations?",
|
|
61
|
+
"question": "Is database terminology used correctly?",
|
|
62
|
+
"failDescription": "Database terminology is used incorrectly or inconsistently",
|
|
63
|
+
"failSuggestion": "Review database terminology: normalization, indexes, foreign keys, constraints, migrations"
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"id": "db-epic-06",
|
|
67
|
+
"tier": 1,
|
|
68
|
+
"perspective": "database",
|
|
69
|
+
"severity": "major",
|
|
70
|
+
"category": "technical-depth",
|
|
71
|
+
"universal": false,
|
|
72
|
+
"applicabilityQuestion": "Does this epic involve database architecture? (Does it need schema design, optimization, or scaling?)",
|
|
73
|
+
"question": "Are database architectural patterns considered?",
|
|
74
|
+
"failDescription": "Database architectural patterns are not considered",
|
|
75
|
+
"failSuggestion": "Consider database patterns: normalization/denormalization strategy, indexing, partitioning, replication"
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"id": "db-epic-07",
|
|
79
|
+
"tier": 1,
|
|
80
|
+
"perspective": "database",
|
|
81
|
+
"severity": "major",
|
|
82
|
+
"category": "technical-depth",
|
|
83
|
+
"universal": false,
|
|
84
|
+
"applicabilityQuestion": "Does this epic involve database queries that need to perform well?",
|
|
85
|
+
"question": "Are performance/scalability concerns for database addressed?",
|
|
86
|
+
"failDescription": "Database performance and scalability concerns are not addressed",
|
|
87
|
+
"failSuggestion": "Address database performance: query optimization, indexing strategy, connection pooling, read replicas"
|
|
88
|
+
},
|
|
89
|
+
{
|
|
90
|
+
"id": "db-epic-08",
|
|
91
|
+
"tier": 1,
|
|
92
|
+
"perspective": "database",
|
|
93
|
+
"severity": "minor",
|
|
94
|
+
"category": "consistency",
|
|
95
|
+
"universal": false,
|
|
96
|
+
"applicabilityQuestion": "Does this epic involve data persistence or database operations?",
|
|
97
|
+
"question": "Does the database approach align with project context?",
|
|
98
|
+
"failDescription": "Database approach does not align with project context",
|
|
99
|
+
"failSuggestion": "Ensure database approach aligns with project: consistent engine, naming conventions, migration strategy"
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"id": "db-epic-09",
|
|
103
|
+
"tier": 1,
|
|
104
|
+
"perspective": "database",
|
|
105
|
+
"severity": "minor",
|
|
106
|
+
"category": "best-practices",
|
|
107
|
+
"universal": false,
|
|
108
|
+
"applicabilityQuestion": "Does this epic involve data persistence or database operations?",
|
|
109
|
+
"question": "Are industry-standard database patterns followed (normalization, indexing)?",
|
|
110
|
+
"failDescription": "Database best practices are not followed",
|
|
111
|
+
"failSuggestion": "Follow database best practices: proper normalization, strategic indexing, referential integrity constraints"
|
|
112
|
+
}
|
|
113
|
+
]
|
|
114
|
+
}
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
{
|
|
2
|
+
"perspective": "developer",
|
|
3
|
+
"scope": "epic",
|
|
4
|
+
"checks": [
|
|
5
|
+
{
|
|
6
|
+
"id": "dev-epic-01",
|
|
7
|
+
"tier": 1,
|
|
8
|
+
"perspective": "developer",
|
|
9
|
+
"severity": "critical",
|
|
10
|
+
"category": "clarity-feasibility",
|
|
11
|
+
"universal": true,
|
|
12
|
+
"question": "Is the epic description clear and unambiguous for developers?",
|
|
13
|
+
"failDescription": "Epic description is vague or ambiguous — developers cannot understand what to build",
|
|
14
|
+
"failSuggestion": "Rewrite the epic description to be specific about what is being built, the approach, and key technical decisions"
|
|
15
|
+
},
|
|
16
|
+
{
|
|
17
|
+
"id": "dev-epic-02",
|
|
18
|
+
"tier": 1,
|
|
19
|
+
"perspective": "developer",
|
|
20
|
+
"severity": "critical",
|
|
21
|
+
"category": "clarity-feasibility",
|
|
22
|
+
"universal": true,
|
|
23
|
+
"question": "Are the features technically feasible with reasonable effort?",
|
|
24
|
+
"failDescription": "One or more features appear technically infeasible or require unreasonable effort",
|
|
25
|
+
"failSuggestion": "Review features for technical feasibility and break down overly complex features into achievable increments"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"id": "dev-epic-03",
|
|
29
|
+
"tier": 1,
|
|
30
|
+
"perspective": "developer",
|
|
31
|
+
"severity": "major",
|
|
32
|
+
"category": "clarity-feasibility",
|
|
33
|
+
"universal": true,
|
|
34
|
+
"question": "Is the epic scope appropriate for iterative development?",
|
|
35
|
+
"failDescription": "Epic scope is too large or too small for iterative development",
|
|
36
|
+
"failSuggestion": "Adjust scope to be deliverable in stories that each cover a single cohesive capability — add as many as needed to fully cover the epic"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"id": "dev-epic-04",
|
|
40
|
+
"tier": 1,
|
|
41
|
+
"perspective": "developer",
|
|
42
|
+
"severity": "major",
|
|
43
|
+
"category": "clarity-feasibility",
|
|
44
|
+
"universal": true,
|
|
45
|
+
"question": "Are technical constraints and assumptions explicitly stated?",
|
|
46
|
+
"failDescription": "Technical constraints and assumptions are implicit — developers may make wrong assumptions",
|
|
47
|
+
"failSuggestion": "Make constraints and assumptions explicit: runtime version, OS constraints, browser support, API compatibility requirements"
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"id": "dev-epic-05",
|
|
51
|
+
"tier": 1,
|
|
52
|
+
"perspective": "developer",
|
|
53
|
+
"severity": "minor",
|
|
54
|
+
"category": "code-quality-maintainability",
|
|
55
|
+
"universal": true,
|
|
56
|
+
"question": "Does the epic mention code quality standards (linting, formatting, code review)?",
|
|
57
|
+
"failDescription": "Code quality standards are not mentioned — no linting, formatting, or code review requirements",
|
|
58
|
+
"failSuggestion": "Mention code quality standards: linting rules, formatting conventions, and code review requirements"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"id": "dev-epic-06",
|
|
62
|
+
"tier": 1,
|
|
63
|
+
"perspective": "developer",
|
|
64
|
+
"severity": "major",
|
|
65
|
+
"category": "code-quality-maintainability",
|
|
66
|
+
"universal": true,
|
|
67
|
+
"question": "Does the epic address testing strategy (unit, integration, e2e)?",
|
|
68
|
+
"failDescription": "Testing strategy is not addressed — no mention of unit, integration, or e2e testing",
|
|
69
|
+
"failSuggestion": "Address testing strategy: specify which types of tests are expected (unit, integration, e2e) and coverage targets"
|
|
70
|
+
},
|
|
71
|
+
{
|
|
72
|
+
"id": "dev-epic-07",
|
|
73
|
+
"tier": 1,
|
|
74
|
+
"perspective": "developer",
|
|
75
|
+
"severity": "minor",
|
|
76
|
+
"category": "code-quality-maintainability",
|
|
77
|
+
"universal": true,
|
|
78
|
+
"question": "Are documentation requirements specified (code comments, API docs, README)?",
|
|
79
|
+
"failDescription": "Documentation requirements are not specified",
|
|
80
|
+
"failSuggestion": "Specify documentation requirements: inline code comments, API documentation, README updates"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"id": "dev-epic-08",
|
|
84
|
+
"tier": 1,
|
|
85
|
+
"perspective": "developer",
|
|
86
|
+
"severity": "minor",
|
|
87
|
+
"category": "development-workflow",
|
|
88
|
+
"universal": true,
|
|
89
|
+
"question": "Does the epic support incremental development and testing?",
|
|
90
|
+
"failDescription": "Epic does not support incremental development — features may need to be delivered all at once",
|
|
91
|
+
"failSuggestion": "Structure the epic to support incremental development: features should be independently testable and deployable"
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"id": "dev-epic-09",
|
|
95
|
+
"tier": 1,
|
|
96
|
+
"perspective": "developer",
|
|
97
|
+
"severity": "minor",
|
|
98
|
+
"category": "development-workflow",
|
|
99
|
+
"universal": true,
|
|
100
|
+
"question": "Are dependencies clear and do they avoid blocking parallelization unnecessarily?",
|
|
101
|
+
"failDescription": "Dependencies are unclear or block parallelization unnecessarily",
|
|
102
|
+
"failSuggestion": "Clarify dependencies and minimize blocking relationships to allow parallel development"
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"id": "dev-epic-10",
|
|
106
|
+
"tier": 1,
|
|
107
|
+
"perspective": "developer",
|
|
108
|
+
"severity": "minor",
|
|
109
|
+
"category": "development-workflow",
|
|
110
|
+
"universal": true,
|
|
111
|
+
"question": "Is a version control strategy implied or specified (branching, commits)?",
|
|
112
|
+
"failDescription": "Version control strategy is not addressed",
|
|
113
|
+
"failSuggestion": "Specify or imply version control strategy: feature branches, commit conventions, merge approach"
|
|
114
|
+
},
|
|
115
|
+
{
|
|
116
|
+
"id": "dev-epic-11",
|
|
117
|
+
"tier": 1,
|
|
118
|
+
"perspective": "developer",
|
|
119
|
+
"severity": "minor",
|
|
120
|
+
"category": "developer-experience",
|
|
121
|
+
"universal": true,
|
|
122
|
+
"question": "Does the epic provide sufficient context for developers to start work?",
|
|
123
|
+
"failDescription": "Insufficient context for developers — key background information or technical context is missing",
|
|
124
|
+
"failSuggestion": "Provide enough context: domain background, technical rationale, relevant prior decisions"
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"id": "dev-epic-12",
|
|
128
|
+
"tier": 1,
|
|
129
|
+
"perspective": "developer",
|
|
130
|
+
"severity": "minor",
|
|
131
|
+
"category": "developer-experience",
|
|
132
|
+
"universal": true,
|
|
133
|
+
"question": "Are technical decisions justified (why this approach)?",
|
|
134
|
+
"failDescription": "Technical decisions are not justified — unclear why a particular approach was chosen",
|
|
135
|
+
"failSuggestion": "Justify key technical decisions: explain why this approach was chosen over alternatives"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"id": "dev-epic-13",
|
|
139
|
+
"tier": 1,
|
|
140
|
+
"perspective": "developer",
|
|
141
|
+
"severity": "minor",
|
|
142
|
+
"category": "developer-experience",
|
|
143
|
+
"universal": true,
|
|
144
|
+
"question": "Does the epic avoid introducing unnecessary complexity?",
|
|
145
|
+
"failDescription": "Epic introduces unnecessary complexity — simpler alternatives may exist",
|
|
146
|
+
"failSuggestion": "Review for unnecessary complexity and simplify where possible without losing functionality"
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"id": "dev-epic-14",
|
|
150
|
+
"tier": 1,
|
|
151
|
+
"perspective": "developer",
|
|
152
|
+
"severity": "minor",
|
|
153
|
+
"category": "best-practices",
|
|
154
|
+
"universal": true,
|
|
155
|
+
"question": "Does the epic follow SOLID principles and clean code practices?",
|
|
156
|
+
"failDescription": "Epic design does not follow SOLID principles or clean code practices",
|
|
157
|
+
"failSuggestion": "Align the epic design with SOLID principles: single responsibility, open/closed, dependency inversion"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"id": "dev-epic-15",
|
|
161
|
+
"tier": 1,
|
|
162
|
+
"perspective": "developer",
|
|
163
|
+
"severity": "minor",
|
|
164
|
+
"category": "best-practices",
|
|
165
|
+
"universal": true,
|
|
166
|
+
"question": "Does the epic avoid common anti-patterns (tight coupling, god objects, premature optimization)?",
|
|
167
|
+
"failDescription": "Epic may introduce anti-patterns — tight coupling, god objects, or premature optimization",
|
|
168
|
+
"failSuggestion": "Review for anti-patterns: avoid tight coupling between components, god objects, and premature optimization"
|
|
169
|
+
},
|
|
170
|
+
{
|
|
171
|
+
"id": "dev-epic-16",
|
|
172
|
+
"tier": 1,
|
|
173
|
+
"perspective": "developer",
|
|
174
|
+
"severity": "minor",
|
|
175
|
+
"category": "best-practices",
|
|
176
|
+
"universal": true,
|
|
177
|
+
"question": "Does the epic consider technical debt and refactoring needs?",
|
|
178
|
+
"failDescription": "Technical debt and refactoring needs are not considered",
|
|
179
|
+
"failSuggestion": "Acknowledge technical debt implications and plan for necessary refactoring"
|
|
180
|
+
}
|
|
181
|
+
]
|
|
182
|
+
}
|